Skip to content

Commit

Permalink
Version 1.4.0
Browse files Browse the repository at this point in the history
- Support OCT and BIN radix for read and print
  • Loading branch information
tgtakaoka committed Jan 5, 2025
1 parent af4a79c commit 58fb1b0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void loop() {
}
```
The version 1.3 API has the following functions.
The version 1.4 API has the following functions.
``` C++
/** void (*LetterCallback)(char letter, uintptr_t context); */
Expand Down
2 changes: 1 addition & 1 deletion README_.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void loop() {
}
----

The version 1.3 API has the following functions.
The version 1.4 API has the following functions.

[source,C++]
----
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libcli",
"version": "1.3.0",
"version": "1.4.0",
"description": "Command Line Interface Library",
"keywords": "command line",
"repository":
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=libcli
version=1.3.0
version=1.4.0
author=Tadashi G. Takaoka
maintainer=Tadashi G. Takaoka <[email protected]>
sentence=Command Line Interface library
Expand Down
4 changes: 2 additions & 2 deletions src/libcli.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
#include <Arduino.h>

#define LIBCLI_VERSION_MAJOR 1
#define LIBCLI_VERSION_MINOR 3
#define LIBCLI_VERSION_MINOR 4
#define LIBCLI_VERSION_PATCH 0
#define LIBCLI_VERSION_STRING "1.3.0"
#define LIBCLI_VERSION_STRING "1.4.0"

#include "libcli_types.h"

Expand Down

0 comments on commit 58fb1b0

Please sign in to comment.