Skip to content

Commit

Permalink
increase version to v1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Oct 18, 2022
1 parent b371427 commit b578ae5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 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.8
VERSION 1.0.9
)

set(CMAKE_CXX_STANDARD 11)
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.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:
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=1
LIBDE265_REVISION=2
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 0x01000800
#define LIBDE265_NUMERIC_VERSION 0x01000900

#define LIBDE265_VERSION "1.0.8"
#define LIBDE265_VERSION "1.0.9"

#endif

0 comments on commit b578ae5

Please sign in to comment.