Skip to content

Commit f88ddcb

Browse files
authored
Merge pull request #146 from RobotWebTools/release-2.0.0
Release 2.0.0
2 parents 153c947 + 87599ff commit f88ddcb

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
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.8.1
2+
current_version = 2.0.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+
2.0.0
24+
----------
25+
26+
**Added**
27+
1528
* Added ROS 2 action client support.
1629
* Added ``wait_goal`` method to ``ActionClient`` to block until a goal reaches a terminal state.
1730
* Moved ``actionlib`` module to ``roslibpy.ros1`` namespace.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
year = "2019"
2626
author = "Gramazio Kohler Research"
2727
copyright = "{0}, {1}".format(year, author)
28-
version = release = "1.8.1"
28+
version = release = "2.0.0"
2929

3030
pygments_style = "trac" # Perhaps change to sphinx
3131
templates_path = ["."]

src/roslibpy/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__title__ = "roslibpy"
55
__description__ = "Python ROS Bridge library."
66
__url__ = "https://github.com/gramaziokohler/roslibpy"
7-
__version__ = "1.8.1"
7+
__version__ = "2.0.0"
88
__author__ = "Gramazio Kohler Research"
99
__author_email__ = "[email protected]"
1010
__license__ = "MIT license"

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def release(ctx, release_type):
165165
raise Exit('The release type parameter is invalid.\nMust be one of: major, minor, patch')
166166

167167
# Run checks
168-
ctx.run('invoke check test')
168+
ctx.run('invoke check')
169169

170170
# Bump version and git tag it
171171
ctx.run('bump2version %s --verbose' % release_type)

0 commit comments

Comments
 (0)