Skip to content

Commit

Permalink
Increase version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abderraouf-adjal committed Mar 10, 2016
1 parent a886c33 commit ec59c14
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions SpritzCipher.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
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=SpritzCipher
version=0.9.5
version=1.0.0
author=Abderraouf Adjal <[email protected]>
maintainer=Abderraouf Adjal <[email protected]>
sentence=Spritz library for Arduino, CSPRNG, cryptographic hash and MAC functions, symmetric-key data encryption, and some general-purpose functions.
Expand Down

0 comments on commit ec59c14

Please sign in to comment.