From 27bc92b2006e25d129d338545f0a99df0fb90d4e Mon Sep 17 00:00:00 2001 From: Gonzalo Casas Date: Mon, 24 Jun 2024 14:42:06 +0200 Subject: [PATCH] Bump version to 0.9.5 --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/compas_xr/__init__.py | 2 +- src/compas_xr/ghpython/components/Cx_AppSettings/code.py | 2 +- src/compas_xr/ghpython/components/Cx_Firebase_Config/code.py | 2 +- .../ghpython/components/Cx_GetTrajectoryRequest/code.py | 2 +- .../ghpython/components/Cx_MqttTrajectoryResult/code.py | 2 +- .../ghpython/components/Cx_PlanningServiceResponse/code.py | 2 +- src/compas_xr/ghpython/components/Cx_SendTrajectory/code.py | 2 +- src/compas_xr/ghpython/components/Cx_XrOptions/code.py | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 610d76f..eb5c697 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 +## [0.9.5] 2024-06-24 ### Added diff --git a/pyproject.toml b/pyproject.toml index 75989a0..133f095 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,7 +76,7 @@ doctest_optionflags = [ # ============================================================================ [tool.bumpversion] -current_version = "0.9.4" +current_version = "0.9.5" message = "Bump version to {new_version}" commit = true tag = true diff --git a/src/compas_xr/__init__.py b/src/compas_xr/__init__.py index 73149cf..5043123 100644 --- a/src/compas_xr/__init__.py +++ b/src/compas_xr/__init__.py @@ -25,7 +25,7 @@ __copyright__ = "ETH Zurich, Princeton University" __license__ = "MIT License" __email__ = "kenny@arch.ethz.ch" -__version__ = "0.9.4" +__version__ = "0.9.5" HERE = os.path.dirname(__file__) diff --git a/src/compas_xr/ghpython/components/Cx_AppSettings/code.py b/src/compas_xr/ghpython/components/Cx_AppSettings/code.py index e1ba329..ff17fd7 100644 --- a/src/compas_xr/ghpython/components/Cx_AppSettings/code.py +++ b/src/compas_xr/ghpython/components/Cx_AppSettings/code.py @@ -1,7 +1,7 @@ """ Application Settings. -COMPAS XR v0.9.4 +COMPAS XR v0.9.5 """ from ghpythonlib.componentbase import executingcomponent as component diff --git a/src/compas_xr/ghpython/components/Cx_Firebase_Config/code.py b/src/compas_xr/ghpython/components/Cx_Firebase_Config/code.py index 68c5b03..a006480 100644 --- a/src/compas_xr/ghpython/components/Cx_Firebase_Config/code.py +++ b/src/compas_xr/ghpython/components/Cx_Firebase_Config/code.py @@ -1,7 +1,7 @@ """ Settings for Firebase. -COMPAS XR v0.9.4 +COMPAS XR v0.9.5 """ import json diff --git a/src/compas_xr/ghpython/components/Cx_GetTrajectoryRequest/code.py b/src/compas_xr/ghpython/components/Cx_GetTrajectoryRequest/code.py index 29a6fc2..414bdb2 100644 --- a/src/compas_xr/ghpython/components/Cx_GetTrajectoryRequest/code.py +++ b/src/compas_xr/ghpython/components/Cx_GetTrajectoryRequest/code.py @@ -1,7 +1,7 @@ """ Get Trajectory Request Component. -COMPAS XR v0.9.4 +COMPAS XR v0.9.5 """ from compas_eve import Subscriber diff --git a/src/compas_xr/ghpython/components/Cx_MqttTrajectoryResult/code.py b/src/compas_xr/ghpython/components/Cx_MqttTrajectoryResult/code.py index e562762..39a6923 100644 --- a/src/compas_xr/ghpython/components/Cx_MqttTrajectoryResult/code.py +++ b/src/compas_xr/ghpython/components/Cx_MqttTrajectoryResult/code.py @@ -3,7 +3,7 @@ The Sync Result component is used to consolidate all user-defined inputs for the resulting trajectory and coordinate them into a single, unified trajectory. -COMPAS XR v0.9.4 +COMPAS XR v0.9.5 """ from ghpythonlib.componentbase import executingcomponent as component diff --git a/src/compas_xr/ghpython/components/Cx_PlanningServiceResponse/code.py b/src/compas_xr/ghpython/components/Cx_PlanningServiceResponse/code.py index 1761901..b05f517 100644 --- a/src/compas_xr/ghpython/components/Cx_PlanningServiceResponse/code.py +++ b/src/compas_xr/ghpython/components/Cx_PlanningServiceResponse/code.py @@ -1,7 +1,7 @@ """ Planning service response. -COMPAS XR v0.9.4 +COMPAS XR v0.9.5 """ from compas_eve import Publisher diff --git a/src/compas_xr/ghpython/components/Cx_SendTrajectory/code.py b/src/compas_xr/ghpython/components/Cx_SendTrajectory/code.py index ebafbef..6b4faef 100644 --- a/src/compas_xr/ghpython/components/Cx_SendTrajectory/code.py +++ b/src/compas_xr/ghpython/components/Cx_SendTrajectory/code.py @@ -3,7 +3,7 @@ Gets trajectories to be executed by a robot. -COMPAS XR v0.9.4 +COMPAS XR v0.9.5 """ from compas_eve import Subscriber diff --git a/src/compas_xr/ghpython/components/Cx_XrOptions/code.py b/src/compas_xr/ghpython/components/Cx_XrOptions/code.py index 1e07161..9f3d81e 100644 --- a/src/compas_xr/ghpython/components/Cx_XrOptions/code.py +++ b/src/compas_xr/ghpython/components/Cx_XrOptions/code.py @@ -1,7 +1,7 @@ """ Component to define COMPAS XR options. -COMPAS XR v0.9.4 +COMPAS XR v0.9.5 """ from ghpythonlib.componentbase import executingcomponent as component