Ignore build process

When using arduino-cli make file, there will be some folders that can be safely ignored for git push. Like staging and libaries.
This commit is contained in:
Robert van den Breemen 2023-02-11 13:00:10 +01:00
parent 0f35eb66f4
commit 87e4f7e977
2 changed files with 10 additions and 7 deletions

3
.gitignore vendored
View File

@ -6,3 +6,6 @@ package-lock.json
.DS_Store
**/.DS_Store
Arduino/**
libraries/**
staging/**
arduino-cli.yaml

View File

@ -2,15 +2,15 @@
#define _VERSION_MAJOR 0
#define _VERSION_MINOR 10
#define _VERSION_PATCH 1
#define _VERSION_BUILD 2046
#define _VERSION_GITHASH "56994f1"
#define _VERSION_BUILD 2047
#define _VERSION_GITHASH "0f35eb6"
//#define _VERSION_PRERELEASE beta //uncomment to define prerelease labels: alpha - beta - rc
#define _VERSION_DATE "11-02-2023"
#define _VERSION_TIME "10:14:06"
#define _VERSION_TIME "12:57:24"
#define _SEMVER_CORE "0.10.1"
#define _SEMVER_BUILD "0.10.1+2046"
#define _SEMVER_GITHASH "0.10.1+56994f1"
#define _SEMVER_FULL "0.10.1+56994f1"
#define _SEMVER_BUILD "0.10.1+2047"
#define _SEMVER_GITHASH "0.10.1+0f35eb6"
#define _SEMVER_FULL "0.10.1+0f35eb6"
#define _SEMVER_NOBUILD "0.10.1 (11-02-2023)"
#define _VERSION "0.10.1+56994f1 (11-02-2023)"
#define _VERSION "0.10.1+0f35eb6 (11-02-2023)"
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver