File tree Expand file tree Collapse file tree 6 files changed +12
-7
lines changed
Expand file tree Collapse file tree 6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 11NEWS
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
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ Python implementation
77
88Author: Alexander Belchenko
99Contact: bialix AT ukr net
10- Date: 2009-01-01
11- Version: 1.0
10+ Date: 2009-03-12
11+ Version: 1.1
1212
1313Introduction
1414------------
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11#!/usr/bin/python
2- # (c) Alexander Belchenko, 2007
2+ # (c) Alexander Belchenko, 2007, 2009
33
44"""Benchmarking.
55
Original file line number Diff line number Diff line change 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,
Original file line number Diff line number Diff line change 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,
4040
4141METADATA = dict (
4242 name = 'intelhex' ,
43- version = '1.0 ' ,
43+ version = '1.1 ' ,
4444
4545 scripts = [
4646 'scripts/bin2hex.py' ,
You can’t perform that action at this time.
0 commit comments