Skip to content

Commit f13a61b

Browse files
bugfix release
1 parent f1b521e commit f13a61b

File tree

8 files changed

+22
-15
lines changed

8 files changed

+22
-15
lines changed

Boards.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Boards.h - Hardware Abstraction Layer for Firmata library
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
4-
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
4+
Copyright (C) 2009-2017 Jeff Hoefs. All rights reserved.
55
66
This library is free software; you can redistribute it and/or
77
modify it under the terms of the GNU Lesser General Public
@@ -10,7 +10,7 @@
1010
1111
See file LICENSE.txt for further informations on licensing terms.
1212
13-
Last updated October 16th, 2016
13+
Last updated March 16th, 2017
1414
*/
1515

1616
#ifndef Firmata_Boards_h

Firmata.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
Firmata.cpp - Firmata library v2.5.5 - 2017-03-06
2+
Firmata.cpp - Firmata library v2.5.6 - 2017-03-18
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
4-
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
4+
Copyright (C) 2009-2017 Jeff Hoefs. All rights reserved.
55
66
This library is free software; you can redistribute it and/or
77
modify it under the terms of the GNU Lesser General Public

Firmata.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
Firmata.h - Firmata library v2.5.5 - 2017-03-06
2+
Firmata.h - Firmata library v2.5.6 - 2017-03-18
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
4-
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
4+
Copyright (C) 2009-2017 Jeff Hoefs. All rights reserved.
55
66
This library is free software; you can redistribute it and/or
77
modify it under the terms of the GNU Lesser General Public

FirmataConstants.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
FirmataConstants.h
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
4-
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
4+
Copyright (C) 2009-2017 Jeff Hoefs. All rights reserved.
55
66
This library is free software; you can redistribute it and/or
77
modify it under the terms of the GNU Lesser General Public
@@ -21,7 +21,7 @@ namespace firmata {
2121
*/
2222
static const int FIRMWARE_MAJOR_VERSION = 2;
2323
static const int FIRMWARE_MINOR_VERSION = 5;
24-
static const int FIRMWARE_BUGFIX_VERSION = 5;
24+
static const int FIRMWARE_BUGFIX_VERSION = 6;
2525

2626
/* Version numbers for the protocol. The protocol is still changing, so these
2727
* version numbers are important.

extras/revisions.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
FIRMATA 2.5.6 - Mar 18, 2017
2+
3+
[core library]
4+
* Fixed string encoder/decoder bug that also affected I2C (Zak Fields)
5+
* Added support for Arduino Primo (chiararuggeri)
6+
* Added unit tests for Firmata string message encoding/decoding
7+
18
FIRMATA 2.5.5 - Mar 6, 2017
29

310
[core library]

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Firmata
2-
version=2.5.5
2+
version=2.5.6
33
author=Firmata Developers
44
maintainer=https://github.com/firmata/arduino
55
sentence=Enables the communication with computer apps using a standard serial protocol. For all Arduino/Genuino boards.

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $ git clone git@github.com:firmata/arduino.git ~/Documents/Arduino/libraries/Fir
9494

9595
##Updating Firmata in the Arduino IDE - older versions (<= 1.6.3 or 1.0.x)
9696

97-
Download the latest [release](https://github.com/firmata/arduino/releases/tag/2.5.5) (for Arduino 1.0.x or Arduino 1.5.6 or higher) and replace the existing Firmata folder in your Arduino application. See the instructions below for your platform.
97+
Download the latest [release](https://github.com/firmata/arduino/releases/tag/2.5.6) (for Arduino 1.0.x or Arduino 1.5.6 or higher) and replace the existing Firmata folder in your Arduino application. See the instructions below for your platform.
9898

9999
*Note that Arduino 1.5.0 - 1.5.5 are not supported. Please use Arduino 1.5.6 or higher (or Arduino 1.0.5 or 1.0.6).*
100100

@@ -105,7 +105,7 @@ The Firmata library is contained within the Arduino package.
105105
1. Navigate to the Arduino application
106106
2. Right click on the application icon and select `Show Package Contents`
107107
3. Navigate to: `/Contents/Resources/Java/libraries/` and replace the existing
108-
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.5) (note there is a different download
108+
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.6) (note there is a different download
109109
for Arduino 1.0.x vs 1.6.x)
110110
4. Restart the Arduino application and the latest version of Firmata will be available.
111111

@@ -115,7 +115,7 @@ will differ slightly: `Contents/Java/libraries/Firmata` (no Resources directory)
115115
###Windows:
116116

117117
1. Navigate to `c:/Program\ Files/arduino-1.x/libraries/` and replace the existing
118-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.5) (note there is a different download
118+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.6) (note there is a different download
119119
for Arduino 1.0.x vs 1.6.x).
120120
2. Restart the Arduino application and the latest version of Firmata will be available.
121121

@@ -124,7 +124,7 @@ for Arduino 1.0.x vs 1.6.x).
124124
###Linux:
125125

126126
1. Navigate to `~/arduino-1.x/libraries/` and replace the existing
127-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.5) (note there is a different download
127+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.6) (note there is a different download
128128
for Arduino 1.0.x vs 1.6.x).
129129
2. Restart the Arduino application and the latest version of Firmata will be available.
130130

release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cd temp
1515
find . -name "*.DS_Store" -type f -delete
1616
zip -r Firmata.zip ./Firmata/
1717
cd ..
18-
mv ./temp/Firmata.zip Firmata-2.5.5.zip
18+
mv ./temp/Firmata.zip Firmata-2.5.6.zip
1919

2020
#package for Arduino 1.6.x
2121
cp library.properties temp/Firmata
@@ -29,5 +29,5 @@ cd ..
2929
find . -name "*.DS_Store" -type f -delete
3030
zip -r Firmata.zip ./Firmata/
3131
cd ..
32-
mv ./temp/Firmata.zip Arduino-1.6.x-Firmata-2.5.5.zip
32+
mv ./temp/Firmata.zip Arduino-1.6.x-Firmata-2.5.6.zip
3333
rm -r ./temp

0 commit comments

Comments
 (0)