Patrick-Christopher Mattulat 2 роки тому
батько
коміт
c8fd26a882

+ 1 - 1
CMakeLists.txt

@@ -11,7 +11,7 @@
 ##########################################################
 
 cmake_minimum_required(VERSION 3.17)
-project(ls_std VERSION 2022.2.0)
+project(ls_std VERSION 2022.3.0)
 
 set(MODULE_NAME_BOXING ls_std_boxing)
 set(MODULE_NAME_CORE ls_std_core)

+ 3 - 7
README.md

@@ -1,4 +1,4 @@
-# Lynar Studios - Standard Library 2022.2.0 #
+# Lynar Studios - Standard Library 2022.3.0 #
 
 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.
@@ -38,15 +38,11 @@ A __Date__ class comes with this submodule, which you can use to represent a dat
 
 #### Features ####
 
-- this library is now being compiled with C++ 17 standard
-- this library can now build shared libraries by using MSVC
-- Clang support has been added to this library
-- added Base64 CLI Tool, which enables a user to use Base64 encoding and decoding functionalities via CLI
+- none
 
 #### Improvements ####
 
-- JSON type alias has been added to avoid direct nlohmann library usage
-- logic module is now officially deprecated
+- none
 
 #### Fixes ####
 

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2021-05-02
- * Changed:         2022-07-02
+ * Changed:         2022-08-09
  *
  * */
 
@@ -16,7 +16,7 @@ namespace ls::std::core
 {
   static ::std::string getVersion()
   {
-    return "2022.2.0";
+    return "2022.3.0";
   }
 }
 

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2021-05-02
- * Changed:         2022-07-02
+ * Changed:         2022-08-09
  *
  * */
 
@@ -28,6 +28,6 @@ namespace
 
   TEST_F(LibraryVersionTest, getVersion)
   {
-    ASSERT_STREQ("2022.2.0", ls::std::core::getVersion().c_str());
+    ASSERT_STREQ("2022.3.0", ls::std::core::getVersion().c_str());
   }
 }