Skip to content

Commit 7bf8f8c

Browse files
committed
Bump version to 2.0.0
1 parent aa40b38 commit 7bf8f8c

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 2.0.0
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

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.0.0] 2025-10-30
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 v1.0.0 is installed!
30+
COMPAS EVE v2.0.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=1.0.0
86+
conda install compas_eve=2.0.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==1.0.0
102+
pip install compas_eve==2.0.0
103103
104104
105105
Working in Rhino

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def read(*names, **kwargs):
3535

3636
setup(
3737
name="compas_eve",
38-
version="1.0.0",
38+
version="2.0.0",
3939
description="COMPAS Event Extensions: adds event-based communication infrastructure to the COMPAS framework.",
4040
long_description=long_description,
4141
long_description_content_type="text/markdown",

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__ = "casas@arch.ethz.ch"
38-
__version__ = "1.0.0"
38+
__version__ = "2.0.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
@@ -3,7 +3,7 @@
33
44
Executes a long-running task in the background, while keeping Grasshopper reactive.
55
6-
COMPAS EVE v1.0.0
6+
COMPAS EVE v2.0.0
77
"""
88

99
import threading

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Create a message.
33
4-
COMPAS EVE v1.0.0
4+
COMPAS EVE v2.0.0
55
"""
66

77
import System

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Connect or disconnect to an MQTT broker.
33
4-
COMPAS EVE v1.0.0
4+
COMPAS EVE v2.0.0
55
"""
66

77
from threading import Event

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Publish messages to a topic.
33
4-
COMPAS EVE v1.0.0
4+
COMPAS EVE v2.0.0
55
"""
66

77
import time

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Subscribe to a topic to receive messages.
33
4-
COMPAS EVE v1.0.0
4+
COMPAS EVE v2.0.0
55
"""
66

77
from ghpythonlib.componentbase import executingcomponent as component

0 commit comments

Comments
 (0)