aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Gimeno <santiago.gimeno@gmail.com>2025-04-25 11:55:04 +0200
committerSantiago Gimeno <santiago.gimeno@gmail.com>2025-04-25 11:55:04 +0200
commit76fb3b73da3f8ddaeeb87d23fda04b9bda219f5e (patch)
tree77cf8bb69cf0214c9e590740f3f8a50c8a3b2f0d
parent6c1f9b2fb3df647fae0049f96389e08e873380ec (diff)
downloadlibuv-76fb3b73da3f8ddaeeb87d23fda04b9bda219f5e.tar.gz
libuv-76fb3b73da3f8ddaeeb87d23fda04b9bda219f5e.zip
Now working on version 1.51.1
-rw-r--r--configure.ac2
-rw-r--r--include/uv/version.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index a4b03b8f..71baa45d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
AC_PREREQ(2.57)
-AC_INIT([libuv], [1.51.0], [https://github.com/libuv/libuv/issues])
+AC_INIT([libuv], [1.51.1-dev], [https://github.com/libuv/libuv/issues])
AC_CONFIG_MACRO_DIR([m4])
m4_include([m4/libuv-extra-automake-flags.m4])
m4_include([m4/as_case.m4])
diff --git a/include/uv/version.h b/include/uv/version.h
index 77432f25..0308ae55 100644
--- a/include/uv/version.h
+++ b/include/uv/version.h
@@ -32,9 +32,9 @@
#define UV_VERSION_MAJOR 1
#define UV_VERSION_MINOR 51
-#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) | \