diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dde006..daea037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm The first release is [3.0.0] because this is actually the third major version (completely rewritten) of the software. +## [3.2.3] - 2022-09-29 +### Added +- Add auto-packaging feature using GitHub actions for Windows OS (experimental) +### Fixed +- Fix crash for playing audio ([#34](https://github.com/AresValley/Artemis/pull/34)) + ## [3.2.2] - 2022-07-29 ### Fixed - Fixed crash on startup or if checking for updates without an internet connection ([#23](https://github.com/AresValley/Artemis/pull/23)) diff --git a/src/artemis.py b/src/artemis.py index e45147f..d6e80ba 100644 --- a/src/artemis.py +++ b/src/artemis.py @@ -64,7 +64,7 @@ import loggingconf # noqa 401 # import default_imgs_rc -__LATEST_VERSION__ = "3.2.2" +__LATEST_VERSION__ = "3.2.3" if IS_BINARY: __VERSION__ = __LATEST_VERSION__