Explorar o código

Prepare for next development iteration

Patrick-Christopher Mattulat hai 22 horas
pai
achega
f16c70c4d9

+ 1 - 1
CMakeLists.txt

@@ -11,7 +11,7 @@
 ##########################################################
 
 cmake_minimum_required(VERSION 3.30)
-project(ls-std VERSION 2024.1.0.1)
+project(ls-std VERSION 2026.1.0.0)
 
 set(MODULE_NAME_BOXING ls-std-boxing)
 set(MODULE_NAME_CORE ls-std-core)

+ 2 - 2
README.md

@@ -1,4 +1,4 @@
-# Lynar Studios - Standard Library 2024.1.0.1 #
+# Lynar Studios - Standard Library 2026.1.0.0 #
 
 This is a cross-platform standard library written in C++ offering functionalities you would usually miss in C++'s standard library, especially if you would search for cross-platform implementations.  
 This library has been tested on __Windows__, __Linux__ and __MacOS__ systems.
@@ -38,7 +38,7 @@ A __Date__ class comes with this submodule, which you can use to represent a dat
 
 #### Improvements ####
 
-- README.md file now contains information on documentation
+- 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:         2024-12-29
+* Changed:         2025-12-18
 *
 * */
 
@@ -18,5 +18,5 @@ LibraryVersion::~LibraryVersion() = default;
 
 string LibraryVersion::getVersion()
 {
-  return "2024.1.0.1";
+  return "2026.1.0.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:         2024-12-29
+ * Changed:         2025-12-18
  *
  * */
 
@@ -25,6 +25,6 @@ namespace
 
   TEST_F(LibraryVersionTest, getVersion)
   {
-    ASSERT_STREQ("2024.1.0.1", LibraryVersion::getVersion().c_str());
+    ASSERT_STREQ("2026.1.0.0", LibraryVersion::getVersion().c_str());
   }
 }