From 3fead344ad06446ce2dca9ea528fcca7b6948e35 Mon Sep 17 00:00:00 2001 From: Krishty Date: Mon, 19 Apr 2021 07:37:12 +0200 Subject: [PATCH 1/2] updated version string (if anyone cares) --- code/Common/Version.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Common/Version.cpp b/code/Common/Version.cpp index baa83940e..205dde52b 100644 --- a/code/Common/Version.cpp +++ b/code/Common/Version.cpp @@ -53,7 +53,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. static const char *LEGAL_INFORMATION = "Open Asset Import Library (Assimp).\n" "A free C/C++ library to import various 3D file formats into applications\n\n" - "(c) 2006-2020, assimp team\n" + "(c) 2006-2021, Assimp team\n" "License under the terms and conditions of the 3-clause BSD license\n" "https://www.assimp.org\n"; From 930cc25c0e6426ccc6a92fdaab9b5eefe76c2a31 Mon Sep 17 00:00:00 2001 From: Krishty Date: Mon, 19 Apr 2021 09:51:44 +0200 Subject: [PATCH 2/2] fixed version string test --- test/unit/utVersion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/utVersion.cpp b/test/unit/utVersion.cpp index 15d3366fa..0189cd2a9 100644 --- a/test/unit/utVersion.cpp +++ b/test/unit/utVersion.cpp @@ -48,7 +48,7 @@ TEST_F( utVersion, aiGetLegalStringTest ) { EXPECT_NE( lv, nullptr ); std::string text( lv ); - size_t pos( text.find( std::string( "2020" ) ) ); + size_t pos( text.find( std::string( "2021" ) ) ); EXPECT_NE( pos, std::string::npos ); }