Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nqtronix committed Jan 20, 2019
1 parent 9e12d32 commit be83201
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fifofast.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit be83201

Please sign in to comment.