diff options
author | cjihrig <cjihrig@gmail.com> | 2018-08-16 22:07:33 -0400 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2018-08-16 22:07:33 -0400 |
commit | 69c43d987b6acab9a90fe10ccce208f2ee38e7f6 (patch) | |
tree | 179a06e422982e2c59a5bec73d3cec26c999a715 | |
parent | 489ce32a7bf14c150b0fee8cd8cbf3f706fbf742 (diff) | |
download | libuv-69c43d987b6acab9a90fe10ccce208f2ee38e7f6.tar.gz libuv-69c43d987b6acab9a90fe10ccce208f2ee38e7f6.zip |
Now working on version 1.23.1
Fixes: https://github.com/libuv/libuv/issues/1942
-rw-r--r-- | include/uv/version.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/uv/version.h b/include/uv/version.h index 30e1d5a6..805cd3ba 100644 --- a/include/uv/version.h +++ b/include/uv/version.h @@ -32,9 +32,9 @@ #define UV_VERSION_MAJOR 1 #define UV_VERSION_MINOR 23 -#define UV_VERSION_PATCH 0 -#define UV_VERSION_IS_RELEASE 1 -#define UV_VERSION_SUFFIX "" +#define UV_VERSION_PATCH 1 +#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_SUFFIX "dev" #define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \ (UV_VERSION_MINOR << 8) | \ |