diff --git a/CHANGELOG.md b/CHANGELOG.md index c8038a75b9e..0d4e3b9c90c 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 +## [2.2.0] 2024-06-24 ### Added diff --git a/pyproject.toml b/pyproject.toml index 01ddcd3a384..6494f6537c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,7 +83,7 @@ doctest_optionflags = [ # ============================================================================ [tool.bumpversion] -current_version = "2.1.1" +current_version = "2.2.0" message = "Bump version to {new_version}" commit = true tag = true diff --git a/src/compas/__init__.py b/src/compas/__init__.py index 3a11ce36201..024d8b13d78 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -20,7 +20,7 @@ __copyright__ = "Copyright 2014-2022 - ETH Zurich, Copyright 2023 - COMPAS Association" __license__ = "MIT License" __email__ = "tom.v.mele@gmail.com" -__version__ = "2.1.1" +__version__ = "2.2.0" HERE = compas._os.realpath(os.path.dirname(__file__)) diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index 2584d399d47..6cd48236859 100644 --- a/src/compas_blender/__init__.py +++ b/src/compas_blender/__init__.py @@ -11,7 +11,7 @@ pass -__version__ = "2.1.1" +__version__ = "2.2.0" INSTALLABLE_PACKAGES = ["compas", "compas_blender"] diff --git a/src/compas_ghpython/__init__.py b/src/compas_ghpython/__init__.py index 8c2d75c0fee..773a9b7a27c 100644 --- a/src/compas_ghpython/__init__.py +++ b/src/compas_ghpython/__init__.py @@ -9,7 +9,7 @@ from compas_rhino import unload_modules # noqa: F401 -__version__ = "2.1.1" +__version__ = "2.2.0" if compas.is_rhino(): from .utilities import * # noqa: F401 F403 diff --git a/src/compas_rhino/__init__.py b/src/compas_rhino/__init__.py index a6d02955986..d8151d88c49 100644 --- a/src/compas_rhino/__init__.py +++ b/src/compas_rhino/__init__.py @@ -7,7 +7,7 @@ import compas import compas._os -__version__ = "2.1.1" +__version__ = "2.2.0" PURGE_ON_DELETE = True