Skip to content

Commit

Permalink
Merge pull request #1290 from compas-dev/Release
Browse files Browse the repository at this point in the history
2.0.0!!!!
  • Loading branch information
Licini authored Jan 31, 2024
2 parents ee7621b + 4b38c52 commit 73f9efb
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.4
current_version = 2.0.0
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] 2024-01-31

### Added

* Added `group` attribute to `compas_rhino.scene.RhinoSceneObject`.
* Added `_guid_mesh`, `_guids_vertices`, `_guids_edges`, `_guids_faces`, `_guids_vertexlabels`, `_guids_edgelables`, `_guids_facelabels`, `_guids_vertexnormals`, `_guids_facenormals`, `_guids_spheres`, `_guids_pipes`, `disjoint` attributes to `compas_rhino.scene.MeshObject`.
* Added `_guids_nodes`, `_guids_edges`, `_guids_nodelabels`, `_guids_edgelables`, `_guids_spheres`, `_guids_pipes` attributes to `compas_rhino.scene.GraphObject`.
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.4",
version="2.0.0",
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.4"
__version__ = "2.0.0"

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.4"
__version__ = "2.0.0"


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 @@ -9,7 +9,7 @@
from compas_rhino import unload_modules # noqa: F401


__version__ = "2.0.0-beta.4"
__version__ = "2.0.0"

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 @@ -7,7 +7,7 @@
import compas
import compas._os

__version__ = "2.0.0-beta.4"
__version__ = "2.0.0"


PURGE_ON_DELETE = True
Expand Down

0 comments on commit 73f9efb

Please sign in to comment.