Skip to content

Commit

Permalink
prepare v2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Jun 5, 2024
1 parent 2fece17 commit aab628b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/clickgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

__version__ = "2.2.3"
__version__ = "2.2.4"
3 changes: 1 addition & 2 deletions tests/test_configparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit aab628b

Please sign in to comment.