소스 검색

Change library version to patch level

Patrick-Christopher Mattulat 11 달 전
부모
커밋
9ac82a155c
4개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 1
      CMakeLists.txt
  2. 3 3
      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.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());
   }
 }