From 88ef3bcf632d370fd66c6db4bcd542869803c16d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikolas=20F=C3=B6rster?= Date: Mon, 19 Dec 2022 11:32:07 +0100 Subject: [PATCH] bump version to 0.4.0 --- CHANGELOG.md | 7 ++++++- documentation/source/conf.py | 2 +- setup.py | 3 ++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d16e1c0c..96f1cb29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + + +## [0.4.0] - 2022-12-19 ### Added +- updated and improved syntax - cost functions for core and wire material according to IEEE paper 'Component cost models for multi-objective optimizations of switched-mode power converters' - connect femmt to the new pip package for the material database - add optimization routine for automated design process @@ -107,7 +111,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - add femmt/SolidComp.py - add femmt/CompRes.py -[Unreleased]: https://github.com/upb-lea/transistordatabase/compare/0.3.0...HEAD +[Unreleased]: https://github.com/upb-lea/transistordatabase/compare/0.4.0...HEAD +[0.4.0]: https://github.com/upb-lea/transistordatabase/compare/0.4.0...0.3.0 [0.3.0]: https://github.com/upb-lea/transistordatabase/compare/0.3.0...0.2.1 [0.2.1]: https://github.com/upb-lea/transistordatabase/compare/0.2.0...0.2.1 [0.2.0]: https://github.com/upb-lea/transistordatabase/compare/0.1.2...0.2.0 diff --git a/documentation/source/conf.py b/documentation/source/conf.py index 6fe222f9..dbbf85e4 100644 --- a/documentation/source/conf.py +++ b/documentation/source/conf.py @@ -23,7 +23,7 @@ author = 'LEA-UPB' # The full version, including alpha/beta/rc tags -release = '0.3.0' +release = '0.4.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 67656089..4fdeada5 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,7 @@ 'PyQt5>=5.15.6', 'mplcursors>=0.5.1', # TODO Is this necessary? 'deepdiff>=6.2.1', # comparing result dicts for pytests + 'materialdatabase==0.1.0', ], license="GNU General Public License v3", long_description=readme + '\n\n' + history, @@ -63,7 +64,7 @@ "Documentation": "https://upb-lea.github.io/FEM_Magnetics_Toolbox/main/intro.html", "Source Code": "https://github.com/upb-lea/FEM_Magnetics_Toolbox", }, - version='0.3.0', + version='0.4.0', zip_safe=False, data_files=[('', ['CHANGELOG.md'])] )