From cffaaa7436b26478d620c8d124577d89317c78a2 Mon Sep 17 00:00:00 2001 From: Oleh Derevenko Date: Tue, 20 Dec 2022 00:08:44 +0200 Subject: [PATCH] Changed: Version bumped to 0.16.3 --- CMakeLists.txt | 2 +- build/premake4.lua | 2 +- configure.ac | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d4aa413a..c45bdce8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ include(GNUInstallDirs) set(VERSION_MAJOR 0) set(VERSION_MINOR 16) -set(VERSION_PATCH 2) +set(VERSION_PATCH 3) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) option(BUILD_SHARED_LIBS "Build shared libraries." ON) diff --git a/build/premake4.lua b/build/premake4.lua index 4922688a..faa9e870 100644 --- a/build/premake4.lua +++ b/build/premake4.lua @@ -4,7 +4,7 @@ -- For more information on Premake: http://industriousone.com/premake ---------------------------------------------------------------------- - ode_version = "0.16.2" + ode_version = "0.16.3 ---------------------------------------------------------------------- -- Demo list: add/remove demos from here and the rest of the build diff --git a/configure.ac b/configure.ac index 9a8c63fa..88d5badd 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl AC_INIT does not take a macro as a version nr: set it separately! - Bram -AC_INIT([ODE],[0.16.2],[ode@ode.org]) -ODE_VERSION=0.16.2 +AC_INIT([ODE],[0.16.3],[ode@ode.org]) +ODE_VERSION=0.16.3 AC_SUBST(ODE_VERSION) # Those are instructions from the Libtool manual: @@ -23,7 +23,7 @@ AC_SUBST(ODE_VERSION) # 6. If any interfaces have been removed since the last public release, # then set AGE to 0. CURRENT=8 -REVISION=2 +REVISION=3 AGE=0 AC_ARG_ENABLE(version-info, -- 2.11.4.GIT