updated version number

in order to distinguish users of the release from potential users of the development version
This commit is contained in:
Yann Collet 2020-03-12 14:45:51 -07:00
parent f6872bf514
commit 77294d27ae
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
v0.7.4
- api: fix: state is correctly aligned in AVX2 mode (does not trust `malloc()`), by @easyaspi314
v0.7.3
- perf: improved speed for large inputs (~+20%)
- perf: improved latency for small inputs (~10%)

View File

@ -221,7 +221,7 @@ extern "C" {
***************************************/
#define XXH_VERSION_MAJOR 0
#define XXH_VERSION_MINOR 7
#define XXH_VERSION_RELEASE 3
#define XXH_VERSION_RELEASE 4
#define XXH_VERSION_NUMBER (XXH_VERSION_MAJOR *100*100 + XXH_VERSION_MINOR *100 + XXH_VERSION_RELEASE)
XXH_PUBLIC_API unsigned XXH_versionNumber (void);