diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a15f0d5..0993d9c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.3 +current_version = 0.3.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index d829087..f9c4323 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.3.0] 2024-05-15 ### Added diff --git a/docs/conf.py b/docs/conf.py index f7abf1f..e51305c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ project = "compas_cadwork" copyright = "" author = "" -release = "0.2.3" +release = "0.3.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 8d1a384..132ff7d 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.2.3" +__version__ = "0.3.0" __author__ = "Gramazio Kohler Research" __author_email__ = "gramaziokohler@arch.ethz.ch" __license__ = "MIT license"