Skip to content

Commit c823d7b

Browse files
author
Spacehuhn
committed
Updated version number to 1.1.0
1 parent 2f5109c commit c823d7b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SimpleCLI",
3-
"version": "1.0.9",
3+
"version": "1.1.0",
44
"keywords": "cli, parser, command, line, interface",
55
"description": "Add a command line interface to your project the easy way",
66
"repository": {

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SimpleCLI
2-
version=1.0.9
2+
version=1.1.0
33
author=Spacehuhn
44
maintainer=Stefan Kremser <[email protected]>
55
sentence=A Command Line Interface Library for Arduino

src/SimpleCLI.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
#include "CommandError.h" // CommandError, Command, Argument
1111

12-
#define SIMPLECLI_VERSION "1.0.9"
12+
#define SIMPLECLI_VERSION "1.1.0"
1313
#define SIMPLECLI_VERSION_MAJOR 1
14-
#define SIMPLECLI_VERSION_MINOR 0
15-
#define SIMPLECLI_VERSION_REVISION 9
14+
#define SIMPLECLI_VERSION_MINOR 1
15+
#define SIMPLECLI_VERSION_REVISION 0
1616

1717
class SimpleCLI {
1818
private:

0 commit comments

Comments
 (0)