Skip to content

Commit b1a39bc

Browse files
bump version
1 parent 269ec8e commit b1a39bc

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

Firmata.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Firmata.cpp - Firmata library v2.4.1 - 2015-2-7
2+
Firmata.cpp - Firmata library v2.4.2 - 2015-3-16
33
Copyright (C) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
55
This library is free software; you can redistribute it and/or

Firmata.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Firmata.h - Firmata library v2.4.1 - 2015-2-7
2+
Firmata.h - Firmata library v2.4.2 - 2015-3-16
33
Copyright (C) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
2121
* installed firmware. */
2222
#define FIRMATA_MAJOR_VERSION 2 // for non-compatible changes
2323
#define FIRMATA_MINOR_VERSION 4 // for backwards compatible changes
24-
#define FIRMATA_BUGFIX_VERSION 1 // for bugfix releases
24+
#define FIRMATA_BUGFIX_VERSION 2 // for bugfix releases
2525

2626
#define MAX_DATA_BYTES 64 // max number of data bytes in incoming messages
2727

extras/revisions.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
FIRMATA 2.4.2 - Mar 16, 2015
2+
3+
[core library]
4+
* Add support for Teesy 3.1 (Olivier Louvignes)
5+
16
FIRMATA 2.4.1 - Feb 7, 2015
27

38
[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.4.1
2+
version=2.4.2
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 boards.

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Most of the time you will be interacting with arduino with a client library on t
5858
Note: The above libraries may support various versions of the Firmata protocol and therefore may not support all features of the latest Firmata spec nor all arduino and arduino-compatible boards. Refer to the respective projects for details.
5959

6060
##Updating Firmata in the Arduino IDE
61-
The version of firmata in the Arduino IDE contains an outdated version of Firmata. To update Firmata, download the latest [release](https://github.com/firmata/arduino/releases/tag/v2.4.1) (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.
61+
The version of firmata in the Arduino IDE contains an outdated version of Firmata. To update Firmata, download the latest [release](https://github.com/firmata/arduino/releases/tag/v2.4.2) (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.
6262

6363
*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).*
6464

@@ -69,7 +69,7 @@ The Firmata library is contained within the Arduino package.
6969
1. Navigate to the Arduino application
7070
2. Right click on the application icon and select `Show Package Contents`
7171
3. Navigate to: `/Contents/Resources/Java/libraries/` and replace the existing
72-
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.1) (note there is a different download
72+
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.2) (note there is a different download
7373
for Arduino 1.0.x vs 1.5.x)
7474
4. Restart the Arduino application and the latest version of Firmata will be available.
7575

@@ -79,7 +79,7 @@ will differ slightly: `Contents/Java/libraries/Firmata` (no Resources directory)
7979
###Windows:
8080

8181
1. Navigate to `c:/Program\ Files/arduino-1.x/libraries/` and replace the existing
82-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.1) (note there is a different download
82+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.2) (note there is a different download
8383
for Arduino 1.0.x vs 1.5.x).
8484
2. Restart the Arduino application and the latest version of Firmata will be available.
8585

@@ -88,7 +88,7 @@ for Arduino 1.0.x vs 1.5.x).
8888
###Linux:
8989

9090
1. Navigate to `~/arduino-1.x/libraries/` and replace the existing
91-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.1) (note there is a different download
91+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.2) (note there is a different download
9292
for Arduino 1.0.x vs 1.5.x).
9393
2. Restart the Arduino application and the latest version of Firmata will be available.
9494

release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ 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.4.1.zip
18+
mv ./temp/Firmata.zip Firmata-2.4.2.zip
1919

20-
#package for Arduino 1.5.x
20+
#package for Arduino 1.6.x
2121
cp library.properties temp/Firmata
2222
cd temp/Firmata
2323
mv readme.md ./extras/
@@ -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.5.x-Firmata-2.4.1.zip
32+
mv ./temp/Firmata.zip Arduino-1.6.x-Firmata-2.4.2.zip
3333
rm -r ./temp

0 commit comments

Comments
 (0)