Skip to content

Commit

Permalink
Call the default branch "3.1.0" to avoid confusion.
Browse files Browse the repository at this point in the history
This way, if someone builds the default branch instead of stable-3.0, we'll
be able to distinguish.

No immediate plans for a format 3.1 effort at the moment, though.
  • Loading branch information
icculus committed Mar 8, 2018
1 parent c868952 commit 3597a7b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 3.0.0)
set(PHYSFS_VERSION 3.1.0)

# Increment this if/when we break backwards compatibility.
set(PHYSFS_SOVERSION 1)
Expand Down
2 changes: 1 addition & 1 deletion src/physfs.h
Expand Up @@ -433,7 +433,7 @@ typedef struct PHYSFS_Version

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

Expand Down
2 changes: 1 addition & 1 deletion test/test_physfs.c
Expand Up @@ -31,7 +31,7 @@
#include "physfs.h"

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

static FILE *history_file = NULL;
Expand Down

0 comments on commit 3597a7b

Please sign in to comment.