Skip to content

Commit

Permalink
Merge pull request #1631 from assimp/kimkulling-410_prep
Browse files Browse the repository at this point in the history
Update to 4.1.0
  • Loading branch information
kimkulling committed Dec 11, 2017
2 parents 899748c + e8139ef commit 80799bd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -129,8 +129,8 @@ ENDIF(NOT BUILD_SHARED_LIBS)

# Define here the needed parameters
SET (ASSIMP_VERSION_MAJOR 4)
SET (ASSIMP_VERSION_MINOR 0)
SET (ASSIMP_VERSION_PATCH 1)
SET (ASSIMP_VERSION_MINOR 1)
SET (ASSIMP_VERSION_PATCH 0)
SET (ASSIMP_VERSION ${ASSIMP_VERSION_MAJOR}.${ASSIMP_VERSION_MINOR}.${ASSIMP_VERSION_PATCH})
SET (ASSIMP_SOVERSION 4)
SET (PROJECT_VERSION "${ASSIMP_VERSION}")
Expand Down
2 changes: 1 addition & 1 deletion code/Version.cpp
Expand Up @@ -46,7 +46,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "ScenePrivate.h"

static const unsigned int MajorVersion = 4;
static const unsigned int MinorVersion = 0;
static const unsigned int MinorVersion = 1;

// --------------------------------------------------------------------------------
// Legal information string - dont't remove this.
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile.in
Expand Up @@ -32,7 +32,7 @@ PROJECT_NAME = Assimp
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = "v3.1.1 (June 2014)"
PROJECT_NUMBER = "v4.1. (December 2018)"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer
Expand Down
2 changes: 1 addition & 1 deletion test/unit/utVersion.cpp
Expand Up @@ -54,7 +54,7 @@ TEST_F( utVersion, aiGetLegalStringTest ) {
}

TEST_F( utVersion, aiGetVersionMinorTest ) {
EXPECT_EQ( aiGetVersionMinor(), 0U );
EXPECT_EQ( aiGetVersionMinor(), 1U );
}

TEST_F( utVersion, aiGetVersionMajorTest ) {
Expand Down

0 comments on commit 80799bd

Please sign in to comment.