From b578ae56eb2eb257e19158282c2af9d552565c1c Mon Sep 17 00:00:00 2001 From: Dirk Farin Date: Tue, 18 Oct 2022 11:39:58 +0200 Subject: [PATCH] increase version to v1.0.9 --- CMakeLists.txt | 2 +- configure.ac | 6 +++--- extra/libde265/de265-version.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ff93c52e..bd786d53 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.3.2) project (libde265 LANGUAGES C CXX - VERSION 1.0.8 + VERSION 1.0.9 ) set(CMAKE_CXX_STANDARD 11) diff --git a/configure.ac b/configure.ac index a566b66c..dd9b446b 100644 --- a/configure.ac +++ b/configure.ac @@ -2,11 +2,11 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.68]) -AC_INIT([libde265], [1.0.8], [farin@struktur.de]) +AC_INIT([libde265], [1.0.9], [dirk.farin@gmail.com]) AC_CONFIG_SRCDIR([libde265/de265.cc]) AC_CONFIG_HEADERS([config.h]) -NUMERIC_VERSION=0x01000800 # Numeric representation of the version (A.B.C[.D] = 0xAABBCCDD) +NUMERIC_VERSION=0x01000900 # 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: @@ -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=1 +LIBDE265_REVISION=2 LIBDE265_AGE=1 # --------------------------------------------------------------------------- diff --git a/extra/libde265/de265-version.h b/extra/libde265/de265-version.h index 1aab30a2..6feeb928 100644 --- a/extra/libde265/de265-version.h +++ b/extra/libde265/de265-version.h @@ -22,8 +22,8 @@ #define LIBDE265_VERSION_H /* Numeric representation of the version */ -#define LIBDE265_NUMERIC_VERSION 0x01000800 +#define LIBDE265_NUMERIC_VERSION 0x01000900 -#define LIBDE265_VERSION "1.0.8" +#define LIBDE265_VERSION "1.0.9" #endif