From 3597a7b69a6a04389bbcd98b4b9391d17cb10375 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 8 Mar 2018 11:51:46 -0500 Subject: [PATCH] Call the default branch "3.1.0" to avoid confusion. This way, if someone builds the default branch instead of stable-3.0, we'll be able to distinguish. No immediate plans for a format 3.1 effort at the moment, though. --- CMakeLists.txt | 2 +- src/physfs.h | 2 +- test/test_physfs.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c151d610..5234e78a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 2.8.4) project(PhysicsFS) -set(PHYSFS_VERSION 3.0.0) +set(PHYSFS_VERSION 3.1.0) # Increment this if/when we break backwards compatibility. set(PHYSFS_SOVERSION 1) diff --git a/src/physfs.h b/src/physfs.h index f50d1566..4305d56c 100644 --- a/src/physfs.h +++ b/src/physfs.h @@ -433,7 +433,7 @@ typedef struct PHYSFS_Version #ifndef DOXYGEN_SHOULD_IGNORE_THIS #define PHYSFS_VER_MAJOR 3 -#define PHYSFS_VER_MINOR 0 +#define PHYSFS_VER_MINOR 1 #define PHYSFS_VER_PATCH 0 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ diff --git a/test/test_physfs.c b/test/test_physfs.c index cab8f5ac..19f1ca6d 100644 --- a/test/test_physfs.c +++ b/test/test_physfs.c @@ -31,7 +31,7 @@ #include "physfs.h" #define TEST_VERSION_MAJOR 3 -#define TEST_VERSION_MINOR 0 +#define TEST_VERSION_MINOR 1 #define TEST_VERSION_PATCH 0 static FILE *history_file = NULL;