From d950065f47bb983e07ab5d84366aa2732664df4e Mon Sep 17 00:00:00 2001 From: Jeff Hoefs Date: Thu, 18 Aug 2016 00:01:35 -0700 Subject: [PATCH] bump version This is to get around an Arduino Library Manager issue with v2.9.0 --- library.json | 2 +- library.properties | 2 +- src/ConfigurableFirmata.cpp | 2 +- src/ConfigurableFirmata.h | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/library.json b/library.json index 215bef6..596463f 100644 --- a/library.json +++ b/library.json @@ -6,7 +6,7 @@ "type": "git", "url": "https://github.com/firmata/ConfigurableFirmata.git" }, - "version": "2.9.0", + "version": "2.9.1", "exclude": [ "extras", "test" diff --git a/library.properties b/library.properties index ad0417e..a7edc12 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ConfigurableFirmata -version=2.9.0 +version=2.9.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 05969b4..d729318 100644 --- a/src/ConfigurableFirmata.cpp +++ b/src/ConfigurableFirmata.cpp @@ -1,5 +1,5 @@ /* - ConfigurableFirmata.pp - ConfigurableFirmata library v2.9.0 - 2016-8-14 + ConfigurableFirmata.pp - ConfigurableFirmata library v2.9.1 - 2016-8-14 Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved. Copyright (c) 2013 Norbert Truchsess. All rights reserved. Copyright (c) 2013-2016 Jeff Hoefs. All rights reserved. diff --git a/src/ConfigurableFirmata.h b/src/ConfigurableFirmata.h index 22b392e..9e28a7f 100644 --- a/src/ConfigurableFirmata.h +++ b/src/ConfigurableFirmata.h @@ -1,5 +1,5 @@ /* - ConfigurableFirmata.h - ConfigurableFirmata library v2.9.0 - 2016-8-14 + ConfigurableFirmata.h - ConfigurableFirmata library v2.9.1 - 2016-8-14 Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved. Copyright (c) 2013 Norbert Truchsess. All rights reserved. Copyright (c) 2013-2016 Jeff Hoefs. All rights reserved. @@ -27,13 +27,13 @@ /* * Version numbers for the Firmata library. - * ConfigurableFirmata 2.9.0 implements version 2.5.1 of the Firmata protocol. + * ConfigurableFirmata 2.9.1 implements version 2.5.1 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 9 // 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 9 -#define FIRMWARE_BUGFIX_VERSION 0 +#define FIRMWARE_BUGFIX_VERSION 1 #define MAX_DATA_BYTES 64 // max number of data bytes in incoming messages