diff --git a/CMakeLists.txt b/CMakeLists.txt index 139c230d1..67df85077 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.1 + VERSION 0.6.2 DESCRIPTION "An open-source design automation framework for Field-coupled Nanotechnologies" HOMEPAGE_URL "https://github.com/cda-tum/fiction" diff --git a/bindings/pyfiction/include/pyfiction/pybind11_mkdoc_docstrings.hpp b/bindings/pyfiction/include/pyfiction/pybind11_mkdoc_docstrings.hpp index fdf506117..90f8453db 100644 --- a/bindings/pyfiction/include/pyfiction/pybind11_mkdoc_docstrings.hpp +++ b/bindings/pyfiction/include/pyfiction/pybind11_mkdoc_docstrings.hpp @@ -672,8 +672,8 @@ static const char *__doc_fiction_bdl_pair = R"doc(A Binary-dot Logic (BDL) pair is a pair of SiDBs that are close to each other and, thus, most likely share a charge. -Template parameter ``Lyt``: - SiDB cell-level layout type.)doc"; +Template parameter ``CellType``: + Cell type.)doc"; static const char *__doc_fiction_bdl_pair_bdl_pair = R"doc(Standard constructor for empty BDL pairs.)doc"; @@ -3300,8 +3300,8 @@ Parameter ``params``: static const char *__doc_fiction_design_sidb_gates_params = R"doc(This struct contains parameters and settings to design SiDB gates. -Template parameter ``Cell``: - -level layout type.)doc"; +Template parameter ``CellType``: + Cell type.)doc"; static const char *__doc_fiction_design_sidb_gates_params_canvas = R"doc(Canvas spanned by the northwest and southeast cell.)doc"; diff --git a/docs/changelog.rst b/docs/changelog.rst index d4cf2a8fa..733e198fa 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. +v0.6.2 - 2024-05-22 +------------------- + +Added +##### +- Experiments: + - Script for runtime evaluation of ExGS, QuickExact, and QuickSim on the Bestagon gate set + +Fixed +##### +- Python bindings: + - ``detect_bdl_pairs`` no longer require the ``_100`` or ``_111`` suffix + - Minor inconsistencies v0.6.1 - 2024-05-16 ------------------- diff --git a/docs/conf.py b/docs/conf.py index 247aa1f99..0d172912c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ # built documents. # # The short X.Y version. -version = 'v0.6.1' +version = 'v0.6.2' # The full version, including alpha/beta/rc tags. -release = 'v0.6.1' +release = 'v0.6.2' # 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 c790249c7..f16348060 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] name = "mnt.pyfiction" -version = "0.6.1" +version = "0.6.2" description = "Design Automation for Field-coupled Nanotechnologies" readme = "README.md" authors = [ diff --git a/setup.py b/setup.py index 95f750cc5..ae7ae1521 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ def build_extension(self, ext): setup( name='mnt.pyfiction', - version='0.6.1', + version='0.6.2', author='Marcel Walter', author_email='marcel.walter@tum.de', description='Design Automation for Field-coupled Nanotechnologies',