diff --git a/.cz.toml b/.cz.toml index 2c48d2f..39bb4f5 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,7 +1,7 @@ [tool] [tool.commitizen] name = "cz_conventional_commits" -version = "0.1.1" +version = "0.2.0" tag_format = "v$version" version_files = [ "setup.py:^version", diff --git a/CHANGELOG.md b/CHANGELOG.md index 7be143b..b4a14db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ -## Unreleased +## v0.2.0 (2022-02-17) + +### Feat + +- Add automatic bump, changelog and release with commitizen. +- Add automatic bump, changelog and release with commitizen. ## v0.1.1 (2021-03-31) diff --git a/liwo_services/__init__.py b/liwo_services/__init__.py index 1aa1760..6118ea8 100644 --- a/liwo_services/__init__.py +++ b/liwo_services/__init__.py @@ -2,4 +2,4 @@ __author__ = """Fedor Baart""" __email__ = "fedor.baart@deltares.nl" -__version__ = "0.1.1" +__version__ = "0.2.0" diff --git a/setup.py b/setup.py index d240329..605c037 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ "pytest>=3", ] -version = "v0.1.1" +version = "v0.2.0" setup( author="Fedor Baart",