Skip to content

Commit 1d6182d

Browse files
committed
Prepare to release new version
- Bump CHANGELOG.md - Use ruff and coverage instead of pylint and test in release rule
1 parent e7fd309 commit 1d6182d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and we adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [0.0.6] - 2025-10-11
11+
1012
### Changed
1113

1214
- Implement true short-circuit for 'and'/'or' returning deciding operand
@@ -53,7 +55,8 @@ and we adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5355

5456
- Initial version of expression parser
5557

56-
[Unreleased]: https://github.com/lhelwerd/expression-parser/compare/v0.0.5...HEAD
58+
[Unreleased]: https://github.com/lhelwerd/expression-parser/compare/v0.0.6...HEAD
59+
[0.0.6]: https://github.com/lhelwerd/expression-parser/releases/tag/v0.0.6
5760
[0.0.5]: https://github.com/lhelwerd/expression-parser/releases/tag/v0.0.5
5861
[0.0.4]: https://github.com/lhelwerd/expression-parser/releases/tag/v0.0.4
5962
[0.0.3]: https://github.com/lhelwerd/expression-parser/releases/tag/v0.0.3

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TEST=-m unittest discover -s tests -p '*.py'
66
all: release
77

88
.PHONY: release
9-
release: pylint test clean tag build push upload
9+
release: ruff coverage clean tag build push upload
1010

1111
.PHONY: setup
1212
setup:

0 commit comments

Comments
 (0)