Skip to content

Commit

Permalink
Release 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bialix committed Jan 30, 2018
1 parent 5c3b65c commit 6136e85
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include AUTHORS.rst
include LICENSE.txt
include NEWS.rst
include README.rst
include Readme.rst
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ docs:
make -C docs/manual html

wheel:
$(PYTHON) -m pip wheel .
$(PYTHON) -m pip wheel -w dist .
4 changes: 4 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
IntelHex releases
*****************

2.2.1 (2018-01-30)
------------------
* Fixes for PyPI.

2.2 (2018-01-28)
----------------
* API changes: ``IntelHex.write_hex_file`` method: added support for new
Expand Down
2 changes: 1 addition & 1 deletion Readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ restrictions.

Supported Python versions
-------------------------
Intelhex library v.2.2 supports Python 2 (2.4-2.7) and Python 3 (3.2-3.5 or later)
IntelHex library v.2.2 supports Python 2 (2.4-2.7) and Python 3 (3.2-3.5 or later)
without external libraries or 2to3 tool from the same codebase.

Install
Expand Down
2 changes: 1 addition & 1 deletion intelhex/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# IntelHex library version information
version_info = (2, 2, 0, 1)
version_info = (2, 2, 1)
version_str = '.'.join([str(i) for i in version_info])
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@

import intelhex, intelhex.__version__

LONG_DESCRIPTION = """\
"""

LONG_DESCRIPTION = open('Readme.rst', 'r').read()

METADATA = dict(
name='intelhex',
Expand All @@ -56,8 +53,8 @@
author_email='alexander.belchenko@gmail.com',
url='https://pypi.python.org/pypi/IntelHex',

description='Python Intel Hex library',
long_description='Python Intel Hex library',
description='Python library for Intel HEX files manipulations',
long_description=LONG_DESCRIPTION,
keywords='Intel HEX hex2bin HEX8',
license='BSD',
classifiers = [
Expand Down

0 comments on commit 6136e85

Please sign in to comment.