Browse Source

Change library version

Patrick-Christopher Mattulat 3 years ago
parent
commit
9828826f55
3 changed files with 4 additions and 4 deletions
  1. 1 1
      README.md
  2. 2 2
      include/ls_std/base/LibraryVersion.hpp
  3. 1 1
      test/cases/base/LibraryVersionTest.cpp

+ 1 - 1
README.md

@@ -1,4 +1,4 @@
-# Lynar Studios - Standard Library 2021.1.0 #
+# Lynar Studios - Standard Library 1.0.0 #
 
 This is a cross-platform standard library written in C++ which provides basic functionality and implementation, like:
  

+ 2 - 2
include/ls_std/base/LibraryVersion.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2021-05-02
- * Changed:         2021-05-02
+ * Changed:         2021-05-24
  *
  * */
 
@@ -16,7 +16,7 @@ namespace ls_std
 {
   static std::string getVersion()
   {
-    return "2021.1.0";
+    return "1.0.0";
   }
 }
 

+ 1 - 1
test/cases/base/LibraryVersionTest.cpp

@@ -28,6 +28,6 @@ namespace
 
   TEST_F(LibraryVersionTest, getVersion)
   {
-    ASSERT_STREQ("2021.1.0", ls_std::getVersion().c_str());
+    ASSERT_STREQ("1.0.0", ls_std::getVersion().c_str());
   }
 }