Skip to content

Commit a267c84

Browse files
committed
increase version to v1.0.12
1 parent 93a3051 commit a267c84

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.3.2)
22

33
project (libde265
44
LANGUAGES C CXX
5-
VERSION 1.0.11
5+
VERSION 1.0.12
66
)
77

88
set(CMAKE_CXX_STANDARD 11)
@@ -11,7 +11,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
1111
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
1212

1313
# The version number.
14-
set (NUMERIC_VERSION 0x01001100)
14+
set (NUMERIC_VERSION 0x01001200)
1515
set (PACKAGE_VERSION ${PROJECT_VERSION})
1616

1717
include (${CMAKE_ROOT}/Modules/CheckCCompilerFlag.cmake)

configure.ac

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.68])
5-
AC_INIT([libde265], [1.0.11], [[email protected]])
5+
AC_INIT([libde265], [1.0.12], [[email protected]])
66
AC_CONFIG_SRCDIR([libde265/de265.cc])
77
AC_CONFIG_HEADERS([config.h])
88

9-
NUMERIC_VERSION=0x01001100 # Numeric representation of the version (A.B.C[.D] = 0xAABBCCDD)
9+
NUMERIC_VERSION=0x01001200 # Numeric representation of the version (A.B.C[.D] = 0xAABBCCDD)
1010
AC_SUBST(NUMERIC_VERSION)
1111

1212
# From https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html:
@@ -16,7 +16,7 @@ AC_SUBST(NUMERIC_VERSION)
1616
# If any interfaces have been removed or changed since the last public release, then set age to 0.
1717

1818
LIBDE265_CURRENT=1
19-
LIBDE265_REVISION=4
19+
LIBDE265_REVISION=5
2020
LIBDE265_AGE=1
2121

2222
# ---------------------------------------------------------------------------

extra/libde265/de265-version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#define LIBDE265_VERSION_H
2323

2424
/* Numeric representation of the version */
25-
#define LIBDE265_NUMERIC_VERSION 0x01001100
25+
#define LIBDE265_NUMERIC_VERSION 0x01001200
2626

27-
#define LIBDE265_VERSION "1.0.11"
27+
#define LIBDE265_VERSION "1.0.12"
2828

2929
#endif

0 commit comments

Comments
 (0)