diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cf2df7..3eec4ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [1.0.4] - 14th of July, 2024 + ### Fixed - Attempt to fix a storage data inconsistency where namespace support is stored for a device but activity information is not @@ -142,7 +144,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Changed - Upon serialization the current library version is added to the serialized structures, to allow for seamless updates in the future. -[Unreleased]: https://github.com/Syndace/python-omemo/compare/v1.0.3...HEAD +[Unreleased]: https://github.com/Syndace/python-omemo/compare/v1.0.4...HEAD +[1.0.4]: https://github.com/Syndace/python-omemo/compare/v1.0.3...v1.0.4 [1.0.3]: https://github.com/Syndace/python-omemo/compare/v1.0.2...v1.0.3 [1.0.2]: https://github.com/Syndace/python-omemo/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/Syndace/python-omemo/compare/v1.0.0...v1.0.1 diff --git a/omemo/version.py b/omemo/version.py index 274040f..295ff57 100644 --- a/omemo/version.py +++ b/omemo/version.py @@ -1,6 +1,6 @@ __all__ = [ "__version__" ] # pylint: disable=unused-variable __version__ = {} -__version__["short"] = "1.0.3" +__version__["short"] = "1.0.4" __version__["tag"] = "stable" __version__["full"] = f"{__version__['short']}-{__version__['tag']}"