Skip to content

Commit

Permalink
Bump to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
OrangeTux committed Dec 4, 2019
1 parent bfd074d commit 749d69f
Show file tree
Hide file tree
Showing 3 changed files with 16 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.3 (2019-12-04)
++++++++++++++++++

* `#76`_ Remove use of deprecated `inspect.getargspec()` for Python>=3.5.
* Drop support for Python 3.3
* Add support for Python 3.7 and Python 3.8

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

1.0.2 (2018-05-22)
++++++++++++++++++

Expand Down
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@

# General information about the project.
project = 'uModbus'
copyright = '2018, Auke Willem Oosterhoff <a.oosterhoff@climotion.com>'
author = 'Auke Willem Oosterhoff <a.oosterhoff@climotion.com>'
copyright = '2019, Auke Willem Oosterhoff <auke@orangetux.nl>'
author = 'Auke Willem Oosterhoff <auke@orangetux.nl>'

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

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""
uModbus is a pure Python implementation of the Modbus protocol with support
for Python 2.7, 3.3, 3.4, 3.5 and 3.6.
for Python 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8.
"""
import os
Expand All @@ -12,7 +12,7 @@
long_description = open(os.path.join(cwd, 'README.rst'), 'r').read()

setup(name='uModbus',
version='1.0.2',
version='1.0.3',
author='Auke Willem Oosterhoff',
author_email='a.oosterhoff@climotion.com',
description='Implementation of the Modbus protocol in pure Python.',
Expand All @@ -35,9 +35,10 @@
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'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',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Embedded Systems',
])

0 comments on commit 749d69f

Please sign in to comment.