Skip to content

Commit

Permalink
increase version to v1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Jun 13, 2023
1 parent 93a3051 commit a267c84
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.3.2)

project (libde265
LANGUAGES C CXX
VERSION 1.0.11
VERSION 1.0.12
)

set(CMAKE_CXX_STANDARD 11)
Expand All @@ -11,7 +11,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)

# The version number.
set (NUMERIC_VERSION 0x01001100)
set (NUMERIC_VERSION 0x01001200)
set (PACKAGE_VERSION ${PROJECT_VERSION})

include (${CMAKE_ROOT}/Modules/CheckCCompilerFlag.cmake)
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.68])
AC_INIT([libde265], [1.0.11], [dirk.farin@gmail.com])
AC_INIT([libde265], [1.0.12], [dirk.farin@gmail.com])
AC_CONFIG_SRCDIR([libde265/de265.cc])
AC_CONFIG_HEADERS([config.h])

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

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

LIBDE265_CURRENT=1
LIBDE265_REVISION=4
LIBDE265_REVISION=5
LIBDE265_AGE=1

# ---------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions extra/libde265/de265-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
#define LIBDE265_VERSION_H

/* Numeric representation of the version */
#define LIBDE265_NUMERIC_VERSION 0x01001100
#define LIBDE265_NUMERIC_VERSION 0x01001200

#define LIBDE265_VERSION "1.0.11"
#define LIBDE265_VERSION "1.0.12"

#endif

0 comments on commit a267c84

Please sign in to comment.