Skip to content

Commit

Permalink
Bump version to 0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalocasas committed Jun 22, 2022
1 parent 2a9f109 commit 1202471
Show file tree
Hide file tree
Showing 23 changed files with 24 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.25.0
current_version = 0.26.0
message = Bump version to {new_version}
commit = True
tag = True
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.

Unreleased
0.26.0
----------

**Added**
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
year = '2018'
author = 'Gramazio Kohler Research'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.25.0'
version = release = '0.26.0'

master_doc = "index"
source_suffix = [".rst", ]
Expand Down
1 change: 1 addition & 0 deletions docs/doc_versions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
latest
0.26.0
0.25.0
0.24.0
0.23.0
Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ To switch to a specific version

.. code-block:: bash
conda install compas_fab=0.25.0
conda install compas_fab=0.26.0
Update with pip
Expand All @@ -104,7 +104,7 @@ Or to switch to a specific version

.. code-block:: bash
pip install compas_fab==0.25.0
pip install compas_fab==0.26.0
Working in Rhino
Expand Down
2 changes: 1 addition & 1 deletion src/compas_fab/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = 'compas_fab'
__description__ = 'Robotic fabrication package for the COMPAS Framework'
__url__ = 'https://github.com/compas-dev/compas_fab'
__version__ = '0.25.0'
__version__ = '0.26.0'
__author__ = 'Gramazio Kohler Research'
__author_email__ = '[email protected]'
__license__ = 'MIT license'
Expand Down
2 changes: 1 addition & 1 deletion src/compas_fab/ghpython/components/Cf_AttachTool/code.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Attach a tool to the robot.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from ghpythonlib.componentbase import executingcomponent as component
from compas_rhino.conversions import RhinoMesh
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Add an attached collision mesh to the robot.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from ghpythonlib.componentbase import executingcomponent as component

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Add or remove a collision mesh from the planning scene.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from compas_rhino.geometry import RhinoMesh
from ghpythonlib.componentbase import executingcomponent as component
Expand Down
2 changes: 1 addition & 1 deletion src/compas_fab/ghpython/components/Cf_ConfigMerge/code.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Merge two configurations.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from ghpythonlib.componentbase import executingcomponent as component

Expand Down
2 changes: 1 addition & 1 deletion src/compas_fab/ghpython/components/Cf_ConfigZero/code.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Get a zero configuration for a robot.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from ghpythonlib.componentbase import executingcomponent as component

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Create joint constraints for each of the robot's configurable joints based on a given target configuration.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
import math

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Create a position and an orientation constraint from a plane calculated for the group's end-effector link.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
import math

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Calculate the robot's inverse kinematic for a given plane.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from compas_rhino.conversions import RhinoPlane
from ghpythonlib.componentbase import executingcomponent as component
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Calculate a cartesian motion path (linear in tool space).
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from compas_rhino.conversions import RhinoPlane
from ghpythonlib.componentbase import executingcomponent as component
Expand Down
2 changes: 1 addition & 1 deletion src/compas_fab/ghpython/components/Cf_PlanMotion/code.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Calculate a motion path.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from ghpythonlib.componentbase import executingcomponent as component
from scriptcontext import sticky as st
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Create a planning scene.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from ghpythonlib.componentbase import executingcomponent as component
from scriptcontext import sticky as st
Expand Down
2 changes: 1 addition & 1 deletion src/compas_fab/ghpython/components/Cf_RosConnect/code.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Connect or disconnect to ROS.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from ghpythonlib.componentbase import executingcomponent as component
from scriptcontext import sticky as st
Expand Down
2 changes: 1 addition & 1 deletion src/compas_fab/ghpython/components/Cf_RosRobot/code.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Load robot directly from ROS.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from compas_ghpython.artists import RobotModelArtist
from ghpythonlib.componentbase import executingcomponent as component
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Publishes messages to a ROS topic
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
import time

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Subscribe to a ROS topic.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
import time

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Visualizes the robot.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from compas.geometry import Transformation
from compas_ghpython.artists import FrameArtist
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Visualizes a trajectory.
COMPAS FAB v0.25.0
COMPAS FAB v0.26.0
"""
from compas_ghpython import draw_frame
from compas_ghpython import list_to_ghtree
Expand Down

0 comments on commit 1202471

Please sign in to comment.