Skip to content

Commit

Permalink
Update patch version (#247)
Browse files Browse the repository at this point in the history
Update version to 0.0.6
  • Loading branch information
samkellerhals authored Jul 20, 2023
1 parent 260043c commit 5830936
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion model/atmosphere/dycore/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.6
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
__license__: Final = "GPL-3.0-or-later"


__version__: Final = "0.0.5"
__version__: Final = "0.0.6"
__version_info__: Final = pkg_version.parse(__version__)
2 changes: 1 addition & 1 deletion model/common/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.6
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
Expand Down
2 changes: 1 addition & 1 deletion model/common/src/icon4py/model/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
__license__: Final = "GPL-3.0-or-later"


__version__: Final = "0.0.5"
__version__: Final = "0.0.6"
__version_info__: Final = pkg_version.parse(__version__)
2 changes: 1 addition & 1 deletion tools/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.6
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
Expand Down
2 changes: 1 addition & 1 deletion tools/src/icon4pytools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
__license__: Final = "GPL-3.0-or-later"


__version__: Final = "0.0.4"
__version__: Final = "0.0.6"
__version_info__: Final = pkg_version.parse(__version__)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ passenv =
deps =
-r {toxinidir}/requirements-dev.txt
commands =
-pytest -v -s -n auto -cache-clear --cov --cov-reset --doctest-modules atmosphere/dycore/src common/src
-pytest -v -s -n auto -cache-clear --cov --cov-reset --doctest-modules model/atmosphere/dycore/src model/common/src tools/src
pytest -v -s -n auto --cov --cov-append --benchmark-disable
commands_post =
rm -rf tests/_reports/coverage_html
Expand Down

0 comments on commit 5830936

Please sign in to comment.