From 016805ad61445fd690b2104909f521dfe3265e5c Mon Sep 17 00:00:00 2001 From: Auke Willem Oosterhoff Date: Sat, 5 Dec 2015 10:09:08 +0100 Subject: [PATCH] Bump to 0.3.0. :santa: --- docs/source/changelog.rst | 9 +++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index c502ce3..077a350 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,15 @@ Changelog ========= +0.3.0 (2015-12-05) +++++++++++++++++++ + +**Features** + +* `#17`_ `RequestHandler.handle()` can be overridden easily. + +.. _#17: https://github.com/AdvancedClimateSystems/uModbus/issues/17 + 0.2.0 (2015-11-19) ++++++++++++++++++ diff --git a/docs/source/conf.py b/docs/source/conf.py index cbfd717..9931832 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = '0.2.0' +version = '0.3.0' # The full version, including alpha/beta/rc tags. -release = '0.2.0' +release = '0.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 82404a3..d2d20d1 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = open(os.path.join(cwd, 'README.rst'), 'r').read() setup(name='uModbus', - version='0.2.0', + version='0.3.0', author='Auke Willem Oosterhoff', author_email='oosterhoff@baopt.nl', description='Implementation of the Modbus protocol in pure Python.',