From fed94bf21a2dc23901ab4f9f4601a6594dbe50b6 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 23 Mar 2009 00:45:15 -0400 Subject: [PATCH] Upped version to 2.0.0! --- CMakeLists.txt | 2 +- Doxyfile | 2 +- physfs.h | 6 +++--- test/test_physfs.c | 6 +++--- test/wxtest_physfs.cpp | 6 +++--- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c692b52..ae2fb7f4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.4) PROJECT(PhysicsFS) -SET(PHYSFS_VERSION 1.1.1) +SET(PHYSFS_VERSION 2.0.0) # Increment this if/when we break backwards compatibility. SET(PHYSFS_SOVERSION 1) diff --git a/Doxyfile b/Doxyfile index ef0a5cf7..40608fda 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.1.1 +PROJECT_NUMBER = 2.0.0 # 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 f441628b..f0893829 100644 --- a/physfs.h +++ b/physfs.h @@ -399,9 +399,9 @@ typedef struct PHYSFS_Version } PHYSFS_Version; #ifndef DOXYGEN_SHOULD_IGNORE_THIS -#define PHYSFS_VER_MAJOR 1 -#define PHYSFS_VER_MINOR 1 -#define PHYSFS_VER_PATCH 1 +#define PHYSFS_VER_MAJOR 2 +#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 33c3f745..79f9bb02 100644 --- a/test/test_physfs.c +++ b/test/test_physfs.c @@ -25,9 +25,9 @@ #include "physfs.h" -#define TEST_VERSION_MAJOR 1 -#define TEST_VERSION_MINOR 1 -#define TEST_VERSION_PATCH 1 +#define TEST_VERSION_MAJOR 2 +#define TEST_VERSION_MINOR 0 +#define TEST_VERSION_PATCH 0 static FILE *history_file = NULL; static PHYSFS_uint32 do_buffer_size = 0; diff --git a/test/wxtest_physfs.cpp b/test/wxtest_physfs.cpp index e762633e..5f8ace98 100644 --- a/test/wxtest_physfs.cpp +++ b/test/wxtest_physfs.cpp @@ -22,9 +22,9 @@ #include "physfs.h" -#define TEST_VER_MAJOR 1 -#define TEST_VER_MINOR 1 -#define TEST_VER_PATCH 1 +#define TEST_VER_MAJOR 2 +#define TEST_VER_MINOR 0 +#define TEST_VER_PATCH 0 //static PHYSFS_uint32 do_buffer_size = 0;