Skip to content

Commit c37da62

Browse files
authored
🔖 Bump version to 0.6.4 (#516)
* 🔖 Bump version to 0.6.4 * 📝 Updated the CHANGELOG
1 parent 2e8baec commit c37da62

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
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.3
21+
VERSION 0.6.4
2222
DESCRIPTION
2323
"An open-source design automation framework for Field-coupled Nanotechnologies"
2424
HOMEPAGE_URL "https://github.com/cda-tum/fiction"

docs/changelog.rst

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,28 @@ 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-
Unreleased
9-
----------
8+
v0.6.4 - 2024-08-30
9+
-------------------
1010

1111
Added
1212
#####
1313
- Algorithms:
1414
- Path-finding:
1515
- Squared Euclidean distance function
1616
- Chebyshev distance function
17+
- Data structures:
18+
- ``gate_level_layout`` now tracks its number of crossings
19+
- CLI:
20+
- ``ps -g`` and ``store -g`` now display the current ``gate_level_layout``'s number of crossings
21+
22+
Fixed
23+
#####
24+
- Fixed disappearing clocking schemes when applying a gate library to a gate-level layout
25+
- Fixed a few oversights in the RTD documentation of SiDB simulation functionality
26+
- Fixed several typos and docstrings in the codebase
27+
- Addressed some ``clang-tidy`` warnings
1728

18-
v0.6.3 - 2024-08-21
29+
v0.6.3 - 2024-08-22
1930
-------------------
2031

2132
Added

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.3'
54+
version = 'v0.6.4'
5555
# The full version, including alpha/beta/rc tags.
56-
release = 'v0.6.3'
56+
release = 'v0.6.4'
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.3"
12+
version = "0.6.4"
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.2',
103+
version='0.6.4',
104104
author='Marcel Walter',
105105
author_email='[email protected]',
106106
description='Design Automation for Field-coupled Nanotechnologies',

0 commit comments

Comments
 (0)