Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
spapanik committed Jan 3, 2024
1 parent b51ad62 commit 1d24529
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cookbook.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$globals:
shell: bash
version: "5.2"
version: "6.0"
vars:
poetry_sync: "--sync"

Expand Down
5 changes: 4 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/yamk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from packaging.version import Version

__version__ = Version("5.3.0")
__version__ = Version("6.0.0")
2 changes: 1 addition & 1 deletion tests/data/mk.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
["$globals"]
shell = "bash"
version = "5.2"
version = "6.0"

["$globals".vars]
"[weak]prefix" = "/home/user/.config/"
Expand Down

0 comments on commit 1d24529

Please sign in to comment.