From 0cd485a5b5fd3aa7bbccccc7203e92f32a97f8e3 Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Mon, 17 Apr 2023 09:30:57 -0500 Subject: [PATCH] Bumping version to 0.3.2, SO 25 (min libopenshot-audio set to range 0.3.0...0.3.2) --- CMakeLists.txt | 4 ++-- src/CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f85da200..a8f8aa96 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,8 +24,8 @@ For more information, please visit . set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules") ################ PROJECT VERSION #################### -set(PROJECT_VERSION_FULL "0.3.1") -set(PROJECT_SO_VERSION 24) +set(PROJECT_VERSION_FULL "0.3.2") +set(PROJECT_SO_VERSION 25) # Remove the dash and anything following, to get the #.#.# version for project() STRING(REGEX REPLACE "\-.*$" "" VERSION_NUM "${PROJECT_VERSION_FULL}") diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9c021c60..4a74ff1a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -176,7 +176,7 @@ target_include_directories(openshot # Find JUCE-based openshot Audio libraries if(NOT TARGET OpenShot::Audio) # Only load if necessary (not for integrated builds) - find_package(OpenShotAudio 0.3.0...0.3.1 REQUIRED) + find_package(OpenShotAudio 0.3.0...0.3.2 REQUIRED) endif() target_link_libraries(openshot PUBLIC OpenShot::Audio)