Skip to content

Commit 43d88cc

Browse files
committed
bump version to 0.5.0
1 parent 39b4e36 commit 43d88cc

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77

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

1519
## [0.4.1] - 2022-07-18
1620
### Added
@@ -237,8 +241,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
237241
the database
238242
- Matlab-Exporter
239243

240-
[Unreleased]: https://github.com/upb-lea/transistordatabase/compare/0.4.1...HEAD
241-
[0.4.0]: https://github.com/upb-lea/transistordatabase/compare/0.4.0...0.4.1
244+
[Unreleased]: https://github.com/upb-lea/transistordatabase/compare/0.5.0...HEAD
245+
[0.5.0]: https://github.com/upb-lea/transistordatabase/compare/0.4.1...0.5.0
246+
[0.4.1]: https://github.com/upb-lea/transistordatabase/compare/0.4.0...0.4.1
242247
[0.4.0]: https://github.com/upb-lea/transistordatabase/compare/0.3.3...0.4.0
243248
[0.3.3]: https://github.com/upb-lea/transistordatabase/compare/0.3.2...0.3.3
244249
[0.3.2]: https://github.com/upb-lea/transistordatabase/compare/0.3.1...0.3.2

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
# -- Project information -----------------------------------------------------
1818

1919
project = 'transistordatabase(TDB)'
20-
copyright = '2021, LEA, Paderborn University'
20+
copyright = '2024, LEA, Paderborn University'
2121
author = 'LEA-UPB'
2222

2323
# The full version, including alpha/beta/rc tags
24-
release = '0.4.1'
24+
release = '0.5.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
long_description=readme + '\n\n' + history,
5757
long_description_content_type="text/markdown",
5858
include_package_data=True,
59-
keywords='Transtordatabase',
59+
keywords='Transistordatabase',
6060
name='transistordatabase',
6161
packages=find_packages(include=['transistordatabase', 'transistordatabase.*']),
6262
setup_requires=setup_requirements,
@@ -68,7 +68,7 @@
6868
"Documentation": "https://upb-lea.github.io/transistordatabase/main/transistordatabase.html",
6969
"Source Code": "https://github.com/upb-lea/transistordatabase",
7070
},
71-
version='0.4.1',
71+
version='0.5.0',
7272
zip_safe=False,
7373
data_files=[('', ['CHANGELOG.md'])]
7474
)

transistordatabase/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Transistor database package file."""
2-
__version__ = "0.4.1"
2+
__version__ = "0.5.0"
33
from transistordatabase.constants import *
44
from transistordatabase.mongodb_handling import *
55
from transistordatabase.checker_functions import *

0 commit comments

Comments
 (0)