Merge pull request #4166 from assimp/kimkulling-fix_version_issue-4161

Change version to 5.1.0
pull/4167/head
Kim Kulling 2021-11-10 09:08:23 +01:00 committed by GitHub
commit 83950845ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -53,7 +53,7 @@ IF(ASSIMP_HUNTER_ENABLED)
add_definitions(-DASSIMP_USE_HUNTER) add_definitions(-DASSIMP_USE_HUNTER)
ENDIF() ENDIF()
PROJECT( Assimp VERSION 5.0.1 ) PROJECT(Assimp VERSION 5.1.0)
# All supported options ############################################### # All supported options ###############################################

View File

@ -44,16 +44,16 @@ class utVersion : public ::testing::Test {
}; };
TEST_F( utVersion, aiGetLegalStringTest ) { TEST_F( utVersion, aiGetLegalStringTest ) {
const char *lv( aiGetLegalString() ); const char *lv = aiGetLegalString();
EXPECT_NE( lv, nullptr ); EXPECT_NE( lv, nullptr );
std::string text( lv ); std::string text( lv );
size_t pos( text.find( std::string( "2021" ) ) ); size_t pos = text.find(std::string("2021"));
EXPECT_NE( pos, std::string::npos ); EXPECT_NE( pos, std::string::npos );
} }
TEST_F( utVersion, aiGetVersionMinorTest ) { TEST_F( utVersion, aiGetVersionMinorTest ) {
EXPECT_EQ( aiGetVersionMinor(), 0U ); EXPECT_EQ( aiGetVersionMinor(), 1U );
} }
TEST_F( utVersion, aiGetVersionMajorTest ) { TEST_F( utVersion, aiGetVersionMajorTest ) {