From ec59c142bc873297c2c9c6b30dfbdc878f3367e2 Mon Sep 17 00:00:00 2001 From: abderraouf-adjal Date: Thu, 10 Mar 2016 17:37:02 +0100 Subject: [PATCH] Increase version to 1.0.0 --- README.md | 8 ++++---- SpritzCipher.h | 8 ++++---- library.properties | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 098ce76..668aee2 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** = `"0.9.5"` - Present the version of this +**SPRITZ_LIBRARY_VERSION_STRING** = `"1.0.0"` - Present the version of this spritz library (MAJOR . MINOR . PATCH) using Semantic Versioning. -**SPRITZ_LIBRARY_VERSION_MAJOR** = `0` - The MAJOR version of the library. +**SPRITZ_LIBRARY_VERSION_MAJOR** = `1` - The MAJOR version of the library. -**SPRITZ_LIBRARY_VERSION_MINOR** = `9` - The MINOR version of the library. +**SPRITZ_LIBRARY_VERSION_MINOR** = `0` - The MINOR version of the library. -**SPRITZ_LIBRARY_VERSION_PATCH** = `5` - The PATCH version of the library. +**SPRITZ_LIBRARY_VERSION_PATCH** = `0` - The PATCH version of the library. ## Examples diff --git a/SpritzCipher.h b/SpritzCipher.h index 47a200d..c242df8 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 "0.9.5" -#define SPRITZ_LIBRARY_VERSION_MAJOR 0 -#define SPRITZ_LIBRARY_VERSION_MINOR 9 -#define SPRITZ_LIBRARY_VERSION_PATCH 5 +#define SPRITZ_LIBRARY_VERSION_STRING "1.0.0" +#define SPRITZ_LIBRARY_VERSION_MAJOR 1 +#define SPRITZ_LIBRARY_VERSION_MINOR 0 +#define SPRITZ_LIBRARY_VERSION_PATCH 0 /** spritz_ctx diff --git a/library.properties b/library.properties index 511f5b4..321f482 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=SpritzCipher -version=0.9.5 +version=1.0.0 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.