diff --git a/CHANGELOG.md b/CHANGELOG.md index fe7e80c..e88dddf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [v2.2.4] - 05 June 2024 + ### What's New? - Show detailed error for missing bitmaps in `ctgen` cursors config parsing @@ -354,7 +356,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - auto-generated **symlinks** based on input configs - `.tar` archive & `directory` as out **package**. -[unreleased]: https://github.com/ful1e5/clickgen/compare/v2.2.3...main +[unreleased]: https://github.com/ful1e5/clickgen/compare/v2.2.4...main +[v2.2.4]: https://github.com/ful1e5/clickgen/compare/v2.2.3...v2.2.4 [v2.2.3]: https://github.com/ful1e5/clickgen/compare/v2.2.2...v2.2.3 [v2.2.2]: https://github.com/ful1e5/clickgen/compare/v2.2.1...v2.2.2 [v2.2.1]: https://github.com/ful1e5/clickgen/compare/v2.2.0...v2.2.1 diff --git a/src/clickgen/__init__.py b/src/clickgen/__init__.py index 66d1e5b..9a0db47 100644 --- a/src/clickgen/__init__.py +++ b/src/clickgen/__init__.py @@ -1,4 +1,4 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = "2.2.3" +__version__ = "2.2.4" diff --git a/tests/test_configparser.py b/tests/test_configparser.py index 9209381..4760923 100644 --- a/tests/test_configparser.py +++ b/tests/test_configparser.py @@ -192,6 +192,5 @@ def test_parse_cursor_section_handles_png_not_found_exception(): c = parse_config_section(Path(), dd2) - with pytest.raises(FileNotFoundError) as e: + with pytest.raises(FileNotFoundError): parse_cursors_section(exp_dd1, c) - print(e)