diff --git a/README.md b/README.md index f0c57ad..8983aa9 100644 --- a/README.md +++ b/README.md @@ -211,14 +211,14 @@ If defined, Then `SPRITZ_WIPE_TRACES` and `SPRITZ_TIMING_SAFE_CRUSH`, will be de **SPRITZ_N** = `256` - Present the value of N in this spritz implementation, *Do NOT change `SPRITZ_N` value*. -**SPRITZ_LIBRARY_VERSION_STRING** = `"1.0.0"` - Present the version of this +**SPRITZ_LIBRARY_VERSION_STRING** = `"1.0.1"` - Present the version of this spritz library (MAJOR . MINOR . PATCH) using Semantic Versioning. **SPRITZ_LIBRARY_VERSION_MAJOR** = `1` - The MAJOR version of the library. **SPRITZ_LIBRARY_VERSION_MINOR** = `0` - The MINOR version of the library. -**SPRITZ_LIBRARY_VERSION_PATCH** = `0` - The PATCH version of the library. +**SPRITZ_LIBRARY_VERSION_PATCH** = `1` - The PATCH version of the library. ## Examples diff --git a/SpritzCipher.h b/SpritzCipher.h index 98b5248..0f8d87e 100644 --- a/SpritzCipher.h +++ b/SpritzCipher.h @@ -73,10 +73,10 @@ extern "C" { #define SPRITZ_N 256 /* `Semantic Versioning` of this library */ -#define SPRITZ_LIBRARY_VERSION_STRING "1.0.0" +#define SPRITZ_LIBRARY_VERSION_STRING "1.0.1" #define SPRITZ_LIBRARY_VERSION_MAJOR 1 #define SPRITZ_LIBRARY_VERSION_MINOR 0 -#define SPRITZ_LIBRARY_VERSION_PATCH 0 +#define SPRITZ_LIBRARY_VERSION_PATCH 1 /** spritz_ctx diff --git a/library.properties b/library.properties index 321f482..4ab976b 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=SpritzCipher -version=1.0.0 +version=1.0.1 author=Abderraouf Adjal maintainer=Abderraouf Adjal sentence=Spritz library for Arduino, CSPRNG, cryptographic hash and MAC functions, symmetric-key data encryption, and some general-purpose functions.