Skip to content

Commit

Permalink
Merge pull request #1266 from compas-dev/workflow
Browse files Browse the repository at this point in the history
beta.3
  • Loading branch information
Licini authored Jan 20, 2024
2 parents 03f29e6 + 416d620 commit 126900a
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0-beta.2
current_version = 2.0.0-beta.3
message = Bump version to {new_version}
commit = True
tag = True
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

### Removed


## [2.0.0-beta.3] 2024-01-19

### Added

* Added `compas.dtastructures.Network` as alias of `compas.datastructures.Graph`.
* Added `compas.data.Data.name` and included it in serialisation in case `compas.data.Data._name is not None`.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def read(*names, **kwargs):

setup(
name="COMPAS",
version="2.0.0-beta.2",
version="2.0.0-beta.3",
description="The COMPAS framework",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/compas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
__copyright__ = "Copyright 2014-2022 - ETH Zurich, Copyright 2023 - COMPAS Association"
__license__ = "MIT License"
__email__ = "[email protected]"
__version__ = "2.0.0-beta.2"
__version__ = "2.0.0-beta.3"

version = LooseVersion(compas.__version__)
versionstring = version.vstring.split("-")[0]
Expand Down
2 changes: 1 addition & 1 deletion src/compas_blender/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .utilities import * # noqa: F401 F403


__version__ = "2.0.0-beta.2"
__version__ = "2.0.0-beta.3"


INSTALLABLE_PACKAGES = ["compas", "compas_blender"]
Expand Down
2 changes: 1 addition & 1 deletion src/compas_ghpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import compas
import compas_rhino

__version__ = "2.0.0-beta.2"
__version__ = "2.0.0-beta.3"

if compas.is_rhino():
from .utilities import * # noqa: F401 F403
Expand Down
2 changes: 1 addition & 1 deletion src/compas_rhino/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .utilities import * # noqa: F401 F403


__version__ = "2.0.0-beta.2"
__version__ = "2.0.0-beta.3"


PURGE_ON_DELETE = True
Expand Down

0 comments on commit 126900a

Please sign in to comment.