Skip to content

Commit 3742e70

Browse files
committed
Bump version to 0.5.0
1 parent 6b3f73e commit 3742e70

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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.4.0
2+
current_version = 0.5.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+
## [0.5.0] 2024-05-01
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 v0.4.0 is installed!
30+
COMPAS EVE v0.5.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=0.4.0
86+
conda install compas_eve=0.5.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==0.4.0
102+
pip install compas_eve==0.5.0
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.4.0",
28+
version="0.5.0",
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
@@ -34,7 +34,7 @@
3434
__copyright__ = "Gramazio Kohler Research"
3535
__license__ = "MIT License"
3636
__email__ = "[email protected]"
37-
__version__ = "0.4.0"
37+
__version__ = "0.5.0"
3838

3939
from .event_emitter import EventEmitterMixin # noqa: F401 needed here to avoid circular import on py2.7
4040
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 v0.4.0
6+
COMPAS EVE v0.5.0
77
"""
88

99
import threading

0 commit comments

Comments
 (0)