From e9081aeddc052f37505954b975119c4716a3801a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikolas=20F=C3=B6rster?= Date: Tue, 2 Nov 2021 09:24:38 +0100 Subject: [PATCH] bump version string to 0.2.14 --- CHANGELOG.md | 4 ++-- setup.py | 5 +++-- sphinx/conf.py | 2 +- transistordatabase/databaseClasses.py | 1 + 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 517a3c7..8f9fe79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/setup.py b/setup.py index 480ad89..745aa32 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -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'])] ) diff --git a/sphinx/conf.py b/sphinx/conf.py index 34ae308..3f1983c 100644 --- a/sphinx/conf.py +++ b/sphinx/conf.py @@ -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 --------------------------------------------------- diff --git a/transistordatabase/databaseClasses.py b/transistordatabase/databaseClasses.py index 4be554a..9a11c64 100644 --- a/transistordatabase/databaseClasses.py +++ b/transistordatabase/databaseClasses.py @@ -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