diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f43b911..6fce41e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.2.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c159e4..4ad9f2a 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.2.0] 2022-11-17 ### Added diff --git a/setup.py b/setup.py index 99c18b9..1131232 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def read(*names, **kwargs): setup( name="compas_igs2", - version="0.1.1", + version="0.2.0", description="Interactive 2D graphic statics based on compas_ags", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas_igs2/__init__.py b/src/compas_igs2/__init__.py index 2ecce2a..0648516 100644 --- a/src/compas_igs2/__init__.py +++ b/src/compas_igs2/__init__.py @@ -21,7 +21,7 @@ __copyright__ = "" __license__ = "MIT License" __email__ = "van.mele@arch.ethz.ch, juney.lee@som.com, li.chen@arch.ethz.ch" -__version__ = "0.1.1" +__version__ = "0.2.0" HERE = os.path.dirname(__file__)