Skip to content

Commit 27fc606

Browse files
committed
Bump version to 0.3.2
1 parent c335264 commit 27fc606

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
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 = 0.3.1
2+
current_version = 0.3.2
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+
## [0.3.2] 2023-11-24
99

1010
### Added
1111

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project = "compas_eve"
2020
copyright = "Gramazio Kohler Research"
2121
author = "Gonzalo Casas"
22-
release = "0.3.1"
22+
release = "0.3.2"
2323
version = ".".join(release.split(".")[0:2])
2424

2525
master_doc = "index"

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 v0.3.1 is installed!
30+
COMPAS EVE v0.3.2 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=0.3.1
86+
conda install compas_eve=0.3.2
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==0.3.1
102+
pip install compas_eve==0.3.2
103103
104104
105105
Working in Rhino

setup.py

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

2626
setup(
2727
name="compas_eve",
28-
version="0.3.1",
28+
version="0.3.2",
2929
description="COMPAS Event Extensions: adds event-based communication infrastructure to the COMPAS framework.",
3030
long_description=long_description,
3131
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
@@ -33,7 +33,7 @@
3333
__copyright__ = "Gramazio Kohler Research"
3434
__license__ = "MIT License"
3535
__email__ = "[email protected]"
36-
__version__ = "0.3.1"
36+
__version__ = "0.3.2"
3737

3838
from .event_emitter import EventEmitterMixin # noqa: F401 needed here to avoid circular import on py2.7
3939
from .core import Message, Publisher, Subscriber, Transport, Topic, get_default_transport, set_default_transport

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 v0.3.1
6+
COMPAS EVE v0.3.2
77
"""
88
import threading
99
import scriptcontext as sc

0 commit comments

Comments
 (0)