Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 Version bump to 0.6.1 #437

Merged
merged 3 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
22 changes: 22 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.

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


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
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
description='Design Automation for Field-coupled Nanotechnologies',
Expand Down
Loading