Skip to content

Commit 126900a

Browse files
authored
Merge pull request #1266 from compas-dev/workflow
beta.3
2 parents 03f29e6 + 416d620 commit 126900a

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
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 = 2.0.0-beta.2
2+
current_version = 2.0.0-beta.3
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
### Changed
13+
14+
### Removed
15+
16+
17+
## [2.0.0-beta.3] 2024-01-19
18+
19+
### Added
20+
1221
* Added `compas.dtastructures.Network` as alias of `compas.datastructures.Graph`.
1322
* Added `compas.data.Data.name` and included it in serialisation in case `compas.data.Data._name is not None`.
1423

setup.py

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

2323
setup(
2424
name="COMPAS",
25-
version="2.0.0-beta.2",
25+
version="2.0.0-beta.3",
2626
description="The COMPAS framework",
2727
long_description=long_description,
2828
long_description_content_type="text/markdown",

src/compas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
__copyright__ = "Copyright 2014-2022 - ETH Zurich, Copyright 2023 - COMPAS Association"
2222
__license__ = "MIT License"
2323
__email__ = "[email protected]"
24-
__version__ = "2.0.0-beta.2"
24+
__version__ = "2.0.0-beta.3"
2525

2626
version = LooseVersion(compas.__version__)
2727
versionstring = version.vstring.split("-")[0]

src/compas_blender/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .utilities import * # noqa: F401 F403
1212

1313

14-
__version__ = "2.0.0-beta.2"
14+
__version__ = "2.0.0-beta.3"
1515

1616

1717
INSTALLABLE_PACKAGES = ["compas", "compas_blender"]

src/compas_ghpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import compas
77
import compas_rhino
88

9-
__version__ = "2.0.0-beta.2"
9+
__version__ = "2.0.0-beta.3"
1010

1111
if compas.is_rhino():
1212
from .utilities import * # noqa: F401 F403

src/compas_rhino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .utilities import * # noqa: F401 F403
1212

1313

14-
__version__ = "2.0.0-beta.2"
14+
__version__ = "2.0.0-beta.3"
1515

1616

1717
PURGE_ON_DELETE = True

0 commit comments

Comments
 (0)