]> granicus.if.org Git - libevent/commitdiff
Increment version to 2.1.5-beta
authorNick Mathewson <nickm@torproject.org>
Mon, 5 Jan 2015 14:16:12 +0000 (09:16 -0500)
committerNick Mathewson <nickm@torproject.org>
Mon, 5 Jan 2015 14:16:12 +0000 (09:16 -0500)
CMakeLists.txt
ChangeLog
Makefile.am
WIN32-Code/nmake/event2/event-config.h
configure.ac

index bda6fa434f0687692d11a3cc3e0823e39df99688..24d9b7118fd451250fbafd2d3fdebb21c8a68c0d 100644 (file)
@@ -27,13 +27,13 @@ project(libevent C)
 
 set(EVENT_VERSION_MAJOR 2)
 set(EVENT_VERSION_MINOR 1)
-set(EVENT_VERSION_PATCH 4)
-set(EVENT_NUMERIC_VERSION 0x02010401)
-set(EVENT_VERSION_DEVTAG "-dev")
+set(EVENT_VERSION_PATCH 5)
+set(EVENT_NUMERIC_VERSION 0x02010500)
+set(EVENT_VERSION_DEVTAG "-beta")
 
 set(EVENT_ABI_MAJOR 2)
 set(EVENT_ABI_MINOR 1)
-set(EVENT_ABI_PATCH 4)
+set(EVENT_ABI_PATCH 5)
 set(EVENT_ABI_LIBVERSION "${EVENT_ABI_MAJOR}.${EVENT_ABI_MINOR}.${EVENT_ABI_PATCH}")
 
 set(EVENT_VERSION "${EVENT_VERSION_MAJOR}.${EVENT_VERSION_MINOR}.${EVENT_VERSION_PATCH}-alpha${EVENT_VERSION_DEVTAG}")
index c223f4f6c583697fe4b63b259546f7bbe31f765b..51bc8f9cf461d818f7b12241447828605f6bf3ef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Changes in version 2.1.5-alpha (5 January 2015)
+Changes in version 2.1.5-beta (5 January 2015)
 
 
  New APIs (evconnlistener)
index e2ce29287880c2c32d45d18679ab8519ea60fcc3..3053cc016a524faeca645c70591eb2c43d5d6c3d 100644 (file)
@@ -38,7 +38,7 @@ RELEASE = -release 2.1
 #
 # Once an RC is out, DO NOT MAKE ANY ABI-BREAKING CHANGES IN THAT SERIES
 # UNLESS YOU REALLY REALLY HAVE TO.
-VERSION_INFO = 4:0:0
+VERSION_INFO = 5:0:0
 
 # History:          RELEASE    VERSION_INFO
 #  2.0.1-alpha --     2.0        1:0:0
@@ -68,6 +68,7 @@ VERSION_INFO = 4:0:0
 #  2.1.2-alpha --     2.1        1:0:0 (should have been 2:0:1)
 #  2.1.3-alpha --     2.1        3:0:0 (ABI changed slightly)
 #  2.1.4-alpha --     2.1        4:0:0 (ABI changed slightly)
+#  2.1.5-beta  --     2.1        5:0:0 (ABI changed slightly)
 
 # ABI version history for this package effectively restarts every time
 # we change RELEASE.  Version 1.4.x had RELEASE of 1.4.
index 5ba2d78e47c540e68a279ba4eab9d4822422196f..8cbf1902891f4d8c18e4fa0078a7b436a3dda093 100644 (file)
 /* #undef EVENT__HAVE_WORKING_KQUEUE */
 
 /* Numeric representation of the version */
-#define EVENT__NUMERIC_VERSION 0x02010401
+#define EVENT__NUMERIC_VERSION 0x02010500
 
 /* Name of package */
 #define EVENT__PACKAGE "libevent"
 #define EVENT__TIME_WITH_SYS_TIME 1
 
 /* Version number of package */
-#define EVENT__VERSION "2.1.4-alpha-dev"
+#define EVENT__VERSION "2.1.5-beta"
 
 /* Define to appropriate substitue if compiler doesnt have __func__ */
 #define EVENT____func__ __FUNCTION__
index 8027d6dd75fc910b1a5b9b8084e9b0d270b7164d..0da4fef9c3434455181a1d2514bc2831bf19c726 100644 (file)
@@ -5,7 +5,7 @@ dnl See LICENSE for copying information.
 dnl
 dnl Original version Dug Song <dugsong@monkey.org>
 
-AC_INIT(libevent,2.1.4-alpha-dev)
+AC_INIT(libevent,2.1.5-beta)
 AC_PREREQ(2.59)
 AC_CONFIG_SRCDIR(event.c)
 
@@ -14,7 +14,7 @@ AM_INIT_AUTOMAKE
 dnl AM_SILENT_RULES req. automake 1.11.  [no] defaults V=1
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 AC_CONFIG_HEADERS(config.h  evconfig-private.h:evconfig-private.h.in)
-AC_DEFINE(NUMERIC_VERSION, 0x02010401, [Numeric representation of the version])
+AC_DEFINE(NUMERIC_VERSION, 0x02010500, [Numeric representation of the version])
 
 dnl Initialize prefix.
 if test "$prefix" = "NONE"; then