Skip to content

Commit

Permalink
Bumped version to 3.0.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 27, 2017
1 parent 975b7a5 commit 9e75631
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -12,7 +12,7 @@
cmake_minimum_required(VERSION 2.8.4)

project(PhysicsFS)
set(PHYSFS_VERSION 2.1.1)
set(PHYSFS_VERSION 3.0.0)

# Increment this if/when we break backwards compatibility.
set(PHYSFS_SOVERSION 1)
Expand Down
6 changes: 3 additions & 3 deletions src/physfs.h
Expand Up @@ -432,9 +432,9 @@ typedef struct PHYSFS_Version


#ifndef DOXYGEN_SHOULD_IGNORE_THIS
#define PHYSFS_VER_MAJOR 2
#define PHYSFS_VER_MINOR 1
#define PHYSFS_VER_PATCH 1
#define PHYSFS_VER_MAJOR 3
#define PHYSFS_VER_MINOR 0
#define PHYSFS_VER_PATCH 0
#endif /* DOXYGEN_SHOULD_IGNORE_THIS */


Expand Down
4 changes: 2 additions & 2 deletions test/test_physfs.c
Expand Up @@ -30,8 +30,8 @@

#include "physfs.h"

#define TEST_VERSION_MAJOR 2
#define TEST_VERSION_MINOR 1
#define TEST_VERSION_MAJOR 3
#define TEST_VERSION_MINOR 0
#define TEST_VERSION_PATCH 0

static FILE *history_file = NULL;
Expand Down

0 comments on commit 9e75631

Please sign in to comment.