Skip to content

Commit 8cbe99b

Browse files
bump bugfix version
1 parent d78cd6c commit 8cbe99b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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.5.7 - 2017-08-19
2+
Firmata.cpp - Firmata library v2.5.8 - 2018-04-15
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2017 Jeff Hoefs. All rights reserved.
55

Firmata.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Firmata.h - Firmata library v2.5.7 - 2017-08-19
2+
Firmata.h - Firmata library v2.5.8 - 2018-04-15
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2017 Jeff Hoefs. All rights reserved.
55

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.7
2+
version=2.5.8
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
@@ -107,7 +107,7 @@ $ git clone [email protected]:firmata/arduino.git ~/Documents/Arduino/libraries/Fir
107107

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

110-
Download the latest [release](https://github.com/firmata/arduino/releases/tag/2.5.7) (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.
110+
Download the latest [release](https://github.com/firmata/arduino/releases/tag/2.5.8) (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.
111111

112112
*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).*
113113

@@ -118,7 +118,7 @@ The Firmata library is contained within the Arduino package.
118118
1. Navigate to the Arduino application
119119
2. Right click on the application icon and select `Show Package Contents`
120120
3. Navigate to: `/Contents/Resources/Java/libraries/` and replace the existing
121-
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.7) (note there is a different download
121+
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.8) (note there is a different download
122122
for Arduino 1.0.x vs 1.6.x)
123123
4. Restart the Arduino application and the latest version of Firmata will be available.
124124

@@ -128,7 +128,7 @@ will differ slightly: `Contents/Java/libraries/Firmata` (no Resources directory)
128128
### Windows:
129129

130130
1. Navigate to `c:/Program\ Files/arduino-1.x/libraries/` and replace the existing
131-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.7) (note there is a different download
131+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.8) (note there is a different download
132132
for Arduino 1.0.x vs 1.6.x).
133133
2. Restart the Arduino application and the latest version of Firmata will be available.
134134

@@ -137,7 +137,7 @@ for Arduino 1.0.x vs 1.6.x).
137137
### Linux:
138138

139139
1. Navigate to `~/arduino-1.x/libraries/` and replace the existing
140-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.7) (note there is a different download
140+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/2.5.8) (note there is a different download
141141
for Arduino 1.0.x vs 1.6.x).
142142
2. Restart the Arduino application and the latest version of Firmata will be available.
143143

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 Arduino-1.0.x-Firmata-2.5.7.zip
18+
mv ./temp/Firmata.zip Arduino-1.0.x-Firmata-2.5.8.zip
1919

2020
#package for Arduino 1.6.x and 1.8.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 Firmata-2.5.7.zip
32+
mv ./temp/Firmata.zip Firmata-2.5.8.zip
3333
rm -r ./temp

0 commit comments

Comments
 (0)