Skip to content

Commit f382074

Browse files
committed
Bump to 1.0.0
1 parent 89fd94d commit f382074

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

docs/source/changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
1.0.0 (2018-01-06)
5+
++++++++++++++++++
6+
7+
**Bugs**
8+
9+
* `#50` Fix handling of empty ADU's.
10+
11+
.. _#50: https://github.com/AdvancedClimateSystems/uModbus/issues/50
12+
413
0.8.2 (2016-11-11)
514
++++++++++++++++++
615

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '0.8'
62+
version = '1.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '0.8.2'
64+
release = '1.0.0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
long_description = open(os.path.join(cwd, 'README.rst'), 'r').read()
1313

1414
setup(name='uModbus',
15-
version='0.8.2',
15+
version='1.0.0',
1616
author='Auke Willem Oosterhoff',
1717
author_email='[email protected]',
1818
description='Implementation of the Modbus protocol in pure Python.',
@@ -30,11 +30,14 @@
3030
'pyserial~=3.4',
3131
],
3232
classifiers=[
33-
'Development Status :: 5 - Production/Stable',
33+
'Development Status :: 6 - Mature',
3434
'Intended Audience :: Developers',
3535
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
3636
'Operating System :: OS Independent',
37-
'Programming Language :: Python :: 2',
38-
'Programming Language :: Python :: 3',
37+
'Programming Language :: Python :: 2.7',
38+
'Programming Language :: Python :: 3.3',
39+
'Programming Language :: Python :: 3.4',
40+
'Programming Language :: Python :: 3.5',
41+
'Programming Language :: Python :: 3.6',
3942
'Topic :: Software Development :: Embedded Systems',
4043
])

0 commit comments

Comments
 (0)