Skip to content

Commit

Permalink
increase version number to v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Aug 27, 2020
1 parent 924f779 commit 5993833
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.5
VERSION 1.0.6
)

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 0x01000500)
set (NUMERIC_VERSION 0x01000600)
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.5], [[email protected]])
AC_INIT([libde265], [1.0.6], [[email protected]])
AC_CONFIG_SRCDIR([libde265/de265.cc])
AC_CONFIG_HEADERS([config.h])

NUMERIC_VERSION=0x01000500 # Numeric representation of the version (A.B.C[.D] = 0xAABBCCDD)
NUMERIC_VERSION=0x01000600 # 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=0
LIBDE265_REVISION=12
LIBDE265_REVISION=13
LIBDE265_AGE=0

# ---------------------------------------------------------------------------
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 0x01000500
#define LIBDE265_NUMERIC_VERSION 0x01000600

#define LIBDE265_VERSION "1.0.5"
#define LIBDE265_VERSION "1.0.6"

#endif

0 comments on commit 5993833

Please sign in to comment.