Skip to content

Commit 03f2e52

Browse files
committed
updated version numbers after fix
1 parent 2a3ea88 commit 03f2e52

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

libraries/I2C_EEPROM/I2C_eeprom.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: I2C_eeprom.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 1.2.02
4+
// VERSION: 1.2.03
55
// PURPOSE: I2C_eeprom library for Arduino with EEPROM 24LC256 et al.
66
//
77
// HISTORY:
@@ -23,6 +23,7 @@
2323
// 1.2.00 - 2014-05-21 Added support for Arduino DUE ( thanks to Tyler F.)
2424
// 1.2.01 - 2014-05-21 Refactoring
2525
// 1.2.02 - 2015-03-06 stricter interface
26+
// 1.2.03 - 2015-05-15 bugfix in _pageBlock & example (thanks ifreislich )
2627
//
2728
// Released to the public domain
2829
//

libraries/I2C_EEPROM/I2C_eeprom.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// FILE: I2C_eeprom.h
55
// AUTHOR: Rob Tillaart
66
// PURPOSE: I2C_eeprom library for Arduino with EEPROM 24LC256 et al.
7-
// VERSION: 1.2.02
7+
// VERSION: 1.2.03
88
// HISTORY: See I2C_eeprom.cpp
99
// URL: http://arduino.cc/playground/Main/LibraryForI2CEEPROM
1010
//
@@ -21,7 +21,7 @@
2121
#include "Wiring.h"
2222
#endif
2323

24-
#define I2C_EEPROM_VERSION "1.2.02"
24+
#define I2C_EEPROM_VERSION "1.2.03"
2525

2626
// The DEFAULT page size. This is overriden if you use the second constructor.
2727
// I2C_EEPROM_PAGESIZE must be multiple of 2 e.g. 16, 32 or 64

libraries/I2C_EEPROM/examples/I2C_eeprom_test/I2C_eeprom_test.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: I2C_eeprom_test.ino
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.1.08
4+
// VERSION: 0.1.09
55
// PURPOSE: show/test I2C_EEPROM library
66
//
77

0 commit comments

Comments
 (0)