From 9e756312d5f42bfc7cfdc1e07033ff3fbfa1de87 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 27 Sep 2017 11:54:25 -0400 Subject: [PATCH] Bumped version to 3.0.0! --- CMakeLists.txt | 2 +- src/physfs.h | 6 +++--- test/test_physfs.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f4193445..c151d610 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 2.8.4) project(PhysicsFS) -set(PHYSFS_VERSION 2.1.1) +set(PHYSFS_VERSION 3.0.0) # Increment this if/when we break backwards compatibility. set(PHYSFS_SOVERSION 1) diff --git a/src/physfs.h b/src/physfs.h index 099d18b9..1abd2b0e 100644 --- a/src/physfs.h +++ b/src/physfs.h @@ -432,9 +432,9 @@ typedef struct PHYSFS_Version #ifndef DOXYGEN_SHOULD_IGNORE_THIS -#define PHYSFS_VER_MAJOR 2 -#define PHYSFS_VER_MINOR 1 -#define PHYSFS_VER_PATCH 1 +#define PHYSFS_VER_MAJOR 3 +#define PHYSFS_VER_MINOR 0 +#define PHYSFS_VER_PATCH 0 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ diff --git a/test/test_physfs.c b/test/test_physfs.c index d99338cd..cab8f5ac 100644 --- a/test/test_physfs.c +++ b/test/test_physfs.c @@ -30,8 +30,8 @@ #include "physfs.h" -#define TEST_VERSION_MAJOR 2 -#define TEST_VERSION_MINOR 1 +#define TEST_VERSION_MAJOR 3 +#define TEST_VERSION_MINOR 0 #define TEST_VERSION_PATCH 0 static FILE *history_file = NULL;