]> granicus.if.org Git - libevent/commitdiff
Bump version to 2.1.8-stable everywhere
authorAzat Khuzhin <a3at.mail@gmail.com>
Sun, 22 Jan 2017 15:21:57 +0000 (18:21 +0300)
committerAzat Khuzhin <a3at.mail@gmail.com>
Wed, 25 Jan 2017 23:36:00 +0000 (02:36 +0300)
P.S. in referenced commit I made a mistake and instead of *-rc* I wrote
*-beta*.

See-also: f4489b8323cda0bf8eed7c1353911a852d7a947c ("Bump version to
2.1.7-beta everywhere")

CMakeLists.txt
Makefile.am
WIN32-Code/nmake/event2/event-config.h
appveyor.yml
cmake/VersionViaGit.cmake
configure.ac

index 7a839decf140d1fc5b66a13d8e485b8dcdb4ea71..b4a34f3d26ae1e7a7b4bd60352af2233801f4cf3 100644 (file)
@@ -73,7 +73,7 @@ set(EVENT_ABI_LIBVERSION
 set(EVENT_PACKAGE_VERSION
     "${EVENT_VERSION_MAJOR}.${EVENT_VERSION_MINOR}.${EVENT_VERSION_PATCH}")
 
-set(EVENT_NUMERIC_VERSION 0x02010700)
+set(EVENT_NUMERIC_VERSION 0x02010800)
 
 # only a subset of names can be used, defaults to "beta"
 set(EVENT_STAGE_NAME ${EVENT_VERSION_STAGE}
index 2dc226cce0442dd18919386698e903d098255bba..0f741bc9c3a1835e1d6747c93134ed2e22ce4201 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 = 6:1:0
+VERSION_INFO = 6:2:0
 
 # History:          RELEASE    VERSION_INFO
 #  2.0.1-alpha --     2.0        1:0:0
@@ -71,6 +71,7 @@ VERSION_INFO = 6:1:0
 #  2.1.5-beta  --     2.1        5:0:0 (ABI changed slightly)
 #  2.1.6-beta  --     2.1        6:0:0 (ABI changed slightly)
 #  2.1.7-beta  --     2.1        6:1:0 (ABI changed slightly)
+#  2.1.8-stable--     2.1        6:2: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 d96dfba1d7469743e79a1dba1b14304d15f19eb4..e6ed3aa4dcc3abea025e6256a7f2b572efd0b23b 100644 (file)
 /* #undef EVENT__HAVE_WORKING_KQUEUE */
 
 /* Numeric representation of the version */
-#define EVENT__NUMERIC_VERSION 0x02010700
+#define EVENT__NUMERIC_VERSION 0x02010800
 
 /* Name of package */
 #define EVENT__PACKAGE "libevent"
 #define EVENT__TIME_WITH_SYS_TIME 1
 
 /* Version number of package */
-#define EVENT__VERSION "2.1.7-beta"
+#define EVENT__VERSION "2.1.8-stable"
 
 /* Define to appropriate substitue if compiler doesnt have __func__ */
 #define EVENT____func__ __FUNCTION__
index 9e33f952cd056c9e52f617ca1705b3ac72c5612c..6beb5457cbb61f488fc558f27f2c796a01b6cbde 100644 (file)
@@ -1,4 +1,4 @@
-version: 2.1.7.{build}
+version: 2.1.8.{build}
 
 os: Visual Studio 2015
 
index c0f83d5536d05ec5b24db96fff316b977a44cfd9..a9882d8a96391ed71ea2521b59faa48f2c5e4350 100644 (file)
@@ -27,7 +27,7 @@ macro(event_fuzzy_version_from_git)
        # set our defaults.
        set(EVENT_GIT___VERSION_MAJOR 2)
        set(EVENT_GIT___VERSION_MINOR 1)
-       set(EVENT_GIT___VERSION_PATCH 7)
+       set(EVENT_GIT___VERSION_PATCH 8)
        set(EVENT_GIT___VERSION_STAGE "beta")
 
        find_package(Git)
index 22fb703d82c8aebbd1eabb816902fcedfe19da47..7528d37ee03f4056181ba36d9fdacb27fef75985 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.7-beta)
+AC_INIT(libevent,2.1.8-stable)
 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, 0x02010700, [Numeric representation of the version])
+AC_DEFINE(NUMERIC_VERSION, 0x02010800, [Numeric representation of the version])
 
 dnl Initialize prefix.
 if test "$prefix" = "NONE"; then