diff --git a/CHANGELOG.md b/CHANGELOG.md index e42b896..3654e9f 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] +## [0.3.0] - 2022-08-23 + ### Added - Qt5 and PyQt5 version numbers to the *About* dialog box @@ -97,7 +99,8 @@ instead, I'll just summarize the features. - Ability to zoom in and out of the viewport - Add dialog to change display settings -[Unreleased]: https://github.com/DoctorDalek1963/lintrans/compare/v0.2.2...main +[Unreleased]: https://github.com/DoctorDalek1963/lintrans/compare/v0.3.0...main +[0.3.0]: https://github.com/DoctorDalek1963/lintrans/compare/v0.2.2...v0.3.0 [0.2.2]: https://github.com/DoctorDalek1963/lintrans/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/DoctorDalek1963/lintrans/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/DoctorDalek1963/lintrans/compare/13600cc6ff6299dc4a8101a367bc52fe08607554...v0.2.0 diff --git a/src/lintrans/__init__.py b/src/lintrans/__init__.py index bf2a548..c8e04d6 100644 --- a/src/lintrans/__init__.py +++ b/src/lintrans/__init__.py @@ -8,6 +8,6 @@ from . import crash_reporting, global_settings, gui, matrices, typing_ -__version__ = '0.3.0-alpha' +__version__ = '0.3.0' __all__ = ['crash_reporting', 'global_settings', 'gui', 'matrices', 'typing_', '__version__']