Skip to content

Commit

Permalink
bump bugfix version
Browse files Browse the repository at this point in the history
  • Loading branch information
soundanalogous committed Jun 2, 2018
1 parent b6b8c01 commit 0a77f76
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.10.0",
"version": "2.10.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.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.
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.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.
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.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.
Expand Down Expand Up @@ -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.
Expand All @@ -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

Expand Down

0 comments on commit 0a77f76

Please sign in to comment.