Skip to content

Commit 168a0c0

Browse files
prepare release and bump bugfix version
1 parent 947784f commit 168a0c0

12 files changed

+32
-16
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.4 - 2016-10-23
2+
Firmata.cpp - Firmata library v2.5.5 - 2017-03-06
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 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.4 - 2016-10-23
2+
Firmata.h - Firmata library v2.5.5 - 2017-03-06
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55

FirmataConstants.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.5.4 - 2016-10-23
2+
FirmataConstants.h
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55
@@ -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 = 4;
24+
static const int FIRMWARE_BUGFIX_VERSION = 5;
2525

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

FirmataDefines.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.4 - 2016-10-23
2+
FirmataDefines.h
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55

FirmataMarshaller.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.4 - 2016-10-23
2+
FirmataMarshaller.cpp
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55

FirmataMarshaller.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.4 - 2016-10-23
2+
FirmataMarshaller.h
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55

FirmataParser.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.4 - 2016-10-23
2+
FirmataParser.cpp
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55

FirmataParser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
FirmataParser.h - Firmata library v2.5.4 - 2016-10-23
2+
FirmataParser.h
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (C) 2009-2016 Jeff Hoefs. All rights reserved.
55

extras/revisions.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
FIRMATA 2.5.5 - Mar 6, 2017
2+
3+
[core library]
4+
* Updated BLEStream for compatibility with CurieBLE v2 (Sandeep Mistry)
5+
* Added support for MKRZero (Sandeep Mistry)
6+
7+
This update also includes a number of changes from an ongoing refactor by
8+
Zak Fields of the Firmata core. These changes don't impact user facing sketches,
9+
they are all internal only. Changes include:
10+
11+
* Split out parser logic into new lib free of Arduino-specific dependencies.
12+
* Add new class to support cross platform marshalling of Firmata procedure calls.
13+
* Split out core constants to separate file.
14+
* Split out core defines to separate file.
15+
* Added firmata namespace to core library classes.
16+
117
FIRMATA 2.5.4 - Oct 23, 2016
218

319
[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.4
2+
version=2.5.5
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.

0 commit comments

Comments
 (0)