From 355931d136ba1f92c68ce65f0c79f0765e4f706b Mon Sep 17 00:00:00 2001 From: tqfx Date: Thu, 29 Feb 2024 10:16:31 +0800 Subject: [PATCH] release 0.1.6 --- 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 02ad32f..4f37603 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liba" -version = "0.1.5" +version = "0.1.6" authors = ["tqfx "] edition = "2018" description = """ diff --git a/cmake/Project.cmake b/cmake/Project.cmake index d2c9e8c..8bafec4 100644 --- a/cmake/Project.cmake +++ b/cmake/Project.cmake @@ -1,4 +1,4 @@ -set(PROJECT_VERSION 0.1.5) +set(PROJECT_VERSION 0.1.6) set(PROJECT_LICENSE MPL-2.0) set(PROJECT_CONTACT tqfx@tqfx.org) set(PROJECT_DESCRIPTION "An algorithm library based on C/C++ language") diff --git a/conanfile.py b/conanfile.py index 48720a4..cc7afb2 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.5" + version = "0.1.6" license = "MPL-2.0" topics = ("algorithm",) author = "tqfx tqfx@tqfx.org" diff --git a/doc/Doxyfile b/doc/Doxyfile index d9f2396..7318b8a 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -1,6 +1,6 @@ # Project related configuration options PROJECT_NAME = liba -PROJECT_NUMBER = 0.1.5 +PROJECT_NUMBER = 0.1.6 PROJECT_BRIEF = An algorithm library based on C/C++ language OUTPUT_DIRECTORY = ../../build CREATE_SUBDIRS = YES diff --git a/include/a/version.h b/include/a/version.h index a4091ba..e584bfa 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 5 +#define A_VERSION_PATCH 6 #endif /* A_VERSION_PATCH */ #undef patch /*! algorithm library version tweak */ #ifndef A_VERSION_TWEAK -#define A_VERSION_TWEAK 20240224 +#define A_VERSION_TWEAK 20240229 #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 47e16d2..471ee49 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.5"; + VERSION = "0.1.6"; clinit(); } diff --git a/javascript/package.json b/javascript/package.json index df580f7..1b462e7 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@tqfx/liba", - "version": "0.1.5", + "version": "0.1.6", "description": "An algorithm library based on C/C++ language.", "main": "liba.js", "types": "liba.d.ts", diff --git a/lua/liba.lua b/lua/liba.lua index 329cb38..562e7b8 100644 --- a/lua/liba.lua +++ b/lua/liba.lua @@ -1672,6 +1672,6 @@ function liba.version.ne(lhs, rhs) end ---@return boolean function version:ne(rhs) end -liba.VERSION = "0.1.5" +liba.VERSION = "0.1.6" return liba diff --git a/meson.build b/meson.build index 41945c0..867e419 100644 --- a/meson.build +++ b/meson.build @@ -7,7 +7,7 @@ project('liba', 'c', 'cpp', 'buildtype=debugoptimized', ], license: 'MPL-2.0', - version: '0.1.5') + version: '0.1.6') a_have_h = configuration_data() a_have_h.set('version', meson.version()) diff --git a/script/autogen b/script/autogen index c847399..ca18ca0 100755 --- a/script/autogen +++ b/script/autogen @@ -25,7 +25,7 @@ done echo "ACLOCAL_AMFLAGS = -I m4 lib_LTLIBRARIES = liba.la liba_la_CPPFLAGS = -std=c11 -liba_la_LDFLAGS = -version-info 1:5:1 +liba_la_LDFLAGS = -version-info 1:6:1 liba_la_SOURCES =$C_SOURCES autogen.sh liba_la_LIBADD = \$(liba__la_OBJECTS) noinst_LTLIBRARIES = liba+.la diff --git a/script/configure.ac b/script/configure.ac index d51120a..5f90332 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], [5]) +m4_define([version_patch], [6]) 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 957e1c6..635b442 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = liba -version = 0.1.5 +version = 0.1.6 url = https://github.com/tqfx/liba.git author = tqfx author_email = tqfx@tqfx.org diff --git a/xmake.lua b/xmake.lua index c6a65f3..7ca894c 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.5", { build = "%Y%m%d" }) +set_version("0.1.6", { build = "%Y%m%d" }) -- option: liba-cxx option("liba-cxx") -- 2.11.4.GIT