Skip to content

Commit 4400c75

Browse files
committed
Bump version to 0.23.0
1 parent ffc0df7 commit 4400c75

File tree

22 files changed

+23
-22
lines changed

22 files changed

+23
-22
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.22.0
2+
current_version = 0.23.0
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
77
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_
88
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
99

10-
Unreleased
10+
0.23.0
1111
----------
1212

1313
**Added**

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
year = '2018'
2222
author = 'Gramazio Kohler Research'
2323
copyright = '{0}, {1}'.format(year, author)
24-
version = release = '0.22.0'
24+
version = release = '0.23.0'
2525

2626
master_doc = "index"
2727
source_suffix = [".rst", ]

docs/doc_versions.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
latest
2+
0.23.0
23
0.22.0
34
0.21.1
45
0.21.0

docs/getting_started.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ To switch to a specific version
8888

8989
.. code-block:: bash
9090
91-
conda install compas_fab=0.22.0
91+
conda install compas_fab=0.23.0
9292
9393
9494
Update with pip
@@ -104,7 +104,7 @@ Or to switch to a specific version
104104

105105
.. code-block:: bash
106106
107-
pip install compas_fab==0.22.0
107+
pip install compas_fab==0.23.0
108108
109109
110110
Working in Rhino

src/compas_fab/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = 'compas_fab'
22
__description__ = 'Robotic fabrication package for the COMPAS Framework'
33
__url__ = 'https://github.com/compas-dev/compas_fab'
4-
__version__ = '0.22.0'
4+
__version__ = '0.23.0'
55
__author__ = 'Gramazio Kohler Research'
66
__author_email__ = '[email protected]'
77
__license__ = 'MIT license'

src/compas_fab/ghpython/components/Cf_AttachTool/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Attach a tool to the robot.
33
4-
COMPAS FAB v0.22.0
4+
COMPAS FAB v0.23.0
55
"""
66
from ghpythonlib.componentbase import executingcomponent as component
77
from compas_rhino.conversions import RhinoMesh

src/compas_fab/ghpython/components/Cf_AttachedCollisionMesh/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Add an attached collision mesh to the robot.
33
4-
COMPAS FAB v0.22.0
4+
COMPAS FAB v0.23.0
55
"""
66
from ghpythonlib.componentbase import executingcomponent as component
77

src/compas_fab/ghpython/components/Cf_CollisionMesh/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Add or remove a collision mesh from the planning scene.
33
4-
COMPAS FAB v0.22.0
4+
COMPAS FAB v0.23.0
55
"""
66
from compas_rhino.geometry import RhinoMesh
77
from ghpythonlib.componentbase import executingcomponent as component

src/compas_fab/ghpython/components/Cf_ConfigMerge/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Merge two configurations.
33
4-
COMPAS FAB v0.22.0
4+
COMPAS FAB v0.23.0
55
"""
66
from ghpythonlib.componentbase import executingcomponent as component
77

0 commit comments

Comments
 (0)