Explorar o código

Change library version to patch level

Patrick-Christopher Mattulat hai 1 ano
pai
achega
9ac82a155c

+ 1 - 1
CMakeLists.txt

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

+ 3 - 3
README.md

@@ -1,4 +1,4 @@
-# Lynar Studios - Standard Library 2023.2.1 #
+# Lynar Studios - Standard Library 2023.2.2 #
 
 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.
@@ -34,11 +34,11 @@ A __Date__ class comes with this submodule, which you can use to represent a dat
 
 #### Features ####
 
-- Section Pair values now support backslash characters, which are common on Windows to describe a file path
+- none
 
 #### Improvements ####
 
-- solved more than 400 SonarLint findings, which were mostly on critical level
+- none
 
 #### Fixes ####
 

+ 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-06-08
+* Changed:         2023-06-12
 *
 * */
 
@@ -18,5 +18,5 @@ LibraryVersion::~LibraryVersion() = default;
 
 string LibraryVersion::getVersion()
 {
-  return "2023.2.1";
+  return "2023.2.2";
 }

+ 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-06-06
+ * Changed:         2023-06-12
  *
  * */
 
@@ -25,6 +25,6 @@ namespace
 
   TEST_F(LibraryVersionTest, getVersion)
   {
-    ASSERT_STREQ("2023.2.1", LibraryVersion::getVersion().c_str());
+    ASSERT_STREQ("2023.2.2", LibraryVersion::getVersion().c_str());
   }
 }