Skip to content

Commit

Permalink
IntelHex 2.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Bert van Hall <[email protected]>
  • Loading branch information
The-42 committed Oct 20, 2020
1 parent fddb0b7 commit 26c930e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
IntelHex releases
*****************

2.3.0 (unreleased)
2.3.0 (2020-10-20)
------------------
* Add ``IntelHex.find()`` method to find a given byte pattern. (Scott Armitage)
* API changes: ``IntelHex.segments()`` method supports new optional parameter
Expand Down
2 changes: 1 addition & 1 deletion docs/manual.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Python IntelHex Library User Manual
-----------------------------------

:Version: 2.2
:Version: 2.3.0

.. contents::
.. sectnum::
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, 1)
version_info = (2, 3, 0)
version_str = '.'.join([str(i) for i in version_info])
2 changes: 1 addition & 1 deletion scripts/bin2hex.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

'''Intel HEX file format bin2hex convertor utility.'''

VERSION = '2.2.1'
VERSION = '2.3.0'

if __name__ == '__main__':
import getopt
Expand Down
2 changes: 1 addition & 1 deletion scripts/hex2bin.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

'''Intel HEX file format hex2bin convertor utility.'''

VERSION = '2.2.1'
VERSION = '2.3.0'

if __name__ == '__main__':
import getopt
Expand Down
2 changes: 1 addition & 1 deletion scripts/hex2dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

"""Show content of hex file as hexdump."""

VERSION = '2.2.1'
VERSION = '2.3.0'

USAGE = '''hex2dump: show content of hex file as hexdump.
Usage:
Expand Down
2 changes: 1 addition & 1 deletion scripts/hexdiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
of compared data.
"""

VERSION = '2.2.1'
VERSION = '2.3.0'

USAGE = '''hexdiff: diff dumps of 2 hex files.
Usage:
Expand Down
2 changes: 1 addition & 1 deletion scripts/hexinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
data (if any), in YAML format.
"""

VERSION = '2.2.1'
VERSION = '2.3.0'

USAGE = '''hexinfo: summarize a hex file's contents.
Usage:
Expand Down
2 changes: 1 addition & 1 deletion scripts/hexmerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

"""Merge content of several hex files into one file."""

VERSION = '2.2.1'
VERSION = '2.3.0'

USAGE = '''hexmerge: merge content of hex files.
Usage:
Expand Down

0 comments on commit 26c930e

Please sign in to comment.