From e3a55f312390ed30da146c16242cce2859405259 Mon Sep 17 00:00:00 2001 From: tqfx Date: Sun, 30 Jun 2024 23:24:28 +0800 Subject: [PATCH] release 0.1.14 --- Cargo.toml | 2 +- cmake/Project.cmake | 2 +- conanfile.py | 2 +- doc/Doxyfile | 2 +- include/a/version.h | 4 ++-- java/src/liba.java | 2 +- javascript/package.json | 2 +- lua/liba.lua | 2 +- meson.build | 2 +- setup.cfg | 2 +- xmake.lua | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6eeded4..b52788a 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 dd2ccc4..5babeb6 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 ac7faae..2b82aae 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ from conan.tools.cmake import CMakeToolchain, CMake 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 c159546..710bf3f 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 75f43e7..7695f20 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 62f8837..d82ea4c 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 748d0e7..ec2f10d 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 52ffe3a..44880a6 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 2032469..c041519 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 90128af..3926a5d 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 3cc6fc4..3674f4e 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") -- 2.11.4.GIT