]> granicus.if.org Git - libevent/commitdiff
Bump version to 2.1.11-stable (with ABI breakage)
authorAzat Khuzhin <a3at.mail@gmail.com>
Thu, 1 Aug 2019 21:23:11 +0000 (00:23 +0300)
committerAzat Khuzhin <a3at.mail@gmail.com>
Thu, 1 Aug 2019 21:26:20 +0000 (00:26 +0300)
CMakeLists.txt
Makefile.am
WIN32-Code/nmake/event2/event-config.h
appveyor.yml
cmake/VersionViaGit.cmake
configure.ac

index b13954431c5d5aa9637b3258a13de24eeedc4481..70acb696ca3d306df838aa0b8e1b517b001aa5d1 100644 (file)
@@ -84,10 +84,10 @@ set(EVENT_ABI_LIBVERSION
 set(EVENT_PACKAGE_VERSION
     "${EVENT_VERSION_MAJOR}.${EVENT_VERSION_MINOR}.${EVENT_VERSION_PATCH}")
 
-set(EVENT_NUMERIC_VERSION 0x02010a00)
+set(EVENT_NUMERIC_VERSION 0x02010b00)
 # equals to VERSION_INFO in Makefile.am
-set(EVENT_ABI_LIBVERSION_CURRENT   6)
-set(EVENT_ABI_LIBVERSION_REVISION  4)
+set(EVENT_ABI_LIBVERSION_CURRENT   7)
+set(EVENT_ABI_LIBVERSION_REVISION  0)
 set(EVENT_ABI_LIBVERSION_AGE       0)
 
 # equals to RELEASE in Makefile.am
index 53497bf0c067d5033461359c5afa69eca1f0699f..dd905026fd8318ec66616ab47c662c203b8903fb 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:4:0
+VERSION_INFO = 7:0:0
 
 # History:          RELEASE    VERSION_INFO
 #  2.0.1-alpha --     2.0        1:0:0
@@ -73,7 +73,8 @@ VERSION_INFO = 6:4:0
 #  2.1.7-beta  --     2.1        6:1:0 (ABI changed slightly)
 #  2.1.8-stable--     2.1        6:2:0 (No ABI change)
 #  2.1.9-beta--       2.1        6:3:0 (No ABI change)
-#  2.1.10-stable--    2.1        6:4:0 (No ABI change)
+#  2.1.10-stable--    2.1        6:4:0 (No ABI change, WRONG)
+#  2.1.11-stable--    2.1        7:0:0 (ABI changed)
 
 # ABI version history for this package effectively restarts every time
 # we change RELEASE.  Version 1.4.x had RELEASE of 1.4.
index 51597c348edae75569f1e0af05659cd6075f681f..35ec16fd9fb6835e50048d6726e81defb5407362 100644 (file)
 /* #undef EVENT__HAVE_WORKING_KQUEUE */
 
 /* Numeric representation of the version */
-#define EVENT__NUMERIC_VERSION 0x02010a00
+#define EVENT__NUMERIC_VERSION 0x02010b00
 
 /* Name of package */
 #define EVENT__PACKAGE "libevent"
 #define EVENT__TIME_WITH_SYS_TIME 1
 
 /* Version number of package */
-#define EVENT__VERSION "2.1.10-stable"
+#define EVENT__VERSION "2.1.11-stable"
 
 /* Define to `__inline__' or `__inline' if that's what the C compiler
    calls it, or to nothing if 'inline' is not supported under any name.  */
index 9add58053cfd6cb9953bf9365e431e232ded9038..edfe337287c88c34a8a26771fd888906012bdc21 100644 (file)
@@ -1,4 +1,4 @@
-version: 2.1.10.{build}
+version: 2.1.11.{build}
 
 os: Visual Studio 2017
 platform:
index 9ac7e30d98b416f91f8a747ee62e0af86eb46c22..504980ad1f98adb2309ea3248df008fff9645a37 100644 (file)
@@ -23,8 +23,8 @@ 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 10)
-       set(EVENT_GIT___VERSION_STAGE "beta")
+       set(EVENT_GIT___VERSION_PATCH 11)
+       set(EVENT_GIT___VERSION_STAGE "stable")
 
        find_package(Git)
 
index 3dc437fd181df3aca99cb44bf84a6cfbf56ffa03..298d3ab9da118c5549087ab0b4dd81c576f770dc 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.10-stable)
+AC_INIT(libevent,2.1.11-stable)
 AC_PREREQ(2.62)
 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, 0x02010a00, [Numeric representation of the version])
+AC_DEFINE(NUMERIC_VERSION, 0x02010b00, [Numeric representation of the version])
 
 dnl Initialize prefix.
 if test "$prefix" = "NONE"; then