diff --git a/Doxyfile b/Doxyfile index 72b4935..b82b2aa 100644 --- a/Doxyfile +++ b/Doxyfile @@ -23,7 +23,7 @@ PROJECT_NAME = physfs # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0.1 +PROJECT_NUMBER = 1.0.2 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/physfs.h b/physfs.h index c71a21d..1b45cb9 100644 --- a/physfs.h +++ b/physfs.h @@ -323,7 +323,7 @@ typedef struct #ifndef DOXYGEN_SHOULD_IGNORE_THIS #define PHYSFS_VER_MAJOR 1 #define PHYSFS_VER_MINOR 0 -#define PHYSFS_VER_PATCH 1 +#define PHYSFS_VER_PATCH 2 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ diff --git a/physfs.rc b/physfs.rc index 59e3b15..91e8fcb 100644 --- a/physfs.rc +++ b/physfs.rc @@ -1,7 +1,7 @@ 1 VERSIONINFO -FILEVERSION 1,0,1,0 -PRODUCTVERSION 1,0,1,0 +FILEVERSION 1,0,2,0 +PRODUCTVERSION 1,0,2,0 FILEOS 0x40004 FILETYPE 0x2 { @@ -11,12 +11,12 @@ BLOCK "StringFileInfo" { VALUE "CompanyName", "" VALUE "FileDescription", "PhysicsFS" - VALUE "FileVersion", "1, 0, 1, 0" + VALUE "FileVersion", "1, 0, 2, 0" VALUE "InternalName", "PhysFS" VALUE "LegalCopyright", "Copyright © 2009 Ryan C. Gordon" VALUE "OriginalFilename", "physfs.dll" VALUE "ProductName", "PhysicsFS" - VALUE "ProductVersion", "1, 0, 1, 0" + VALUE "ProductVersion", "1, 0, 2, 0" } } diff --git a/test/test_physfs.c b/test/test_physfs.c index 6b668d6..e23cb4d 100644 --- a/test/test_physfs.c +++ b/test/test_physfs.c @@ -31,7 +31,7 @@ #define TEST_VERSION_MAJOR 1 #define TEST_VERSION_MINOR 0 -#define TEST_VERSION_PATCH 1 +#define TEST_VERSION_PATCH 2 static FILE *history_file = NULL; static PHYSFS_uint32 do_buffer_size = 0;