Ryan C. Gordon пре 3 година
родитељ
комит
eb3383b532
4 измењених фајлова са 4 додато и 4 уклоњено
  1. 1 1
      CMakeLists.txt
  2. 1 1
      src/Makefile.os2
  3. 1 1
      src/physfs.h
  4. 1 1
      test/test_physfs.c

+ 1 - 1
CMakeLists.txt

@@ -9,7 +9,7 @@
 #  compile, using preprocessor checks for platform-specific bits instead of
 #  testing in here.
 
-set(PHYSFS_VERSION 3.1.0)
+set(PHYSFS_VERSION 3.2.0)
 
 cmake_minimum_required(VERSION 3.0)
 

+ 1 - 1
src/Makefile.os2

@@ -2,7 +2,7 @@
 # wmake -f Makefile.os2
 
 LIBNAME = physfs
-VERSION = 3.1.0
+VERSION = 3.2.0
 
 LIBFILE = $(LIBNAME).lib
 DLLFILE = $(LIBNAME).dll

+ 1 - 1
src/physfs.h

@@ -435,7 +435,7 @@ typedef struct PHYSFS_Version
 
 #ifndef DOXYGEN_SHOULD_IGNORE_THIS
 #define PHYSFS_VER_MAJOR 3
-#define PHYSFS_VER_MINOR 1
+#define PHYSFS_VER_MINOR 2
 #define PHYSFS_VER_PATCH 0
 #endif  /* DOXYGEN_SHOULD_IGNORE_THIS */
 

+ 1 - 1
test/test_physfs.c

@@ -31,7 +31,7 @@
 #include "physfs.h"
 
 #define TEST_VERSION_MAJOR  3
-#define TEST_VERSION_MINOR  1
+#define TEST_VERSION_MINOR  2
 #define TEST_VERSION_PATCH  0
 
 static FILE *history_file = NULL;