From be83201fc886f0ff1f91f4bb4419036ad6cba27b Mon Sep 17 00:00:00 2001 From: nqtronix Date: Sun, 20 Jan 2019 16:54:24 +0100 Subject: [PATCH] Release 0.8.0 --- README.md | 6 ++++-- fifofast.h | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 78edd8c..d55a9a2 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ array within fifo: └───┴───┴───┴───┴───┴───┴───┴───┘ ``` -However, the string functions expect a continuous data array without the "wrap" in the middle. To solve this, call `_fff_rebase()`. This will re-arrange the array, so that the first element is stored in the first position of the array. +However, the string functions expect a continuous data array without the "wrap" in the middle. To solve this, 0.8.0 adds the macro `_fff_rebase()`. It re-arranges the array, so that the first element is stored in the first position of the array. ``` array within fifo, after _fff_rebase(): @@ -400,7 +400,9 @@ This project uses [**Semantic Versioning 2.0.0**][semver.org]. During initial de The message of each commit contains detailed information about the changes made. The list below is a summary about all significant improvements. - - **0.7.0 (latest)** + - **0.8.0 (latest)** + - implemented `_fff_rebase()` to handle strings better + - **0.7.0** - improved usage of struct member 'level' - 'level' contains now real value, even if fifo is full - demo-code compiles with 25% less flash usage diff --git a/fifofast.h b/fifofast.h index 32ed0e9..f034094 100644 --- a/fifofast.h +++ b/fifofast.h @@ -67,7 +67,7 @@ // version numbering is based on "Semantic Versioning 2.0.0" (semver.org) #define FIFOFAST_VERSION_MAJOR 0 -#define FIFOFAST_VERSION_MINOR 7 +#define FIFOFAST_VERSION_MINOR 8 #define FIFOFAST_VERSION_PATCH 0 #define FIFOFAST_VERSION_SUFFIX #define FIFOFAST_VERSION_META