File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1717# -- Project information -----------------------------------------------------
1818
1919project = 'transistordatabase(TDB)'
20- copyright = '2021 , LEA, Paderborn University'
20+ copyright = '2024 , LEA, Paderborn University'
2121author = '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
Original file line number Diff line number Diff line change 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 ,
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)
Original file line number Diff line number Diff line change 11"""Transistor database package file."""
2- __version__ = "0.4.1 "
2+ __version__ = "0.5.0 "
33from transistordatabase .constants import *
44from transistordatabase .mongodb_handling import *
55from transistordatabase .checker_functions import *
You can’t perform that action at this time.
0 commit comments