diff --git a/CMakeLists.txt b/CMakeLists.txt index 85cc723c0..139c230d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) # Set the project name and version project( fiction - VERSION 0.6.0 + VERSION 0.6.1 DESCRIPTION "An open-source design automation framework for Field-coupled Nanotechnologies" HOMEPAGE_URL "https://github.com/cda-tum/fiction" diff --git a/docs/changelog.rst b/docs/changelog.rst index 4fb96133e..d4cf2a8fa 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. + +v0.6.1 - 2024-05-16 +------------------- + +Added +##### +- Utils: + - Truth table helpers for the creation of 3-input functions (NPN class representatives) +- Documentation: + - Information on hexagonalization and post-layout optimization in README and ReadTheDocs + +Changed +####### +- Continuous integration: + - Limit the number of CI runs for PyPI deployment + +Fixed +##### +- Continuous deployment: + - Fixed the PyPI deployment workflow to publish all wheels properly + + v0.6.0 - 2024-05-05 ------------------- *When it comes to the past, everyone writes fiction.* --- Stephen King diff --git a/docs/conf.py b/docs/conf.py index 56e001477..247aa1f99 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ # built documents. # # The short X.Y version. -version = 'v0.6.0' +version = 'v0.6.1' # The full version, including alpha/beta/rc tags. -release = 'v0.6.0' +release = 'v0.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 5a015b5df..c790249c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] name = "mnt.pyfiction" -version = "0.6.0" +version = "0.6.1" description = "Design Automation for Field-coupled Nanotechnologies" readme = "README.md" authors = [ diff --git a/setup.py b/setup.py index 6d70c6859..95f750cc5 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ def build_extension(self, ext): setup( name='mnt.pyfiction', - version='0.6.0', + version='0.6.1', author='Marcel Walter', author_email='marcel.walter@tum.de', description='Design Automation for Field-coupled Nanotechnologies',