diff options
author | jwerle <joseph.werle@gmail.com> | 2022-04-14 13:57:50 -0400 |
---|---|---|
committer | jwerle <joseph.werle@gmail.com> | 2022-04-14 13:57:50 -0400 |
commit | bb05729b25ab2f4464eecaf346df878332576fa3 (patch) | |
tree | 6d13a26e02757b0f97ae66f413611dfbb24227a7 | |
parent | d13c50be47082e9f8f59387fb4ab0329d36b2dee (diff) |
chore(): 0.1.0
-rw-r--r-- | clib.json | 2 | ||||
-rw-r--r-- | murmurhash.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ { "name": "murmurhash", - "version": "0.0.3", + "version": "0.1.0", "repo": "jwerle/murmurhash.c", "description": "MurmurHash3 general hash bashed lookup function implementation", "makefile": "Makefile", diff --git a/murmurhash.h b/murmurhash.h index 4a692d4..b6b6e43 100644 --- a/murmurhash.h +++ b/murmurhash.h @@ -9,7 +9,7 @@ #include <stdint.h> -#define MURMURHASH_VERSION "0.0.3" +#define MURMURHASH_VERSION "0.1.0" #ifdef __cplusplus extern "C" { |