diff --git a/Cargo.toml b/Cargo.toml index 6eeded41..b52788aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liba" -version = "0.1.13" +version = "0.1.14" authors = ["tqfx "] description = "An algorithm library based on C/C++" documentation = "https://docs.rs/liba" diff --git a/cmake/Project.cmake b/cmake/Project.cmake index dd2ccc4b..5babeb64 100644 --- a/cmake/Project.cmake +++ b/cmake/Project.cmake @@ -1,4 +1,4 @@ -set(PROJECT_VERSION 0.1.13) +set(PROJECT_VERSION 0.1.14) set(PROJECT_LICENSE MPL-2.0) set(PROJECT_CONTACT tqfx@tqfx.org) set(PROJECT_DESCRIPTION "An algorithm library based on C/C++") diff --git a/conanfile.py b/conanfile.py index ac7faaea..2b82aae2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ class Conan(ConanFile): name = "liba" - version = "0.1.13" + version = "0.1.14" license = "MPL-2.0" topics = ["algorithm"] author = "tqfx tqfx@tqfx.org" diff --git a/doc/Doxyfile b/doc/Doxyfile index c159546b..710bf3f7 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -1,6 +1,6 @@ # Project related configuration options PROJECT_NAME = liba -PROJECT_NUMBER = 0.1.13 +PROJECT_NUMBER = 0.1.14 PROJECT_BRIEF = An algorithm library based on C/C++ OUTPUT_DIRECTORY = ../../build CREATE_SUBDIRS = YES diff --git a/include/a/version.h b/include/a/version.h index 75f43e78..7695f20d 100644 --- a/include/a/version.h +++ b/include/a/version.h @@ -28,13 +28,13 @@ /*! algorithm library version patch */ #ifndef A_VERSION_PATCH -#define A_VERSION_PATCH 13 +#define A_VERSION_PATCH 14 #endif /* A_VERSION_PATCH */ #undef patch /*! algorithm library version tweak */ #ifndef A_VERSION_TWEAK -#define A_VERSION_TWEAK 20240618 +#define A_VERSION_TWEAK 20240630 #endif /* A_VERSION_TWEAK */ #define A_VERSION_TOSTR(X) A_CAST_1(X) diff --git a/java/src/liba.java b/java/src/liba.java index 62f88372..d82ea4cf 100644 --- a/java/src/liba.java +++ b/java/src/liba.java @@ -6,7 +6,7 @@ public class liba { public static final String VERSION; static { System.loadLibrary("a"); - VERSION = "0.1.13"; + VERSION = "0.1.14"; clinit(); } diff --git a/javascript/package.json b/javascript/package.json index 748d0e73..ec2f10de 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@tqfx/liba", - "version": "0.1.13", + "version": "0.1.14", "description": "An algorithm library based on C/C++", "main": "liba.js", "types": "liba.d.ts", diff --git a/lua/liba.lua b/lua/liba.lua index 52ffe3a9..44880a60 100644 --- a/lua/liba.lua +++ b/lua/liba.lua @@ -1673,6 +1673,6 @@ function liba.version.ne(lhs, rhs) end ---@return boolean function version:ne(rhs) end -liba.VERSION = "0.1.13" +liba.VERSION = "0.1.14" return liba diff --git a/meson.build b/meson.build index 2032469d..c0415190 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('liba', 'c', 'cpp', 'buildtype=debugoptimized', ], license: 'MPL-2.0', - version: '0.1.13') + version: '0.1.14') a_have_h = configuration_data() a_have_h.set('version', meson.version()) diff --git a/setup.cfg b/setup.cfg index 90128af8..3926a5dc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = liba -version = 0.1.13 +version = 0.1.14 url = https://github.com/tqfx/liba author = tqfx author_email = tqfx@tqfx.org diff --git a/xmake.lua b/xmake.lua index 3cc6fc40..3674f4eb 100644 --- a/xmake.lua +++ b/xmake.lua @@ -6,7 +6,7 @@ set_project("liba") set_xmakever("2.5.0") -- set project version -set_version("0.1.13", { build = "%Y%m%d" }) +set_version("0.1.14", { build = "%Y%m%d" }) -- option: liba-cxx option("liba-cxx")