Skip to content

Commit d950065

Browse files
bump version
This is to get around an Arduino Library Manager issue with v2.9.0
1 parent 3e06be1 commit d950065

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "git",
77
"url": "https://github.com/firmata/ConfigurableFirmata.git"
88
},
9-
"version": "2.9.0",
9+
"version": "2.9.1",
1010
"exclude": [
1111
"extras",
1212
"test"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ConfigurableFirmata
2-
version=2.9.0
2+
version=2.9.1
33
author=Firmata Developers
44
maintainer=https://github.com/firmata/ConfigurableFirmata
55
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.

src/ConfigurableFirmata.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
ConfigurableFirmata.pp - ConfigurableFirmata library v2.9.0 - 2016-8-14
2+
ConfigurableFirmata.pp - ConfigurableFirmata library v2.9.1 - 2016-8-14
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (c) 2013 Norbert Truchsess. All rights reserved.
55
Copyright (c) 2013-2016 Jeff Hoefs. All rights reserved.

src/ConfigurableFirmata.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
ConfigurableFirmata.h - ConfigurableFirmata library v2.9.0 - 2016-8-14
2+
ConfigurableFirmata.h - ConfigurableFirmata library v2.9.1 - 2016-8-14
33
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
Copyright (c) 2013 Norbert Truchsess. All rights reserved.
55
Copyright (c) 2013-2016 Jeff Hoefs. All rights reserved.
@@ -27,13 +27,13 @@
2727

2828
/*
2929
* Version numbers for the Firmata library.
30-
* ConfigurableFirmata 2.9.0 implements version 2.5.1 of the Firmata protocol.
30+
* ConfigurableFirmata 2.9.1 implements version 2.5.1 of the Firmata protocol.
3131
* The firmware version will not always equal the protocol version going forward.
3232
* Query using the REPORT_FIRMWARE message.
3333
*/
3434
#define FIRMATA_FIRMWARE_MAJOR_VERSION 2 // for non-compatible changes
3535
#define FIRMATA_FIRMWARE_MINOR_VERSION 9 // for backwards compatible changes
36-
#define FIRMATA_FIRMWARE_BUGFIX_VERSION 0 // for bugfix releases
36+
#define FIRMATA_FIRMWARE_BUGFIX_VERSION 1 // for bugfix releases
3737

3838
// DEPRECATED as of ConfigurableFirmata v2.8.1.
3939
// Use FIRMATA_PROTOCOL_[MAJOR|MINOR|BUGFIX]_VERSION instead.
@@ -44,7 +44,7 @@
4444
//Use FIRMATA_FIRMWARE_[MAJOR|MINOR|BUGFIX]_VERSION instead.
4545
#define FIRMWARE_MAJOR_VERSION 2
4646
#define FIRMWARE_MINOR_VERSION 9
47-
#define FIRMWARE_BUGFIX_VERSION 0
47+
#define FIRMWARE_BUGFIX_VERSION 1
4848

4949
#define MAX_DATA_BYTES 64 // max number of data bytes in incoming messages
5050

0 commit comments

Comments
 (0)