Skip to content

Commit

Permalink
Bump version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Jun 24, 2024
1 parent 7b4c795 commit 0c5be6d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/compas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))
Expand Down
2 changes: 1 addition & 1 deletion src/compas_blender/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
pass


__version__ = "2.1.1"
__version__ = "2.2.0"


INSTALLABLE_PACKAGES = ["compas", "compas_blender"]
Expand Down
2 changes: 1 addition & 1 deletion src/compas_ghpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/compas_rhino/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import compas
import compas._os

__version__ = "2.1.1"
__version__ = "2.2.0"


PURGE_ON_DELETE = True
Expand Down

0 comments on commit 0c5be6d

Please sign in to comment.