Skip to content

Commit ba94d48

Browse files
author
Alexander Belchenko
committed
prepare 1.1 release
1 parent c05b5b7 commit ba94d48

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

News.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
NEWS
22
====
33

4+
* 2009/03/12 v.1.1
5+
6+
- Fixed bug with writing hex files with small chains of bytes
7+
- Improved Python 2.6 compatibility
8+
49
* 2009/01/01 v.1.0
510

611
- Improved API, better performance

Readme.txt

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

88
Author: Alexander Belchenko
99
Contact: bialix AT ukr net
10-
Date: 2009-01-01
11-
Version: 1.0
10+
Date: 2009-03-12
11+
Version: 1.1
1212

1313
Introduction
1414
------------

intelhex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
'''Intel HEX file format reader and converter.
3535
3636
@author Alexander Belchenko (bialix AT ukr net)
37-
@version 1.0
37+
@version 1.1
3838
'''
3939

4040

intelhex/bench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/python
2-
# (c) Alexander Belchenko, 2007
2+
# (c) Alexander Belchenko, 2007, 2009
33

44
"""Benchmarking.
55

intelhex/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22

3-
# Copyright (c) 2005-2008, Alexander Belchenko
3+
# Copyright (c) 2005-2009, Alexander Belchenko
44
# All rights reserved.
55
#
66
# Redistribution and use in source and binary forms,

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22

3-
# Copyright (c) 2008, Alexander Belchenko
3+
# Copyright (c) 2008-2009, Alexander Belchenko
44
# All rights reserved.
55
#
66
# Redistribution and use in source and binary forms,
@@ -40,7 +40,7 @@
4040

4141
METADATA = dict(
4242
name='intelhex',
43-
version='1.0',
43+
version='1.1',
4444

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

0 commit comments

Comments
 (0)