Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Upped version to 2.0.0!
  • Loading branch information
icculus committed Mar 23, 2009
1 parent 613aedc commit fed94bf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions physfs.h
Expand Up @@ -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 */


Expand Down
6 changes: 3 additions & 3 deletions test/test_physfs.c
Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions test/wxtest_physfs.cpp
Expand Up @@ -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;

Expand Down

0 comments on commit fed94bf

Please sign in to comment.