diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 082a9c4..cd7b5ee 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.6.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index a2c68cc..3bed4cc 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). -## Unreleased +## [0.6.0] 2024-10-15 ### Added diff --git a/docs/conf.py b/docs/conf.py index 97f3cb9..8eac9ee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ project = "compas_cadwork" copyright = "" author = "" -release = "0.5.0" +release = "0.6.0" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/src/compas_cadwork/__version__.py b/src/compas_cadwork/__version__.py index 9d629e5..8523a15 100644 --- a/src/compas_cadwork/__version__.py +++ b/src/compas_cadwork/__version__.py @@ -3,7 +3,7 @@ __title__ = "compas_cadwork" __description__ = "COMPAS package for integrating with cadwork" __url__ = "https://github.com/gramaziokohler/compas_cadwork" -__version__ = "0.5.0" +__version__ = "0.6.0" __author__ = "Gramazio Kohler Research" __author_email__ = "gramaziokohler@arch.ethz.ch" __license__ = "MIT license"