Skip to content

Commit a911db7

Browse files
committed
Bump version to 1.0.1
1 parent eed4c60 commit a911db7

File tree

23 files changed

+24
-23
lines changed

23 files changed

+24
-23
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 = 1.0.0
2+
current_version = 1.0.1
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+
## [1.0.1] 2024-02-20
99

1010
### Added
1111

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+
1.0.1
23
1.0.0
34
0.28.0
45
0.27.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=1.0.0
91+
conda install compas_fab=1.0.1
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==1.0.0
107+
pip install compas_fab==1.0.1
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__ = "1.0.0"
4+
__version__ = "1.0.1"
55
__author__ = "Gramazio Kohler Research"
66
__author_email__ = "gramaziokohler@arch.ethz.ch"
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 v1.0.0
4+
COMPAS FAB v1.0.1
55
"""
66

77
from compas.geometry import Frame

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 v1.0.0
4+
COMPAS FAB v1.0.1
55
"""
66

77
from compas_rhino.conversions import mesh_to_compas

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 v1.0.0
4+
COMPAS FAB v1.0.1
55
"""
66

77
from compas_rhino.conversions import mesh_to_compas

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 v1.0.0
4+
COMPAS FAB v1.0.1
55
"""
66

77
from ghpythonlib.componentbase import executingcomponent as component

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Get a zero configuration for a robot.
33
4-
COMPAS FAB v1.0.0
4+
COMPAS FAB v1.0.1
55
"""
66

77
from ghpythonlib.componentbase import executingcomponent as component

0 commit comments

Comments
 (0)