瀏覽代碼

Finalize version 1.0.1

Patrick-Christopher Mattulat 8 小時之前
父節點
當前提交
e0d33f0f79
共有 5 個文件被更改,包括 5 次插入5 次删除
  1. 1 1
      CMakeLists.txt
  2. 1 1
      README.md
  3. 1 1
      doc/coline.html
  4. 1 1
      source/ls-std/core/LibraryVersion.cpp
  5. 1 1
      test/cases/core/LibraryVersionTest.cpp

+ 1 - 1
CMakeLists.txt

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

+ 1 - 1
README.md

@@ -1,4 +1,4 @@
-# Lynar Studios - Standard Library 1.0.0 #
+# Lynar Studios - Standard Library 1.0.1 #
 
 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.

+ 1 - 1
doc/coline.html

@@ -55,7 +55,7 @@ li.class_li
 </style>
 </head>
 <body>
-<h1>Lynar Studios - Standard Library - v1.0.0 Documentation</h1>
+<h1>Lynar Studios - Standard Library - v1.0.1 Documentation</h1>
 <h2>Packages</h2>
 <ul id="package_list">
 <li class="package_li"><a class="default_link_layout" href="#package_boxing">boxing</a></li>

+ 1 - 1
source/ls-std/core/LibraryVersion.cpp

@@ -19,5 +19,5 @@ LibraryVersion::~LibraryVersion() = default;
 
 string LibraryVersion::getVersion()
 {
-  return "2026.1.0.0";
+  return "1.0.1";
 }

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

@@ -26,6 +26,6 @@ namespace
 
   TEST_F(LibraryVersionTest, getVersion)
   {
-    ASSERT_STREQ("2026.1.0.0", LibraryVersion::getVersion().c_str());
+    ASSERT_STREQ("1.0.1", LibraryVersion::getVersion().c_str());
   }
 }