Skip to content

Commit

Permalink
Raise version to 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GOB52 committed Mar 14, 2024
1 parent fafcbca commit 1e655cc
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 25 deletions.
48 changes: 24 additions & 24 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "gob_faces",
"description": "Get M5Stack Faces status (Keyboard / Calculator / Gamepad) without Arduino Wire.",
"keywords": "M5Stack,Faces",
"authors": {
"name": "GOB",
"url": "https://github.com/GOB52",
"maintainer": true
},
"repository": {
"type": "git",
"url": "https://github.com/GOB52/gob_faces.git"
},
"version": "0.0.0",
"build": {
"libArchive": false
},
"headers": "gob_faces.hpp",
"license": "MIT",
"platforms": "espressif32",
"frameworks": "arduino",
"dependencies": {
"M5Unified": "*"
}
}
"name": "gob_faces",
"description": "Get M5Stack Faces status (Keyboard / Calculator / Gamepad) without Arduino Wire.",
"keywords": "M5Stack,Faces",
"authors": {
"name": "GOB",
"url": "https://github.com/GOB52",
"maintainer": true
},
"repository": {
"type": "git",
"url": "https://github.com/GOB52/gob_faces.git"
},
"version": "0.0.1",
"build": {
"libArchive": false
},
"headers": "gob_faces.hpp",
"license": "MIT",
"platforms": "espressif32",
"frameworks": "arduino",
"dependencies": {
"M5Unified": "*"
}
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=gob_faces
version=0.0.0
version=0.0.1
author=GOB
maintainer=GOB
sentence=Get M5Stack Faces status (Keyboard / Calculator / Gamepad) without Arduino Wire.
Expand Down
14 changes: 14 additions & 0 deletions src/gob_faces_version.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#ifndef GOBLIB_FACES_VERSION_HPP
#define GOBLIB_FACES_VERSION_HPP

#define GOBLIB_FACES_VERSION_MAJOR 0
#define GOBLIB_FACES_VERSION_MINOR 0
#define GOBLIB_FACES_VERSION_PATCH 1

#define GOBLIB_FACES_VERSION_STRINGIFY_AGAIN(x) #x
#define GOBLIB_FACES_VERSION_STRINGIFY(x) GOBLIB_FACES_VERSION_STRINGIFY_AGAIN(x)

#define GOBLIB_FACES_VERSION_VALUE ((GOBLIB_FACES_VERSION_MAJOR << 16) | (GOBLIB_FACES_VERSION_MINOR << 8) | (GOBLIB_FACES_VERSION_PATCH))
#define GOBLIB_FACES_VERSION_STRING GOBLIB_FACES_VERSION_STRINGIFY(GOBLIB_FACES_VERSION_MAJOR.GOBLIB_FACES_VERSION_MINOR.GOBLIB_FACES_VERSION_PATCH)

#endif

0 comments on commit 1e655cc

Please sign in to comment.