From c3abef9ad5125a6ec844516ba7c192e0e7829f98 Mon Sep 17 00:00:00 2001 From: Gonzalo Casas Date: Tue, 6 Feb 2024 12:14:02 +0100 Subject: [PATCH] Bump version to 2.0.2 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- setup.py | 2 +- src/compas/__init__.py | 2 +- src/compas_blender/__init__.py | 2 +- src/compas_ghpython/__init__.py | 2 +- src/compas_rhino/__init__.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 45e212b11b5..ad154dc1669 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1 +current_version = 2.0.2 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index c758f956802..5ac3497b22d 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.0.2] 2024-02-06 ### Added diff --git a/setup.py b/setup.py index 70bd85f8c16..2ddcd0cb2e3 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read(*names, **kwargs): setup( name="COMPAS", - version="2.0.1", + version="2.0.2", description="The COMPAS framework", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/compas/__init__.py b/src/compas/__init__.py index a6b0339e70c..0b7a393d2f2 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -21,7 +21,7 @@ __copyright__ = "Copyright 2014-2022 - ETH Zurich, Copyright 2023 - COMPAS Association" __license__ = "MIT License" __email__ = "tom.v.mele@gmail.com" -__version__ = "2.0.1" +__version__ = "2.0.2" version = LooseVersion(compas.__version__) versionstring = version.vstring.split("-")[0] diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index 312ac6d3a4e..5132c7b2339 100644 --- a/src/compas_blender/__init__.py +++ b/src/compas_blender/__init__.py @@ -11,7 +11,7 @@ pass -__version__ = "2.0.1" +__version__ = "2.0.2" INSTALLABLE_PACKAGES = ["compas", "compas_blender"] diff --git a/src/compas_ghpython/__init__.py b/src/compas_ghpython/__init__.py index 85ca1c01598..4413df675e6 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.0.1" +__version__ = "2.0.2" 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 a07a7f2bf66..3d416a1015a 100644 --- a/src/compas_rhino/__init__.py +++ b/src/compas_rhino/__init__.py @@ -7,7 +7,7 @@ import compas import compas._os -__version__ = "2.0.1" +__version__ = "2.0.2" PURGE_ON_DELETE = True