From fe1222ad568956f1c75b275838337f98f39995f1 Mon Sep 17 00:00:00 2001 From: Chen Kasirer Date: Fri, 4 Oct 2024 10:11:40 +0200 Subject: [PATCH 1/3] fixed merge error in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1333298b9a8..8a5f4487100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed * Fixed support for `compas_gpython` in Rhino 8 Grasshopper CPython components. +* Fixed `Graph.from_edges` always returning `None`. ### Removed @@ -29,7 +30,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 From 007077a6ed4fa7945fef52b89adee0fbe1e0d6d3 Mon Sep 17 00:00:00 2001 From: Chen Kasirer Date: Fri, 4 Oct 2024 10:26:55 +0200 Subject: [PATCH 2/3] Bump version to 2.4.3 --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/compas/__init__.py | 2 +- src/compas_blender/__init__.py | 2 +- src/compas_ghpython/__init__.py | 2 +- src/compas_rhino/__init__.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a5f4487100..99e05c29b2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [2.4.3] 2024-10-04 ### Added diff --git a/pyproject.toml b/pyproject.toml index c84323dfa84..f107b532886 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 diff --git a/src/compas/__init__.py b/src/compas/__init__.py index e16488b473c..72713e47bc0 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -20,7 +20,7 @@ __copyright__ = "Copyright 2014-2022 - ETH Zurich, Copyright 2023 - COMPAS Association" __license__ = "MIT License" __email__ = "tom.v.mele@gmail.com" -__version__ = "2.4.2" +__version__ = "2.4.3" HERE = compas._os.realpath(os.path.dirname(__file__)) diff --git a/src/compas_blender/__init__.py b/src/compas_blender/__init__.py index e750ce42449..93c3003cb88 100644 --- a/src/compas_blender/__init__.py +++ b/src/compas_blender/__init__.py @@ -11,7 +11,7 @@ pass -__version__ = "2.4.2" +__version__ = "2.4.3" INSTALLABLE_PACKAGES = ["compas", "compas_blender"] diff --git a/src/compas_ghpython/__init__.py b/src/compas_ghpython/__init__.py index 2f3cc7d29a2..f8b900dba84 100644 --- a/src/compas_ghpython/__init__.py +++ b/src/compas_ghpython/__init__.py @@ -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", diff --git a/src/compas_rhino/__init__.py b/src/compas_rhino/__init__.py index 9eeb8bb5bc9..98a5627f975 100644 --- a/src/compas_rhino/__init__.py +++ b/src/compas_rhino/__init__.py @@ -7,7 +7,7 @@ import compas import compas._os -__version__ = "2.4.2" +__version__ = "2.4.3" PURGE_ON_DELETE = True From f85415822840eb6c7223698446c335cef06ce55e Mon Sep 17 00:00:00 2001 From: Chen Kasirer Date: Fri, 4 Oct 2024 10:27:22 +0200 Subject: [PATCH 3/3] Prepare changelog for next release --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99e05c29b2a..5771fe98491 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Added + +### Changed + +### Removed + + ## [2.4.3] 2024-10-04 ### Added