Skip to content

Commit

Permalink
Bump to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
OrangeTux committed Jan 5, 2018
1 parent 89fd94d commit f382074
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
9 changes: 9 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

1.0.0 (2018-01-06)
++++++++++++++++++

**Bugs**

* `#50` Fix handling of empty ADU's.

.. _#50: https://github.com/AdvancedClimateSystems/uModbus/issues/50

0.8.2 (2016-11-11)
++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = '0.8'
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '0.8.2'
release = '1.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
long_description = open(os.path.join(cwd, 'README.rst'), 'r').read()

setup(name='uModbus',
version='0.8.2',
version='1.0.0',
author='Auke Willem Oosterhoff',
author_email='a.oosterhoff@climotion.com',
description='Implementation of the Modbus protocol in pure Python.',
Expand All @@ -30,11 +30,14 @@
'pyserial~=3.4',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Embedded Systems',
])

0 comments on commit f382074

Please sign in to comment.