Skip to content

Commit 9f1ec9f

Browse files
authored
Merge branch 'main' into blacken
2 parents a29d098 + 549e806 commit 9f1ec9f

File tree

23 files changed

+36
-22
lines changed

23 files changed

+36
-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.26.0
2+
current_version = 0.27.0
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@ Unreleased
1212

1313
**Added**
1414

15+
**Changed**
16+
17+
**Fixed**
18+
19+
**Deprecated**
20+
21+
**Removed**
22+
23+
0.27.0
24+
----------
25+
26+
**Added**
27+
1528
* Added support for attached and non-attached collision mesh visualization to the ``Robot Visualize`` GH component.
1629
* Added a prefix to all GH components.
1730
* Added ``append`` to the operations of the ``Collision Mesh`` GH component.

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.26.0'
24+
version = release = '0.27.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.27.0
23
0.26.0
34
0.25.0
45
0.24.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.26.0
91+
conda install compas_fab=0.27.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.26.0
107+
pip install compas_fab==0.27.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.26.0"
4+
__version__ = "0.27.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.26.0
4+
COMPAS FAB v0.27.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.26.0
4+
COMPAS FAB v0.27.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.26.0
4+
COMPAS FAB v0.27.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.26.0
4+
COMPAS FAB v0.27.0
55
"""
66
from ghpythonlib.componentbase import executingcomponent as component
77

0 commit comments

Comments
 (0)