From f80414121c963ab7e451a1be91136509e247cc5e Mon Sep 17 00:00:00 2001 From: Li Date: Fri, 11 Nov 2022 12:18:04 +0100 Subject: [PATCH] Bump version to 0.1.1 --- .bumpversion.cfg | 4 ++-- CHANGELOG.md | 2 +- setup.py | 2 +- src/compas_igs2/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a6cf605..f43b911 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 message = Bump version to {new_version} commit = True tag = True @@ -14,4 +14,4 @@ replace = __version__ = "{new_version}" [bumpversion:file:CHANGELOG.md] search = Unreleased -replace = [{new_version}] {now:%Y-%m-%d} \ No newline at end of file +replace = [{new_version}] {now:%Y-%m-%d} diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d9fb34..596cda3 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.1.1] 2022-11-11 ### Added diff --git a/setup.py b/setup.py index 000a21d..99c18b9 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def read(*names, **kwargs): setup( name="compas_igs2", - version="0.1.0", + version="0.1.1", 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 2fa9331..2ecce2a 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.0" +__version__ = "0.1.1" HERE = os.path.dirname(__file__)