Skip to content

Commit 066151d

Browse files
author
Alexander Belchenko
committed
prepare 1.3 release
1 parent c0233f9 commit 066151d

File tree

7 files changed

+20
-19
lines changed

7 files changed

+20
-19
lines changed

AUTHORS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Author: Alexander Belchenko
22

3-
Copyright (C) Alexander Belchenko, 2005-2009
3+
Copyright (C) Alexander Belchenko, 2005-2010
44

55
Contributors:
66

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2005-2008, Alexander Belchenko
1+
Copyright (c) 2005-2010, Alexander Belchenko
22
All rights reserved.
33

44
Redistribution and use in source and binary forms,

News.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
NEWS
22
====
33

4-
* YYYY/MM/DD v.1.3 (NOT RELEASED YET)
4+
* 2010/11/24 v.1.3
55

66
- hex2dump: show 0x7F character as dot for better compatibility
77
with GNU less utility.
88
- tobinarray, tobinfile, tobinstr: added size parameter. (Bug #408748)
9+
- fixed error in hexmerge.py script. (#676023)
910

1011
* 2009/08/04 v.1.2
1112

Readme.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ Python implementation
77

88
Author: Alexander Belchenko
99
Contact: bialix AT ukr net
10-
Date: 2010-09-17
10+
Date: 2010-11-24
1111
Version: 1.3
1212

1313
Introduction
1414
------------
15-
The Intel HEX file format widely used in microprocessors and microcontrollers
16-
area as the de-facto standard for representation of code for programming
15+
The Intel HEX file format widely used in microprocessors and microcontrollers
16+
area as the de-facto standard for representation of code for programming
1717
microelectronic devices.
1818

19-
This work implements a HEX (also known as Intel HEX) file format reader
20-
and convertor to binary form as a python script.
19+
This work implements an **intelhex** Python library to read, write,
20+
create from scratch and manipulate data from HEX (also known as Intel HEX)
21+
file format. These operations are provided by ``IntelHex`` class.
2122

22-
Python package **intelhex** contains implementation of a HEX file reader
23-
and convertor as the IntelHex class. Also included are some scripts to do
24-
basic tasks that utilize this package. The ``bin2hex.py`` script converts
25-
binary data to HEX, and the ``hex2bin.py`` works the other direction.
26-
``hex2dump.py`` converts data from HEX to a hexdump, and ``hexmerge.py``
27-
merges multiple HEX files into one.
23+
The distribution package also includes several convenience Python scripts
24+
to do basic tasks that utilize this library. The ``bin2hex.py`` script
25+
converts binary data to HEX, and the ``hex2bin.py`` works the other direction.
26+
``hex2dump.py`` converts data from HEX to a hexdump which is useful for
27+
inspecting data, and ``hexmerge.py`` merges multiple HEX files into one.
2828

2929
License
3030
-------

docs/manual.txt

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

5-
:Version: 1.2
5+
:Version: 1.3
66

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

docs/manual/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@
4242

4343
# General information about the project.
4444
project = u'IntelHex'
45-
copyright = u'2009, Alexander Belchenko'
45+
copyright = u'2005-2010, Alexander Belchenko'
4646

4747
# The version info for the project you're documenting, acts as replacement for
4848
# |version| and |release|, also used in various other places throughout the
4949
# built documents.
5050
#
5151
# The short X.Y version.
52-
version = '1.2'
52+
version = '1.3'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '1.2'
54+
release = '1.3'
5555

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

setup.py

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

4141
METADATA = dict(
4242
name='intelhex',
43-
version='1.3dev',
43+
version='1.3',
4444

4545
scripts=[
4646
'scripts/bin2hex.py',

0 commit comments

Comments
 (0)