diff --git a/CHANGELOG.md b/CHANGELOG.md index e76c6f0..829b4d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - Date +## [0.5.1] - 2024-06-22 ### Fixed - Documentation pipeline issue @@ -244,7 +245,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 the database - Matlab-Exporter -[Unreleased]: https://github.com/upb-lea/transistordatabase/compare/0.5.0...HEAD +[Unreleased]: https://github.com/upb-lea/transistordatabase/compare/0.5.1...HEAD +[0.5.1]: https://github.com/upb-lea/transistordatabase/compare/0.5.0...0.5.1 [0.5.0]: https://github.com/upb-lea/transistordatabase/compare/0.4.1...0.5.0 [0.4.1]: https://github.com/upb-lea/transistordatabase/compare/0.4.0...0.4.1 [0.4.0]: https://github.com/upb-lea/transistordatabase/compare/0.3.3...0.4.0 diff --git a/docs/conf.py b/docs/conf.py index fa61766..cc22b99 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ author = 'LEA-UPB' # The full version, including alpha/beta/rc tags -release = '0.5.0' +release = '0.5.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 5f30dd9..2ec455f 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ "Documentation": "https://upb-lea.github.io/transistordatabase/main/transistordatabase.html", "Source Code": "https://github.com/upb-lea/transistordatabase", }, - version='0.5.0', + version='0.5.1', zip_safe=False, data_files=[('', ['CHANGELOG.md'])] ) diff --git a/transistordatabase/__init__.py b/transistordatabase/__init__.py index c97b34a..ff6847e 100644 --- a/transistordatabase/__init__.py +++ b/transistordatabase/__init__.py @@ -1,5 +1,5 @@ """Transistor database package file.""" -__version__ = "0.5.0" +__version__ = "0.5.1" from transistordatabase.constants import * from transistordatabase.mongodb_handling import * from transistordatabase.checker_functions import *