Quellcode durchsuchen

Bumped version to 3.0.0!

Ryan C. Gordon vor 8 Jahren
Ursprung
Commit
9e756312d5
3 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen
  1. 1 1
      CMakeLists.txt
  2. 3 3
      src/physfs.h
  3. 2 2
      test/test_physfs.c

+ 1 - 1
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)

+ 3 - 3
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 */
 
 

+ 2 - 2
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;