Jelajahi Sumber

Increase library version

Patrick-Christopher Mattulat 2 tahun lalu
induk
melakukan
71bea58e97

+ 1 - 1
CMakeLists.txt

@@ -3,7 +3,7 @@
 ##########################################################
 
 cmake_minimum_required(VERSION 3.17)
-project(ls_std VERSION 2021.2.0)
+project(ls_std VERSION 2022.1.0)
 
 ##########################################################
 # Options

+ 4 - 13
README.md

@@ -1,4 +1,4 @@
-# Lynar Studios - Standard Library 2021.2.0 #
+# Lynar Studios - Standard Library 2022.1.0 #
 
 This is a cross-platform standard library written in C++ offering functionalities you'd usually miss in C++ standard library, especially if you'd search for cross-platform implementations. This library has been tested on __Windows__, __Linux__ and __MacOS__ systems.
  
@@ -55,24 +55,15 @@ A key value file offers the possibility to store simple information pairs in a f
 
 #### Features ####
 
-- extended EventManager class by adding EventHandler availability check method
-- added exceptions for event management
-- extended Date class by introducing __+=__ and __-=__ operators
-- it's now possible to retrieve library version
-- added more operators to __LogLevel__ class
-- added factory interface
-- added "current working directory" detection implementation for __File__ class
+- TBA
 
 #### Improvements ####
 
-- increased test coverage by adding more unit tests
-- improved overall error handling by adding more error checks
-- reduced overall unnecessary complexity of public classes 
-- improved naming of certain classes
+- TBA
 
 #### Fixes ####
 
-- added missing header files to main header file
+- TBA
 
 ### Documentation ###
 

+ 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-09-24
+ * Changed:         2022-04-26
  *
  * */
 
@@ -16,7 +16,7 @@ namespace ls_std
 {
   static std::string getVersion()
   {
-    return "2021.2.0";
+    return "2022.1.0";
   }
 }
 

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

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2021-05-02
- * Changed:         2021-09-24
+ * Changed:         2022-04-26
  *
  * */
 
@@ -28,6 +28,6 @@ namespace
 
   TEST_F(LibraryVersionTest, getVersion)
   {
-    ASSERT_STREQ("2021.2.0", ls_std::getVersion().c_str());
+    ASSERT_STREQ("2022.1.0", ls_std::getVersion().c_str());
   }
 }