diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e5169b00..914ec212 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.6 +current_version = 0.1.7 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 85762428..33136eb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.1.6] 2020-02-06 +## [[0.1.7] 2020-02-07] 2020-02-06 ### Added @@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Fixed compas_rrc requirement syntax given it's installed from git repository * Added compas_rrc to installable packages for `compas_rcf.install_rhino` -## [[0.1.6] 2020-02-06] 2020-02-05 +## [[[0.1.7] 2020-02-07] 2020-02-06] 2020-02-05 ### Added * `ClayBulletEncoder` to serialize `ClayBullet` added to `compas_rcf.fabrication.clay_obj` diff --git a/docs/conf.py b/docs/conf.py index e339cdbf..bc5dedba 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ project = "compas_rcf" copyright = "MAS DFAB 1920 students and tutors" author = "Anton T Johansson" -release = "0.1.6" +release = "0.1.7" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/setup.py b/setup.py index ba66db56..159623d3 100755 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ def read(*names, **kwargs): setup( name="compas_rcf", - version="0.1.6", + version="0.1.7", description="python module for MAS DFAB project Rapid Clay Formations", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas_rcf/__init__.py b/src/compas_rcf/__init__.py index 5c422c14..c5a99975 100644 --- a/src/compas_rcf/__init__.py +++ b/src/compas_rcf/__init__.py @@ -21,7 +21,7 @@ __copyright__ = "MAS DFAB 1920 students and tutors" __license__ = "MIT License" __email__ = "anton@tetov.se" -__version__ = "0.1.6" +__version__ = "0.1.7" HERE = os.path.dirname(__file__)