diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..90349a0 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +## v0.2.0 (2024-04-12) + +### Feat + +- replace dependencies within poetry commands diff --git a/Makefile b/Makefile index 4b27061..44e41be 100644 --- a/Makefile +++ b/Makefile @@ -33,3 +33,6 @@ lint: venv test: venv NO_COLOR=1 poetry run python -m pytest --cov poetry_plugin_mono_repo_deps --cov-config pyproject.toml --cov-report xml:coverage/coverage.xml --cov-report term-missing --junitxml=coverage/report.xml -vv -p no:toolbox tests + +bump: venv + poetry run cz bump --retry diff --git a/VERSION b/VERSION index 6e8bf73..0ea3a94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.2.0 diff --git a/poetry_plugin_mono_repo_deps/_version.py b/poetry_plugin_mono_repo_deps/_version.py index 3dc1f76..d3ec452 100644 --- a/poetry_plugin_mono_repo_deps/_version.py +++ b/poetry_plugin_mono_repo_deps/_version.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index e4cd677..9bc6ecb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ changelog_incremental = true name = "cz_conventional_commits" tag_format = "v$version" update_changelog_on_bump = true -version = "0.1.0" +version = "0.2.0" version_files = [ "VERSION", "pyproject.toml:^version = ", @@ -75,7 +75,7 @@ packages = [ ] readme = "README.md" repository = "https://github.com/gerbenoostra/poetry-plugin-mono-repo-deps" -version = "0.1.0" +version = "0.2.0" [tool.poetry.dependencies] poetry = "^1.7.0"