Skip to content

Commit

Permalink
bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gituser789 committed Jun 22, 2024
1 parent 39b4e36 commit 43d88cc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


## [Unreleased] - Date
## [0.5.0] - 2024-06-22
### Added
- Non-linear capacitance file export for GeckoCIRCUITS
- Introduction of database manager. See the template_example.py for API changes.
### Fixed
- Fix some GUI data does not accept float or negative values
- Fix reading GUI graph_r_e curves
### Changed
- API has changed according to the introduction of the database manager. See the template_example.py for API changes.

## [0.4.1] - 2022-07-18
### Added
Expand Down Expand Up @@ -237,8 +241,9 @@ 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.4.1...HEAD
[0.4.0]: https://github.com/upb-lea/transistordatabase/compare/0.4.0...0.4.1
[Unreleased]: https://github.com/upb-lea/transistordatabase/compare/0.5.0...HEAD
[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
[0.3.3]: https://github.com/upb-lea/transistordatabase/compare/0.3.2...0.3.3
[0.3.2]: https://github.com/upb-lea/transistordatabase/compare/0.3.1...0.3.2
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
# -- Project information -----------------------------------------------------

project = 'transistordatabase(TDB)'
copyright = '2021, LEA, Paderborn University'
copyright = '2024, LEA, Paderborn University'
author = 'LEA-UPB'

# The full version, including alpha/beta/rc tags
release = '0.4.1'
release = '0.5.0'

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
include_package_data=True,
keywords='Transtordatabase',
keywords='Transistordatabase',
name='transistordatabase',
packages=find_packages(include=['transistordatabase', 'transistordatabase.*']),
setup_requires=setup_requirements,
Expand All @@ -68,7 +68,7 @@
"Documentation": "https://upb-lea.github.io/transistordatabase/main/transistordatabase.html",
"Source Code": "https://github.com/upb-lea/transistordatabase",
},
version='0.4.1',
version='0.5.0',
zip_safe=False,
data_files=[('', ['CHANGELOG.md'])]
)
2 changes: 1 addition & 1 deletion transistordatabase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Transistor database package file."""
__version__ = "0.4.1"
__version__ = "0.5.0"
from transistordatabase.constants import *
from transistordatabase.mongodb_handling import *
from transistordatabase.checker_functions import *
Expand Down

0 comments on commit 43d88cc

Please sign in to comment.