From b8fc5c660b2094c7030ba47e3a420aa02f080b88 Mon Sep 17 00:00:00 2001 From: Gonzalo Casas Date: Tue, 6 Feb 2024 21:13:15 +0100 Subject: [PATCH] Bump version to 0.2.2 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- setup.py | 2 +- src/compas_robots/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ee7e0627..1f83f38d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b437955..570915b0 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.2] 2024-02-06 ### Added diff --git a/setup.py b/setup.py index f02cd241..0fd8f6d7 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def read(*names, **kwargs): setup( name="compas_robots", - version="0.2.1", + version="0.2.2", description="Basic infrastructure for working with robots in COMPAS.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas_robots/__init__.py b/src/compas_robots/__init__.py index efe3d508..a599140d 100644 --- a/src/compas_robots/__init__.py +++ b/src/compas_robots/__init__.py @@ -20,7 +20,7 @@ __copyright__ = "COMPAS Association" __license__ = "MIT License" __email__ = "casas@arch.ethz.ch" -__version__ = "0.2.1" +__version__ = "0.2.2" from .configuration import Configuration