Skip to content

Commit 1119915

Browse files
committed
Prepare v1.2.0 release
1 parent bfb1842 commit 1119915

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [1.2.0] - 15th of October, 2024
10+
911
### Changed
1012
- Slightly improved logging for less spam and more clarity
13+
- Drop support for Python3.8, add support for Python3.13, bump PyPy test version to 3.10
14+
- Internal housekeeping, mostly related to pylint
1115

1216
## [1.1.0] - 28th of September, 2024
1317

@@ -157,7 +161,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
157161
### Changed
158162
- Upon serialization the current library version is added to the serialized structures, to allow for seamless updates in the future.
159163

160-
[Unreleased]: https://github.com/Syndace/python-omemo/compare/v1.1.0...HEAD
164+
[Unreleased]: https://github.com/Syndace/python-omemo/compare/v1.2.0...HEAD
165+
[1.2.0]: https://github.com/Syndace/python-omemo/compare/v1.1.0...v1.2.0
161166
[1.1.0]: https://github.com/Syndace/python-omemo/compare/v1.0.5...v1.1.0
162167
[1.0.5]: https://github.com/Syndace/python-omemo/compare/v1.0.4...v1.0.5
163168
[1.0.4]: https://github.com/Syndace/python-omemo/compare/v1.0.3...v1.0.4

omemo/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__all__ = [ "__version__" ]
22

33
__version__ = {}
4-
__version__["short"] = "1.1.0"
4+
__version__["short"] = "1.2.0"
55
__version__["tag"] = "stable"
66
__version__["full"] = f"{__version__['short']}-{__version__['tag']}"

0 commit comments

Comments
 (0)