diff --git a/library.json b/library.json index ee4ff5b..1f7d50e 100644 --- a/library.json +++ b/library.json @@ -6,7 +6,7 @@ "type": "git", "url": "https://github.com/firmata/ConfigurableFirmata.git" }, - "version": "2.10.0", + "version": "2.10.1", "exclude": [ "extras", "test" diff --git a/library.properties b/library.properties index ed53692..99d5a01 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ConfigurableFirmata -version=2.10.0 +version=2.10.1 author=Firmata Developers maintainer=https://github.com/firmata/ConfigurableFirmata sentence=This library implements the Firmata protocol as a set of plugins that can be used to create applications to remotely interface with an Arduino board. diff --git a/src/ConfigurableFirmata.cpp b/src/ConfigurableFirmata.cpp index b8d3556..b2746bf 100644 --- a/src/ConfigurableFirmata.cpp +++ b/src/ConfigurableFirmata.cpp @@ -1,5 +1,5 @@ /* - ConfigurableFirmata.pp - ConfigurableFirmata library v2.10.0 - 2017-6-16 + ConfigurableFirmata.pp - ConfigurableFirmata library v2.10.1 - 2017-6-2 Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved. Copyright (c) 2013 Norbert Truchsess. All rights reserved. Copyright (c) 2013-2017 Jeff Hoefs. All rights reserved. diff --git a/src/ConfigurableFirmata.h b/src/ConfigurableFirmata.h index c5d093c..c3940b8 100644 --- a/src/ConfigurableFirmata.h +++ b/src/ConfigurableFirmata.h @@ -1,5 +1,5 @@ /* - ConfigurableFirmata.h - ConfigurableFirmata library v2.10.0 - 2017-6-16 + ConfigurableFirmata.h - ConfigurableFirmata library v2.10.1 - 2018-6-2 Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved. Copyright (c) 2013 Norbert Truchsess. All rights reserved. Copyright (c) 2013-2017 Jeff Hoefs. All rights reserved. @@ -27,13 +27,13 @@ /* * Version numbers for the Firmata library. - * ConfigurableFirmata 2.10.0 implements version 2.6.0 of the Firmata protocol. + * ConfigurableFirmata 2.10.1 implements version 2.6.0 of the Firmata protocol. * The firmware version will not always equal the protocol version going forward. * Query using the REPORT_FIRMWARE message. */ #define FIRMATA_FIRMWARE_MAJOR_VERSION 2 // for non-compatible changes #define FIRMATA_FIRMWARE_MINOR_VERSION 10 // for backwards compatible changes -#define FIRMATA_FIRMWARE_BUGFIX_VERSION 0 // for bugfix releases +#define FIRMATA_FIRMWARE_BUGFIX_VERSION 1 // for bugfix releases // DEPRECATED as of ConfigurableFirmata v2.8.1. // Use FIRMATA_PROTOCOL_[MAJOR|MINOR|BUGFIX]_VERSION instead. @@ -44,7 +44,7 @@ //Use FIRMATA_FIRMWARE_[MAJOR|MINOR|BUGFIX]_VERSION instead. #define FIRMWARE_MAJOR_VERSION 2 #define FIRMWARE_MINOR_VERSION 10 -#define FIRMWARE_BUGFIX_VERSION 0 +#define FIRMWARE_BUGFIX_VERSION 1 #define MAX_DATA_BYTES 64 // max number of data bytes in incoming messages