Skip to content

Commit

Permalink
Merge branch 'main' into docs-devguids-data
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele authored Oct 4, 2024
2 parents 0c46a8c + f854158 commit 23a22e0
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

### Removed


## [2.4.3] 2024-10-04

### Added

### Changed

* Fixed support for `compas_gpython` in Rhino 8 Grasshopper CPython components.
* Changed installation instructions for Rhino 8 in the user guide.
* Fixed `Graph.from_edges` always returning `None`.

### Removed

Expand All @@ -32,7 +42,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fixed args for `SceneObject` on Grasshopper `Draw` component.
* Replaced use of `Rhino.Geometry.VertexColors.SetColors` with a for loop and `SetColor` in `compas_ghpyton` since the former requires a `System.Array`.
* Fixed `Mesh.face_circle`.
* Fixed `Graph.from_edges`.

### Removed

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ doctest_optionflags = [
# ============================================================================

[tool.bumpversion]
current_version = "2.4.2"
current_version = "2.4.3"
message = "Bump version to {new_version}"
commit = true
tag = true
Expand Down
2 changes: 1 addition & 1 deletion src/compas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
__copyright__ = "Copyright 2014-2022 - ETH Zurich, Copyright 2023 - COMPAS Association"
__license__ = "MIT License"
__email__ = "[email protected]"
__version__ = "2.4.2"
__version__ = "2.4.3"


HERE = compas._os.realpath(os.path.dirname(__file__))
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 @@
pass


__version__ = "2.4.2"
__version__ = "2.4.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 @@ -9,7 +9,7 @@
from compas_rhino import unload_modules # noqa: F401


__version__ = "2.4.2"
__version__ = "2.4.3"

__all__ = [
"get_grasshopper_managedplugin_path",
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.4.2"
__version__ = "2.4.3"


PURGE_ON_DELETE = True
Expand Down

0 comments on commit 23a22e0

Please sign in to comment.