Bump version to 2.1.10-stable everywhere

This commit is contained in:
Azat Khuzhin 2019-05-25 22:33:45 +03:00
parent 1972c52d3a
commit f5bfd721d1
No known key found for this signature in database
GPG Key ID: B86086848EF8686D
6 changed files with 9 additions and 8 deletions

View File

@ -84,7 +84,7 @@ set(EVENT_ABI_LIBVERSION
set(EVENT_PACKAGE_VERSION set(EVENT_PACKAGE_VERSION
"${EVENT_VERSION_MAJOR}.${EVENT_VERSION_MINOR}.${EVENT_VERSION_PATCH}") "${EVENT_VERSION_MAJOR}.${EVENT_VERSION_MINOR}.${EVENT_VERSION_PATCH}")
set(EVENT_NUMERIC_VERSION 0x02010900) set(EVENT_NUMERIC_VERSION 0x02010a00)
# only a subset of names can be used, defaults to "beta" # only a subset of names can be used, defaults to "beta"
set(EVENT_STAGE_NAME ${EVENT_VERSION_STAGE}) set(EVENT_STAGE_NAME ${EVENT_VERSION_STAGE})

View File

@ -38,7 +38,7 @@ RELEASE = -release 2.1
# #
# Once an RC is out, DO NOT MAKE ANY ABI-BREAKING CHANGES IN THAT SERIES # Once an RC is out, DO NOT MAKE ANY ABI-BREAKING CHANGES IN THAT SERIES
# UNLESS YOU REALLY REALLY HAVE TO. # UNLESS YOU REALLY REALLY HAVE TO.
VERSION_INFO = 6:3:0 VERSION_INFO = 6:4:0
# History: RELEASE VERSION_INFO # History: RELEASE VERSION_INFO
# 2.0.1-alpha -- 2.0 1:0:0 # 2.0.1-alpha -- 2.0 1:0:0
@ -73,6 +73,7 @@ VERSION_INFO = 6:3:0
# 2.1.7-beta -- 2.1 6:1: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 (No ABI change) # 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.9-beta-- 2.1 6:3:0 (No ABI change)
# 2.1.10-stable-- 2.1 6:4:0 (No ABI change)
# ABI version history for this package effectively restarts every time # ABI version history for this package effectively restarts every time
# we change RELEASE. Version 1.4.x had RELEASE of 1.4. # we change RELEASE. Version 1.4.x had RELEASE of 1.4.

View File

@ -271,7 +271,7 @@
/* #undef EVENT__HAVE_WORKING_KQUEUE */ /* #undef EVENT__HAVE_WORKING_KQUEUE */
/* Numeric representation of the version */ /* Numeric representation of the version */
#define EVENT__NUMERIC_VERSION 0x02010900 #define EVENT__NUMERIC_VERSION 0x02010a00
/* Name of package */ /* Name of package */
#define EVENT__PACKAGE "libevent" #define EVENT__PACKAGE "libevent"
@ -332,7 +332,7 @@
#define EVENT__TIME_WITH_SYS_TIME 1 #define EVENT__TIME_WITH_SYS_TIME 1
/* Version number of package */ /* Version number of package */
#define EVENT__VERSION "2.1.9-beta" #define EVENT__VERSION "2.1.10-stable"
/* Define to `__inline__' or `__inline' if that's what the C compiler /* 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. */ calls it, or to nothing if 'inline' is not supported under any name. */

View File

@ -1,4 +1,4 @@
version: 2.1.9.{build} version: 2.1.10.{build}
os: Visual Studio 2017 os: Visual Studio 2017
platform: platform:

View File

@ -23,7 +23,7 @@ macro(event_fuzzy_version_from_git)
# set our defaults. # set our defaults.
set(EVENT_GIT___VERSION_MAJOR 2) set(EVENT_GIT___VERSION_MAJOR 2)
set(EVENT_GIT___VERSION_MINOR 1) set(EVENT_GIT___VERSION_MINOR 1)
set(EVENT_GIT___VERSION_PATCH 9) set(EVENT_GIT___VERSION_PATCH 10)
set(EVENT_GIT___VERSION_STAGE "beta") set(EVENT_GIT___VERSION_STAGE "beta")
find_package(Git) find_package(Git)

View File

@ -5,7 +5,7 @@ dnl See LICENSE for copying information.
dnl dnl
dnl Original version Dug Song <dugsong@monkey.org> dnl Original version Dug Song <dugsong@monkey.org>
AC_INIT(libevent,2.1.9-beta) AC_INIT(libevent,2.1.10-stable)
AC_PREREQ(2.59) AC_PREREQ(2.59)
AC_CONFIG_SRCDIR(event.c) AC_CONFIG_SRCDIR(event.c)
@ -14,7 +14,7 @@ AM_INIT_AUTOMAKE
dnl AM_SILENT_RULES req. automake 1.11. [no] defaults V=1 dnl AM_SILENT_RULES req. automake 1.11. [no] defaults V=1
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_HEADERS(config.h evconfig-private.h:evconfig-private.h.in) AC_CONFIG_HEADERS(config.h evconfig-private.h:evconfig-private.h.in)
AC_DEFINE(NUMERIC_VERSION, 0x02010900, [Numeric representation of the version]) AC_DEFINE(NUMERIC_VERSION, 0x02010a00, [Numeric representation of the version])
dnl Initialize prefix. dnl Initialize prefix.
if test "$prefix" = "NONE"; then if test "$prefix" = "NONE"; then