Skip to content

Commit

Permalink
Bump version: 0.4.0 → 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Feb 1, 2024
1 parent fc4765e commit 668ab15
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.4.0
current_version = 0.4.1
commit = True
tag = True
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a]*)(?P<num>\d*)
serialize =
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
tag_name = {new_version}
Expand All @@ -15,31 +15,31 @@ tag_name = {new_version}
name = pymetadata
url = https://github.com/matthiaskoenig/pymetadata
download_url = https://pypi.org/project/pymetadata
project_urls =
project_urls =
Source Code = https://github.com/matthiaskoenig/pymetadata
Documentation = https://github.com/matthiaskoenig/pymetadata
Bug Tracker = https://github.com/matthiaskoenig/pymetadata/issues
author = Matthias Koenig
author_email = [email protected]
maintainer = Matthias Koenig
maintainer_email = [email protected]
classifiers =
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
license = LGPL-3.0
description = pymetadata are python utilities for working with metadata.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords =
keywords =
modeling
standardization
COMBINE
Expand All @@ -50,7 +50,7 @@ keywords =
[options]
zip_safe = True
python_requires = >=3.9
install_requires =
install_requires =
depinfo>=1.7
uuid>=1.30
lxml>=4.9
Expand All @@ -62,11 +62,11 @@ install_requires =
jinja2>=3.1.2
xmltodict>=0.13.0
pydantic>=2.4
tests_require =
tests_require =
tox>=3.27
pytest
packages = find:
package_dir =
package_dir =
= src
include_package_data = True

Expand All @@ -80,7 +80,7 @@ test = pytest
where = src

[options.extras_require]
development =
development =
pip-tools>6.10
black>=24.1.1
bump2version>=1.0.1
Expand All @@ -98,7 +98,7 @@ universal = 1
[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
values =
placeholder
a

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@


if __name__ == "__main__":
setup(version="0.4.0")
setup(version="0.4.1")
2 changes: 1 addition & 1 deletion src/pymetadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pathlib import Path

__author__ = "Matthias Koenig"
__version__ = "0.4.0"
__version__ = "0.4.1"


program_name: str = "pymetadata"
Expand Down

0 comments on commit 668ab15

Please sign in to comment.