Skip to content

Commit 92fab36

Browse files
committed
Bump version to 0.28.0
1 parent 7128168 commit 92fab36

File tree

24 files changed

+25
-24
lines changed

24 files changed

+25
-24
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.27.0
2+
current_version = 0.28.0
33
message = Bump version to {new_version}
44
commit = True
55
tag = True

CHANGELOG.md

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

8-
## Unreleased
8+
## [0.28.0] 2023-05-10
99

1010
### Added
1111

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def patched_m2r2_setup(app):
4343
year = "2018"
4444
author = "Gramazio Kohler Research"
4545
copyright = "{0}, {1}".format(year, author)
46-
version = release = "0.27.0"
46+
version = release = "0.28.0"
4747

4848
master_doc = "index"
4949
source_suffix = {

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.28.0
23
0.27.0
34
0.26.0
45
0.25.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.27.0
91+
conda install compas_fab=0.28.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.27.0
107+
pip install compas_fab==0.28.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.27.0"
4+
__version__ = "0.28.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.27.0
4+
COMPAS FAB v0.28.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.27.0
4+
COMPAS FAB v0.28.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.27.0
4+
COMPAS FAB v0.28.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.27.0
4+
COMPAS FAB v0.28.0
55
"""
66
from ghpythonlib.componentbase import executingcomponent as component
77

0 commit comments

Comments
 (0)