From 9f0271ecd46e988ec4476d37a03d3c051ec28cc4 Mon Sep 17 00:00:00 2001 From: Gonzalo Casas Date: Wed, 25 Mar 2020 18:40:16 +0100 Subject: [PATCH] Bump version to 1.0.0 --- .bumpversion.cfg | 3 +-- CHANGELOG.rst | 2 +- docs/conf.py | 2 +- src/roslibpy/__version__.py | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3ad40c0..a424124 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1 +current_version = 1.0.0 message = Bump version to {new_version} commit = True tag = True @@ -15,4 +15,3 @@ replace = {new_version} [bumpversion:file:src/roslibpy/__version__.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' - diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c258b1e..91077e6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_ and this project adheres to `Semantic Versioning `_. -Unreleased +1.0.0 ---------- **Changed** diff --git a/docs/conf.py b/docs/conf.py index d9bc63a..0dcf704 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ year = '2019' author = 'Gramazio Kohler Research' copyright = '{0}, {1}'.format(year, author) -version = release = '0.7.1' +version = release = '1.0.0' pygments_style = 'trac' # Perhaps change to sphinx templates_path = ['.'] diff --git a/src/roslibpy/__version__.py b/src/roslibpy/__version__.py index 5eee742..6d35975 100644 --- a/src/roslibpy/__version__.py +++ b/src/roslibpy/__version__.py @@ -4,7 +4,7 @@ __title__ = 'roslibpy' __description__ = 'Python ROS Bridge library.' __url__ = 'https://github.com/gramaziokohler/roslibpy' -__version__ = '0.7.1' +__version__ = '1.0.0' __author__ = 'Gramazio Kohler Research' __author_email__ = 'gramaziokohler@arch.ethz.ch' __license__ = 'MIT license'