Skip to content

Commit 26c930e

Browse files
committed
IntelHex 2.3.0
Signed-off-by: Bert van Hall <[email protected]>
1 parent fddb0b7 commit 26c930e

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

NEWS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
IntelHex releases
33
*****************
44

5-
2.3.0 (unreleased)
5+
2.3.0 (2020-10-20)
66
------------------
77
* Add ``IntelHex.find()`` method to find a given byte pattern. (Scott Armitage)
88
* API changes: ``IntelHex.segments()`` method supports new optional parameter

docs/manual.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Python IntelHex Library User Manual
33
-----------------------------------
44

5-
:Version: 2.2
5+
:Version: 2.3.0
66

77
.. contents::
88
.. sectnum::

intelhex/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# IntelHex library version information
2-
version_info = (2, 2, 1)
2+
version_info = (2, 3, 0)
33
version_str = '.'.join([str(i) for i in version_info])

scripts/bin2hex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

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

38-
VERSION = '2.2.1'
38+
VERSION = '2.3.0'
3939

4040
if __name__ == '__main__':
4141
import getopt

scripts/hex2bin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

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

38-
VERSION = '2.2.1'
38+
VERSION = '2.3.0'
3939

4040
if __name__ == '__main__':
4141
import getopt

scripts/hex2dump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

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

38-
VERSION = '2.2.1'
38+
VERSION = '2.3.0'
3939

4040
USAGE = '''hex2dump: show content of hex file as hexdump.
4141
Usage:

scripts/hexdiff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
of compared data.
3838
"""
3939

40-
VERSION = '2.2.1'
40+
VERSION = '2.3.0'
4141

4242
USAGE = '''hexdiff: diff dumps of 2 hex files.
4343
Usage:

scripts/hexinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
data (if any), in YAML format.
3939
"""
4040

41-
VERSION = '2.2.1'
41+
VERSION = '2.3.0'
4242

4343
USAGE = '''hexinfo: summarize a hex file's contents.
4444
Usage:

scripts/hexmerge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

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

38-
VERSION = '2.2.1'
38+
VERSION = '2.3.0'
3939

4040
USAGE = '''hexmerge: merge content of hex files.
4141
Usage:

0 commit comments

Comments
 (0)