]> granicus.if.org Git - libevent/commitdiff
Bump version to 2.1.7-beta everywhere
authorAzat Khuzhin <a3at.mail@gmail.com>
Tue, 1 Nov 2016 21:31:31 +0000 (00:31 +0300)
committerAzat Khuzhin <a3at.mail@gmail.com>
Fri, 4 Nov 2016 20:05:20 +0000 (23:05 +0300)
- cmake basic
- cmake detecting from git -- event_fuzzy_version_from_git()
- autotools
- win32
- appveyor

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

index 99be4435ae325e742e4430b0ce30427e914d08a6..7a839decf140d1fc5b66a13d8e485b8dcdb4ea71 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 0x02010600)
+set(EVENT_NUMERIC_VERSION 0x02010700)
 
 # only a subset of names can be used, defaults to "beta"
 set(EVENT_STAGE_NAME ${EVENT_VERSION_STAGE}
index 98c9ea6e3c831cd75a2a6bd45700c44250fcfb72..c7f1d19a1ead3b360e41ec04a3fe5ccc43583b46 100644 (file)
@@ -34,7 +34,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:0:0
+VERSION_INFO = 6:1:0
 
 # History:          RELEASE    VERSION_INFO
 #  2.0.1-alpha --     2.0        1:0:0
@@ -66,6 +66,7 @@ VERSION_INFO = 6:0:0
 #  2.1.4-alpha --     2.1        4:0:0 (ABI changed slightly)
 #  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)
 
 # ABI version history for this package effectively restarts every time
 # we change RELEASE.  Version 1.4.x had RELEASE of 1.4.
index a6dbfdf7aafe4cbcce437c336ff9d945da433602..d96dfba1d7469743e79a1dba1b14304d15f19eb4 100644 (file)
 /* #undef EVENT__HAVE_WORKING_KQUEUE */
 
 /* Numeric representation of the version */
-#define EVENT__NUMERIC_VERSION 0x02010600
+#define EVENT__NUMERIC_VERSION 0x02010700
 
 /* Name of package */
 #define EVENT__PACKAGE "libevent"
 #define EVENT__TIME_WITH_SYS_TIME 1
 
 /* Version number of package */
-#define EVENT__VERSION "2.1.6-beta"
+#define EVENT__VERSION "2.1.7-beta"
 
 /* Define to appropriate substitue if compiler doesnt have __func__ */
 #define EVENT____func__ __FUNCTION__
index f2bcc589616045c3f583b80965b1df818d54ff27..2b56b63330f33246d89862b1a0a959c8ddcefbe5 100644 (file)
@@ -1,4 +1,4 @@
-version: 2.1.6.{build}
+version: 2.1.7.{build}
 
 os: Visual Studio 2015
 
index 442a0a6889abf06fe020675ccaaff953675a790d..c0f83d5536d05ec5b24db96fff316b977a44cfd9 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 6)
+       set(EVENT_GIT___VERSION_PATCH 7)
        set(EVENT_GIT___VERSION_STAGE "beta")
 
        find_package(Git)
index d4c0d68014c1b7aa26c2a407dd687b603ab0959a..78a4edcc7843baf724f771c10846f2849a281338 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.6-beta)
+AC_INIT(libevent,2.1.7-beta)
 AC_PREREQ(2.59)
 AC_CONFIG_SRCDIR(event.c)
 
@@ -25,7 +25,7 @@ AM_INIT_AUTOMAKE(m4_esyscmd([echo foreign 1.9 subdir-objects
 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, 0x02010600, [Numeric representation of the version])
+AC_DEFINE(NUMERIC_VERSION, 0x02010700, [Numeric representation of the version])
 
 dnl Initialize prefix.
 if test "$prefix" = "NONE"; then