Skip to content

Commit

Permalink
bump version string to 0.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
gituser789 committed Nov 2, 2021
1 parent 56954d3 commit e9081ae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [0.2.14] - 2021-10-31
## [0.2.14] - 2021-11-02
### Added
- Helper function 'collect_i_e_and_r_e_combination' to find and associate i_e and r_e based SwitchEnergyData objects for usage in gecko exporter
- Helper function 'check_keys' to validate the arguments provided to gecko exporter
Expand All @@ -26,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bugfixes
- fix #48: export_datasheet fails when exporting a SiC-MOSFET
- fix #49: Print housing_list and manufacturer_list in case of not maching housings/manufacturers in isvaliddict
- fix #49: Print housing_list and manufacturer_list in case of not maching housings/manufacturers when creating a transistor

## [0.2.13] - 2021-09-30
### Added
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
'gitpython >=3.1.14',
'Jinja2 >= 3.0.1',
'packaging>=20.9',
'Pillow>=8.3.1'],
'Pillow>=8.3.1',
'pytest>=6.2.4'],
license="GNU General Public License v3",
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
Expand All @@ -61,7 +62,7 @@
"Documentation": "https://upb-lea.github.io/transistordatabase/main/transistordatabase.html",
"Source Code": "https://github.com/upb-lea/transistordatabase",
},
version='0.2.13',
version='0.2.14',
zip_safe=False,
data_files=[('', ['CHANGELOG.md'])]
)
2 changes: 1 addition & 1 deletion sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'LEA-UPB'

# The full version, including alpha/beta/rc tags
release = '0.2.13'
release = '0.2.14'

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

Expand Down
1 change: 1 addition & 0 deletions transistordatabase/databaseClasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -4183,6 +4183,7 @@ def compatibilityTest(Transistor, attribute):
def check_keys(keys_to_check, req_type, switch_type):
"""
A helper function for find_next_gate_voltage method of class type - switch and diode. Verifies if the required keys are available and their value types are valid for carrying out the export
Used for export_gecko() and export_plecs()
:param keys_to_check: the dictionary which contains the essential keys for the corresponding exporter function
:type keys_to_check: dict
Expand Down

0 comments on commit e9081ae

Please sign in to comment.