Skip to content

Commit

Permalink
version changed to v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
inikep committed Feb 17, 2016
1 parent 1928617 commit 1ce4c08
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.4.1
- fixed bug with a backward match extension (level 11 and 12)

v1.4
- improved: levels from 13 to 15 (maximum compression ratio)
- added a new parser: LZ5HC_optimal_price_bt
Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# ################################################################

# Version numbers
VERSION?= 1.4
VERSION?= 1.4.1
LIBVER_MAJOR:=`sed -n '/define LZ5_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz5.h`
LIBVER_MINOR:=`sed -n '/define LZ5_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz5.h`
LIBVER_PATCH:=`sed -n '/define LZ5_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz5.h`
Expand Down
4 changes: 2 additions & 2 deletions lib/lz5.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ extern "C" {
/**************************************
* Version
**************************************/
#define LZ5_VERSION "v1.4"
#define LZ5_VERSION "v1.4.1"
#define LZ5_VERSION_MAJOR 1 /* for breaking interface changes */
#define LZ5_VERSION_MINOR 4 /* for new (non-breaking) interface capabilities */
#define LZ5_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */
#define LZ5_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */
#define LZ5_VERSION_NUMBER (LZ5_VERSION_MAJOR *100*100 + LZ5_VERSION_MINOR *100 + LZ5_VERSION_RELEASE)
int LZ5_versionNumber (void);

Expand Down

0 comments on commit 1ce4c08

Please sign in to comment.