From 1ba2aaf9d7e87aa7acc4fd3f043c7541d25d2a4e Mon Sep 17 00:00:00 2001 From: joburger <33052142+joburger@users.noreply.github.com> Date: Thu, 18 Nov 2021 16:24:21 +0100 Subject: [PATCH 1/2] Bump version to 0.4.0 --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 2 +- docs/conf.py | 2 +- docs/doc_versions.txt | 1 + setup.py | 2 +- src/compas_slicer/__init__.py | 2 +- 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2cd03d51..f1df0c85 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.5 +current_version = 0.4.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aef82f70..d6c32fc3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_ and this project adheres to `Semantic Versioning `_. -Unreleased +0.4.0 ---------- **Added** diff --git a/docs/conf.py b/docs/conf.py index a0a1f374..d422f2e5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ year = '2020' author = 'Digital Building Technologies, Gramazio Kohler Research' copyright = '{0}, {1}'.format(year, author) -version = release = '0.3.5' +version = release = '0.4.0' pygments_style = 'sphinx' show_authors = True diff --git a/docs/doc_versions.txt b/docs/doc_versions.txt index faeb9903..58fe7e6e 100644 --- a/docs/doc_versions.txt +++ b/docs/doc_versions.txt @@ -1,5 +1,6 @@ latest stable +0.4.0 0.3.5 0.3.4 0.3.3 diff --git a/setup.py b/setup.py index c4a66fde..19ba3b00 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def read(*names, **kwargs): setup( name="compas_slicer", - version="0.3.5", + version="0.4.0", description="Slicing package for FDM 3D Printing with COMPAS", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas_slicer/__init__.py b/src/compas_slicer/__init__.py index f2f212ea..75eb7e08 100644 --- a/src/compas_slicer/__init__.py +++ b/src/compas_slicer/__init__.py @@ -29,7 +29,7 @@ __copyright__ = 'Copyright 2020 ETH Zurich' __license__ = 'MIT License' __email__ = 'mitropoulou@arch.ethz.ch' -__version__ = '0.3.5' +__version__ = '0.4.0' HERE = os.path.dirname(__file__) From cce9076945ae34446cccfab1e967e37f6eb9f82c Mon Sep 17 00:00:00 2001 From: joburger <33052142+joburger@users.noreply.github.com> Date: Thu, 18 Nov 2021 16:24:26 +0100 Subject: [PATCH 2/2] Prepare changelog for next release --- CHANGELOG.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d6c32fc3..0d431326 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,19 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_ and this project adheres to `Semantic Versioning `_. +Unreleased +---------- + +**Added** + +**Changed** + +**Fixed** + +**Deprecated** + +**Removed** + 0.4.0 ----------