From 3ff3cfb8c7f477352c68ce00ba1f16521ccd4eed Mon Sep 17 00:00:00 2001 From: tqfx Date: Sat, 6 Apr 2024 18:41:08 +0800 Subject: [PATCH] release 0.1.10 --- 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 +- script/autogen | 2 +- script/configure.ac | 2 +- setup.cfg | 2 +- xmake.lua | 2 +- 13 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4f52184..f69b7c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liba" -version = "0.1.9" +version = "0.1.10" authors = ["tqfx "] edition = "2018" description = "An algorithm library based on C/C++" diff --git a/cmake/Project.cmake b/cmake/Project.cmake index da5dd1d..f577684 100644 --- a/cmake/Project.cmake +++ b/cmake/Project.cmake @@ -1,4 +1,4 @@ -set(PROJECT_VERSION 0.1.9) +set(PROJECT_VERSION 0.1.10) 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 38b333b..239434d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ from conan.tools.cmake import CMakeToolchain, CMake class aConan(ConanFile): name = "liba" - version = "0.1.9" + version = "0.1.10" license = "MPL-2.0" topics = ("algorithm",) author = "tqfx tqfx@tqfx.org" diff --git a/doc/Doxyfile b/doc/Doxyfile index e114879..4241248 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -1,6 +1,6 @@ # Project related configuration options PROJECT_NAME = liba -PROJECT_NUMBER = 0.1.9 +PROJECT_NUMBER = 0.1.10 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 b27a7aa..86d4f28 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 9 +#define A_VERSION_PATCH 10 #endif /* A_VERSION_PATCH */ #undef patch /*! algorithm library version tweak */ #ifndef A_VERSION_TWEAK -#define A_VERSION_TWEAK 20240330 +#define A_VERSION_TWEAK 20240406 #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 1f0ff9c..f1cb8ec 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.9"; + VERSION = "0.1.10"; clinit(); } diff --git a/javascript/package.json b/javascript/package.json index 1b48cf4..c1e2aaa 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@tqfx/liba", - "version": "0.1.9", + "version": "0.1.10", "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 e55eb03..cfe9cc5 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.9" +liba.VERSION = "0.1.10" return liba diff --git a/meson.build b/meson.build index f5df494..a16ad3e 100644 --- a/meson.build +++ b/meson.build @@ -7,7 +7,7 @@ project('liba', 'c', 'cpp', 'buildtype=debugoptimized', ], license: 'MPL-2.0', - version: '0.1.9') + version: '0.1.10') a_have_h = configuration_data() a_have_h.set('version', meson.version()) diff --git a/script/autogen b/script/autogen index 5e99066..027300b 100755 --- a/script/autogen +++ b/script/autogen @@ -22,7 +22,7 @@ done echo "ACLOCAL_AMFLAGS = -I m4 lib_LTLIBRARIES = liba.la liba_la_CPPFLAGS = -std=c11 -liba_la_LDFLAGS = -version-info 1:9:1 +liba_la_LDFLAGS = -version-info 1:10:1 liba_la_SOURCES =$C_SOURCES autogen.sh liba_la_LIBADD = \$(liba_cc_la_OBJECTS) noinst_LTLIBRARIES = liba.cc.la diff --git a/script/configure.ac b/script/configure.ac index 3b0600e..0ace581 100644 --- a/script/configure.ac +++ b/script/configure.ac @@ -1,6 +1,6 @@ m4_define([version_major], [0]) m4_define([version_minor], [1]) -m4_define([version_patch], [9]) +m4_define([version_patch], [10]) m4_define([version], [version_major.version_minor.version_patch]) AC_INIT([liba], [version], [tqfx@tqfx.org]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/setup.cfg b/setup.cfg index 44e5b35..6a309b3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = liba -version = 0.1.9 +version = 0.1.10 url = https://github.com/tqfx/liba.git author = tqfx author_email = tqfx@tqfx.org diff --git a/xmake.lua b/xmake.lua index e6cb414..708f0ee 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.9", { build = "%Y%m%d" }) +set_version("0.1.10", { build = "%Y%m%d" }) -- option: liba-cxx option("liba-cxx") -- 2.11.4.GIT