Skip to content

Commit a18bb0e

Browse files
committed
Bump version to 2.1.0
1 parent 3ed8b41 commit a18bb0e

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [2.1.0] 2025-11-12
99

1010
### Added
1111

docs/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ command to check if the installation process was successful.
2727
2828
.. code-block:: none
2929
30-
COMPAS EVE v2.0.0 is installed!
30+
COMPAS EVE v2.1.0 is installed!
3131
3232
You are ready to use **COMPAS EVE**!
3333

@@ -83,7 +83,7 @@ To switch to a specific version
8383

8484
.. code-block:: bash
8585
86-
conda install compas_eve=2.0.0
86+
conda install compas_eve=2.1.0
8787
8888
8989
Update with pip
@@ -99,7 +99,7 @@ Or to switch to a specific version
9999

100100
.. code-block:: bash
101101
102-
pip install compas_eve==2.0.0
102+
pip install compas_eve==2.1.0
103103
104104
105105
Working in Rhino

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ docstring-code-line-length = "dynamic"
111111
# ============================================================================
112112

113113
[tool.bumpversion]
114-
current_version = "2.0.0"
114+
current_version = "2.1.0"
115115
message = "Bump version to {new_version}"
116116
commit = true
117117
tag = true

src/compas_eve/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
__copyright__ = "Gramazio Kohler Research"
3636
__license__ = "MIT License"
3737
__email__ = "[email protected]"
38-
__version__ = "2.0.0"
38+
__version__ = "2.1.0"
3939

4040
from .event_emitter import EventEmitterMixin # noqa: F401 needed here to avoid circular import on py2.7
4141
from .core import (

src/compas_eve/ghpython/components/Ce_BackgroundTask/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# r: compas_eve>=2.0.0
1+
# r: compas_eve>=2.1.0
22
"""
33
Background Task component.
44

src/compas_eve/ghpython/components/Ce_Message/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# r: compas_eve>=2.0.0
1+
# r: compas_eve>=2.1.0
22
"""
33
Create a message.
44
"""

src/compas_eve/ghpython/components/Ce_MqttConnect/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# r: compas_eve>=2.0.0
1+
# r: compas_eve>=2.1.0
22
"""
33
Connect or disconnect to an MQTT broker.
44
"""

src/compas_eve/ghpython/components/Ce_Publish/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# r: compas_eve>=2.0.0
1+
# r: compas_eve>=2.1.0
22
"""
33
Publish messages to a topic.
44
"""

src/compas_eve/ghpython/components/Ce_Subscribe/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# r: compas_eve>=2.0.0
1+
# r: compas_eve>=2.1.0
22
"""
33
Subscribe to a topic to receive messages.
44
"""

0 commit comments

Comments
 (0)