diff --git a/cookbook.yaml b/cookbook.yaml index 20901cd..cb72a8b 100644 --- a/cookbook.yaml +++ b/cookbook.yaml @@ -1,6 +1,6 @@ $globals: shell: bash - version: "5.2" + version: "6.0" vars: poetry_sync: "--sync" diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c2d0fce..cc008dc 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic ## [Unreleased] +## [6.0.0] - 2024-01-03 + ### Changed - Min version is mandatory and must be a string @@ -417,7 +419,8 @@ cookbook.yml [Keep a Changelog]: https://keepachangelog.com/en/1.0.0/ [Semantic Versioning]: https://semver.org/spec/v2.0.0.html -[Unreleased]: https://github.com/spapanik/yamk/compare/v5.3.0...main +[Unreleased]: https://github.com/spapanik/yamk/compare/v6.0.0...main +[6.0.0]: https://github.com/spapanik/yamk/compare/v5.3.0...v6.0.0 [5.3.0]: https://github.com/spapanik/yamk/compare/v5.2.0...v5.3.0 [5.2.0]: https://github.com/spapanik/yamk/compare/v5.1.0...v5.2.0 [5.1.0]: https://github.com/spapanik/yamk/compare/v5.0.1...v5.1.0 diff --git a/pyproject.toml b/pyproject.toml index bae8610..cd88300 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -112,7 +112,7 @@ skip_empty = true [tool.poetry] name = "yamk" -version = "5.3.0" +version = "6.0.0" description = "Yet another make" authors = [ "Stephanos Kuma ", diff --git a/src/yamk/__init__.py b/src/yamk/__init__.py index b4b67fa..a42dae2 100644 --- a/src/yamk/__init__.py +++ b/src/yamk/__init__.py @@ -1,3 +1,3 @@ from packaging.version import Version -__version__ = Version("5.3.0") +__version__ = Version("6.0.0") diff --git a/tests/data/mk.toml b/tests/data/mk.toml index 734d802..e03d00b 100644 --- a/tests/data/mk.toml +++ b/tests/data/mk.toml @@ -1,6 +1,6 @@ ["$globals"] shell = "bash" -version = "5.2" +version = "6.0" ["$globals".vars] "[weak]prefix" = "/home/user/.config/"