Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
This is to get around an Arduino Library Manager issue with v2.9.0
  • Loading branch information
soundanalogous committed Aug 18, 2016
1 parent 3e06be1 commit d950065
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/firmata/ConfigurableFirmata.git"
},
"version": "2.9.0",
"version": "2.9.1",
"exclude": [
"extras",
"test"
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigurableFirmata.cpp
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 4 additions & 4 deletions src/ConfigurableFirmata.h
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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.
Expand All @@ -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

Expand Down

0 comments on commit d950065

Please sign in to comment.