Browse Source

Change released version to minor version

Patrick-Christopher Mattulat 10 months ago
parent
commit
44b87b8822
4 changed files with 6 additions and 6 deletions
  1. 1 1
      CMakeLists.txt
  2. 1 1
      README.md
  3. 2 2
      source/ls-std/core/LibraryVersion.cpp
  4. 2 2
      test/cases/core/LibraryVersionTest.cpp

+ 1 - 1
CMakeLists.txt

@@ -11,7 +11,7 @@
 ##########################################################
 
 cmake_minimum_required(VERSION 3.17)
-project(ls-std VERSION 2023.3.0)
+project(ls-std VERSION 2023.2.1)
 
 set(MODULE_NAME_BOXING ls-std-boxing)
 set(MODULE_NAME_CORE ls-std-core)

+ 1 - 1
README.md

@@ -1,4 +1,4 @@
-# Lynar Studios - Standard Library 2023.3.0 #
+# Lynar Studios - Standard Library 2023.2.1 #
 
 This is a cross-platform standard library written in C++ offering functionalities you would usually miss in C++'s standard template library (STL), especially if you would search for cross-platform implementations.  
 This library has been tested on __Windows__, __Linux__ and __MacOS__ systems.

+ 2 - 2
source/ls-std/core/LibraryVersion.cpp

@@ -3,7 +3,7 @@
 * Company:         Lynar Studios
 * E-Mail:          webmaster@lynarstudios.com
 * Created:         2023-02-05
-* Changed:         2023-04-15
+* Changed:         2023-06-08
 *
 * */
 
@@ -18,5 +18,5 @@ LibraryVersion::~LibraryVersion() = default;
 
 string LibraryVersion::getVersion()
 {
-  return "2023.3.0";
+  return "2023.2.1";
 }

+ 2 - 2
test/cases/core/LibraryVersionTest.cpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2021-05-02
- * Changed:         2023-04-15
+ * Changed:         2023-06-06
  *
  * */
 
@@ -25,6 +25,6 @@ namespace
 
   TEST_F(LibraryVersionTest, getVersion)
   {
-    ASSERT_STREQ("2023.3.0", LibraryVersion::getVersion().c_str());
+    ASSERT_STREQ("2023.2.1", LibraryVersion::getVersion().c_str());
   }
 }