Skip to content

Commit

Permalink
hcana version is 0.97.
Browse files Browse the repository at this point in the history
  • Loading branch information
hansenjo authored and MarkKJones committed Aug 14, 2023
1 parent 6bf09d6 commit 54ff677
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.5)

project(hcana VERSION 0.96 LANGUAGES CXX)
project(hcana VERSION 0.97 LANGUAGES CXX)

option(HCANA_BUILTIN_PODD "Use built-in Podd submodule (default: YES)" ON)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# List only the implementation files (*.cxx). For every implementation file
# there must be a corresponding header file (*.h).

SOVERSION := 0.96
SOVERSION := 0.97
PATCH := 0
VERSION := $(SOVERSION).$(PATCH)
EXTVERS :=
Expand Down
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ baseenv.Append(HA_Podd = os.path.join(baseenv.subst('$HA_DIR'),'Podd'))
baseenv.Append(HA_DC = os.path.join(baseenv.subst('$HA_DIR'),'hana_decode'))
baseenv.Append(HA_DB = os.path.join(baseenv.subst('$HA_DIR'),'Database'))
baseenv.Append(MAJORVERSION = '0')
baseenv.Append(MINORVERSION = '96')
baseenv.Append(MINORVERSION = '97')
baseenv.Append(PATCH = '0')
baseenv.Append(SOVERSION = baseenv.subst('$MAJORVERSION')+'.'+baseenv.subst('$MINORVERSION'))
baseenv.Append(VERSION = baseenv.subst('$SOVERSION')+'.'+baseenv.subst('$PATCH'))
Expand Down

0 comments on commit 54ff677

Please sign in to comment.