File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.3.2)
22
33project (libde265
44 LANGUAGES C CXX
5- VERSION 1.0.14
5+ VERSION 1.0.15
66)
77
88set (CMAKE_CXX_STANDARD 11)
@@ -11,7 +11,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
1111set (CMAKE_POSITION_INDEPENDENT_CODE ON )
1212
1313# The version number.
14- set (NUMERIC_VERSION 0x01001400 )
14+ set (NUMERIC_VERSION 0x01001500 )
1515set (PACKAGE_VERSION ${PROJECT_VERSION} )
1616
1717include (${CMAKE_ROOT} /Modules/CheckCCompilerFlag.cmake )
Original file line number Diff line number Diff line change 22# Process this file with autoconf to produce a configure script.
33
44AC_PREREQ ( [ 2.68] )
5- AC_INIT ( [ libde265] , [ 1.0.14 ] , [ dirk.farin@gmail.com] )
5+ AC_INIT ( [ libde265] , [ 1.0.15 ] , [ dirk.farin@gmail.com] )
66AC_CONFIG_SRCDIR ( [ libde265/de265.cc] )
77AC_CONFIG_HEADERS ( [ config.h] )
88
9- NUMERIC_VERSION=0x01001400 # Numeric representation of the version (A.B.C[.D] = 0xAABBCCDD)
9+ NUMERIC_VERSION=0x01001500 # Numeric representation of the version (A.B.C[.D] = 0xAABBCCDD)
1010AC_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
1818LIBDE265_CURRENT=1
19- LIBDE265_REVISION=7
19+ LIBDE265_REVISION=8
2020LIBDE265_AGE=1
2121
2222# ---------------------------------------------------------------------------
Original file line number Diff line number Diff line change 2222#define LIBDE265_VERSION_H
2323
2424/* Numeric representation of the version */
25- #define LIBDE265_NUMERIC_VERSION 0x01001400
25+ #define LIBDE265_NUMERIC_VERSION 0x01001500
2626
27- #define LIBDE265_VERSION "1.0.14 "
27+ #define LIBDE265_VERSION "1.0.15 "
2828
2929#endif
You can’t perform that action at this time.
0 commit comments