Skip to content

Commit 1da1297

Browse files
🔖 Bump version to 0.6.2 (#443)
* 📝 Updated the changelog * 🔖 Bumped version to 0.6.2 * 📝 Update pyfiction docstrings Signed-off-by: GitHub Actions <[email protected]> --------- Signed-off-by: GitHub Actions <[email protected]> Co-authored-by: GitHub Actions <[email protected]>
1 parent f128aec commit 1da1297

File tree

6 files changed

+22
-9
lines changed

6 files changed

+22
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
1818
# Set the project name and version
1919
project(
2020
fiction
21-
VERSION 0.6.1
21+
VERSION 0.6.2
2222
DESCRIPTION
2323
"An open-source design automation framework for Field-coupled Nanotechnologies"
2424
HOMEPAGE_URL "https://github.com/cda-tum/fiction"

bindings/pyfiction/include/pyfiction/pybind11_mkdoc_docstrings.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -672,8 +672,8 @@ static const char *__doc_fiction_bdl_pair =
672672
R"doc(A Binary-dot Logic (BDL) pair is a pair of SiDBs that are close to
673673
each other and, thus, most likely share a charge.
674674

675-
Template parameter ``Lyt``:
676-
SiDB cell-level layout type.)doc";
675+
Template parameter ``CellType``:
676+
Cell type.)doc";
677677

678678
static const char *__doc_fiction_bdl_pair_bdl_pair = R"doc(Standard constructor for empty BDL pairs.)doc";
679679

@@ -3300,8 +3300,8 @@ Parameter ``params``:
33003300
static const char *__doc_fiction_design_sidb_gates_params =
33013301
R"doc(This struct contains parameters and settings to design SiDB gates.
33023302

3303-
Template parameter ``Cell``:
3304-
-level layout type.)doc";
3303+
Template parameter ``CellType``:
3304+
Cell type.)doc";
33053305

33063306
static const char *__doc_fiction_design_sidb_gates_params_canvas = R"doc(Canvas spanned by the northwest and southeast cell.)doc";
33073307

docs/changelog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55

66
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_.
77

8+
v0.6.2 - 2024-05-22
9+
-------------------
10+
11+
Added
12+
#####
13+
- Experiments:
14+
- Script for runtime evaluation of ExGS, QuickExact, and QuickSim on the Bestagon gate set
15+
16+
Fixed
17+
#####
18+
- Python bindings:
19+
- ``detect_bdl_pairs`` no longer require the ``_100`` or ``_111`` suffix
20+
- Minor inconsistencies
821

922
v0.6.1 - 2024-05-16
1023
-------------------

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = 'v0.6.1'
54+
version = 'v0.6.2'
5555
# The full version, including alpha/beta/rc tags.
56-
release = 'v0.6.1'
56+
release = 'v0.6.2'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "mnt.pyfiction"
12-
version = "0.6.1"
12+
version = "0.6.2"
1313
description = "Design Automation for Field-coupled Nanotechnologies"
1414
readme = "README.md"
1515
authors = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def build_extension(self, ext):
100100

101101
setup(
102102
name='mnt.pyfiction',
103-
version='0.6.1',
103+
version='0.6.2',
104104
author='Marcel Walter',
105105
author_email='[email protected]',
106106
description='Design Automation for Field-coupled Nanotechnologies',

0 commit comments

Comments
 (0)