diff --git a/CMakeLists.txt b/CMakeLists.txt index 67a7d7c..6bfabf4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 2.8.12) project(PhysicsFS) -set(PHYSFS_VERSION 3.0.2) +set(PHYSFS_VERSION 3.0.3) include(GNUInstallDirs) diff --git a/src/Makefile.os2 b/src/Makefile.os2 index 4928097..90e46f5 100644 --- a/src/Makefile.os2 +++ b/src/Makefile.os2 @@ -2,7 +2,7 @@ # wmake -f Makefile.os2 LIBNAME = physfs -VERSION = 3.0.2 +VERSION = 3.0.3 LIBFILE = $(LIBNAME).lib DLLFILE = $(LIBNAME).dll diff --git a/src/physfs.h b/src/physfs.h index 6440316..9218081 100644 --- a/src/physfs.h +++ b/src/physfs.h @@ -436,7 +436,7 @@ typedef struct PHYSFS_Version #ifndef DOXYGEN_SHOULD_IGNORE_THIS #define PHYSFS_VER_MAJOR 3 #define PHYSFS_VER_MINOR 0 -#define PHYSFS_VER_PATCH 2 +#define PHYSFS_VER_PATCH 3 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ diff --git a/test/test_physfs.c b/test/test_physfs.c index 8ca2adf..572a1e9 100644 --- a/test/test_physfs.c +++ b/test/test_physfs.c @@ -32,7 +32,7 @@ #define TEST_VERSION_MAJOR 3 #define TEST_VERSION_MINOR 0 -#define TEST_VERSION_PATCH 2 +#define TEST_VERSION_PATCH 3 static FILE *history_file = NULL; static PHYSFS_uint32 do_buffer_size = 0;