Skip to content

Commit 2659b47

Browse files
committed
Update revision log. Upped version to 1.5.6
1 parent 50abaaa commit 2659b47

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

app/src/processing/app/Base.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
* files and images, etc) that comes from that.
6262
*/
6363
public class Base {
64-
public static final int REVISION = 155;
64+
public static final int REVISION = 156;
6565
/** This might be replaced by main() if there's a lib/version.txt file. */
66-
static String VERSION_NAME = "0155";
66+
static String VERSION_NAME = "0156";
6767
/** Set true if this a proper release rather than a numbered revision. */
6868
static public boolean RELEASE = false;
6969

build/shared/revisions.txt

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11

2-
ARDUINO 1.5.6 BETA
2+
ARDUINO 1.5.6 BETA 2014.02.19
33

44
[ide]
55
* Implemented 1.5 library specification Rev.2
66
(https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification)
77
* Replaced RXTX library with JSSC (Alexey Sokolov)
88
http://code.google.com/p/java-simple-serial-connector/
9+
* If two libraries provides the same .h file prioritize the library with tha same folder name
910
* Improved command-line parsing (Matthijs Kooijman)
1011

1112
[libraries]
1213
* TFT: warning messages in PImage class and strings inside examples now stored in flash to save RAM.
1314
* Ethernet: added operator == for EthernetClient class (Norbert Truchsess)
15+
* Robot_Control: removed embedded copies of Wire and SPI to allow their use in sketch.
16+
Old sketches using Robot_Control now must include Wire.h and SPI.h.
17+
* Robot_Control: fixed issues about motor turning algorithm
18+
* Bridge: optimized FileIO.doBuffer() (bobh66)
1419

1520
[core]
1621
* avr: Pile of HardwareSerial improvements (Matthijs Kooijman)
@@ -28,9 +33,11 @@ ARDUINO 1.5.6 BETA
2833
* sam: Fixed regression in analogRead() (fails to read multiple channels) (Mark Tillotson)
2934
* sam: Fixed loops in Reset.cpp (Matthijs Kooijman)
3035
* sam: Optimized delayMicroseconds() (Rob Tillaart) #1121
36+
* sam: added itoa() and related functions
3137
* Optimized Print::print(String&) method, now uses internal string buffer to perform block write
3238
* Improved portability of String class (maniacbug) #695
3339
* Make some operators in IPAddress const (Matthijs Kooijman)
40+
* Fix for compiling assembler files with newer gcc
3441

3542
ARDUINO 1.5.5-r2 BETA 2014.01.10
3643

hardware/arduino/avr/platform.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification
77

88
name=Arduino AVR Boards
9-
version=1.5.5
9+
version=1.5.6
1010

1111
# AVR compile variables
1212
# ---------------------

hardware/arduino/sam/platform.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification
66

77
name=Arduino ARM (32-bits) Boards
8-
version=1.5.5
8+
version=1.5.6
99

1010
# SAM3 compile variables
1111
# ----------------------

0 commit comments

Comments
 (0)