Skip to content

Commit 749d69f

Browse files
committed
Bump to 1.0.3
1 parent bfd074d commit 749d69f

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-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.3 (2019-12-04)
5+
++++++++++++++++++
6+
7+
* `#76`_ Remove use of deprecated `inspect.getargspec()` for Python>=3.5.
8+
* Drop support for Python 3.3
9+
* Add support for Python 3.7 and Python 3.8
10+
11+
.. _#76: https://github.com/AdvancedClimateSystems/uModbus/issues/76
12+
413
1.0.2 (2018-05-22)
514
++++++++++++++++++
615

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151

5252
# General information about the project.
5353
project = 'uModbus'
54-
copyright = '2018, Auke Willem Oosterhoff <[email protected]>'
55-
author = 'Auke Willem Oosterhoff <[email protected]>'
54+
copyright = '2019, Auke Willem Oosterhoff <[email protected]>'
55+
author = 'Auke Willem Oosterhoff <[email protected]>'
5656

5757
# The version info for the project you're documenting, acts as replacement for
5858
# |version| and |release|, also used in various other places throughout the
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = '1.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '1.0.0'
64+
release = '1.0.3'
6565

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

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
"""
33
uModbus is a pure Python implementation of the Modbus protocol with support
4-
for Python 2.7, 3.3, 3.4, 3.5 and 3.6.
4+
for Python 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8.
55
66
"""
77
import os
@@ -12,7 +12,7 @@
1212
long_description = open(os.path.join(cwd, 'README.rst'), 'r').read()
1313

1414
setup(name='uModbus',
15-
version='1.0.2',
15+
version='1.0.3',
1616
author='Auke Willem Oosterhoff',
1717
author_email='[email protected]',
1818
description='Implementation of the Modbus protocol in pure Python.',
@@ -35,9 +35,10 @@
3535
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
3636
'Operating System :: OS Independent',
3737
'Programming Language :: Python :: 2.7',
38-
'Programming Language :: Python :: 3.3',
3938
'Programming Language :: Python :: 3.4',
4039
'Programming Language :: Python :: 3.5',
4140
'Programming Language :: Python :: 3.6',
41+
'Programming Language :: Python :: 3.7',
42+
'Programming Language :: Python :: 3.8',
4243
'Topic :: Software Development :: Embedded Systems',
4344
])

0 commit comments

Comments
 (0)