Skip to content

Commit 679e026

Browse files
committed
Bump version to 0.19.1
1 parent 951dbfa commit 679e026

File tree

17 files changed

+19
-18
lines changed

17 files changed

+19
-18
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.19.0
2+
current_version = 0.19.1
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.19.1
1111
----------
1212

1313
**Added**

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
year = '2018'
3030
author = 'Gramazio Kohler Research'
3131
copyright = '{0}, {1}'.format(year, author)
32-
version = release = '0.19.0'
32+
version = release = '0.19.1'
3333

3434
pygments_style = 'sphinx'
3535
show_authors = True

docs/doc_versions.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
latest
22
stable
3+
0.19.1
34
0.19.0
45
0.18.3
56
0.18.2

docs/getting_started.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ and run the following command to check if the installation process was successfu
2828
2929
.. code-block:: none
3030
31-
0.19.0
31+
0.19.1
3232
3333
You are ready to use **COMPAS FAB**!
3434

@@ -89,7 +89,7 @@ To switch to a specific version
8989

9090
.. code-block:: bash
9191
92-
conda install compas_fab=0.19.0
92+
conda install compas_fab=0.19.1
9393
9494
9595
Update with pip
@@ -105,7 +105,7 @@ Or to switch to a specific version
105105

106106
.. code-block:: bash
107107
108-
pip install compas_fab==0.19.0
108+
pip install compas_fab==0.19.1
109109
110110
111111
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.19.0'
4+
__version__ = '0.19.1'
55
__author__ = 'Gramazio Kohler Research'
66
__author_email__ = '[email protected]'
77
__license__ = 'MIT license'

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.19.0
4+
COMPAS FAB v0.19.1
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.19.0
4+
COMPAS FAB v0.19.1
55
"""
66
from compas_rhino.geometry import RhinoMesh
77
from ghpythonlib.componentbase import executingcomponent as component

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Create a position and an orientation constraint from a plane calculated for the group's end-effector link.
33
4-
COMPAS FAB v0.19.0
4+
COMPAS FAB v0.19.1
55
"""
66
import math
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Calculate the robot's inverse kinematic for a given plane.
33
4-
COMPAS FAB v0.19.0
4+
COMPAS FAB v0.19.1
55
"""
66
from ghpythonlib.componentbase import executingcomponent as component
77

0 commit comments

Comments
 (0)