Skip to content

Commit

Permalink
release 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tqfx committed Mar 30, 2024
1 parent a327008 commit 6446f9d
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liba"
version = "0.1.8"
version = "0.1.9"
authors = ["tqfx <tqfx@tqfx.org>"]
edition = "2018"
description = """
Expand Down
2 changes: 1 addition & 1 deletion cmake/Project.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(PROJECT_VERSION 0.1.8)
set(PROJECT_VERSION 0.1.9)
set(PROJECT_LICENSE MPL-2.0)
set(PROJECT_CONTACT tqfx@tqfx.org)
set(PROJECT_DESCRIPTION "An algorithm library based on C/C++ language")
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class aConan(ConanFile):
name = "liba"
version = "0.1.8"
version = "0.1.9"
license = "MPL-2.0"
topics = ("algorithm",)
author = "tqfx tqfx@tqfx.org"
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project related configuration options
PROJECT_NAME = liba
PROJECT_NUMBER = 0.1.8
PROJECT_NUMBER = 0.1.9
PROJECT_BRIEF = An algorithm library based on C/C++ language
OUTPUT_DIRECTORY = ../../build
CREATE_SUBDIRS = YES
Expand Down
4 changes: 2 additions & 2 deletions include/a/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@

/*! algorithm library version patch */
#ifndef A_VERSION_PATCH
#define A_VERSION_PATCH 8
#define A_VERSION_PATCH 9
#endif /* A_VERSION_PATCH */
#undef patch

/*! algorithm library version tweak */
#ifndef A_VERSION_TWEAK
#define A_VERSION_TWEAK 20240320
#define A_VERSION_TWEAK 20240330
#endif /* A_VERSION_TWEAK */

#define A_VERSION_TOSTR(X) A_CAST_1(X)
Expand Down
2 changes: 1 addition & 1 deletion java/src/liba.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class liba {
public static final String VERSION;
static {
System.loadLibrary("a");
VERSION = "0.1.8";
VERSION = "0.1.9";
clinit();
}

Expand Down
2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tqfx/liba",
"version": "0.1.8",
"version": "0.1.9",
"description": "An algorithm library based on C/C++ language.",
"main": "liba.js",
"types": "liba.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion lua/liba.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1673,6 +1673,6 @@ function liba.version.ne(lhs, rhs) end
---@return boolean
function version:ne(rhs) end

liba.VERSION = "0.1.8"
liba.VERSION = "0.1.9"

return liba
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ project('liba', 'c', 'cpp',
'buildtype=debugoptimized',
],
license: 'MPL-2.0',
version: '0.1.8')
version: '0.1.9')

a_have_h = configuration_data()
a_have_h.set('version', meson.version())
Expand Down
2 changes: 1 addition & 1 deletion script/autogen
Original file line number Diff line number Diff line change
Expand Up @@ -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:8:1
liba_la_LDFLAGS = -version-info 1:9:1
liba_la_SOURCES =$C_SOURCES autogen.sh
liba_la_LIBADD = \$(liba_cc_la_OBJECTS)
noinst_LTLIBRARIES = liba.cc.la
Expand Down
2 changes: 1 addition & 1 deletion script/configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
m4_define([version_major], [0])
m4_define([version_minor], [1])
m4_define([version_patch], [8])
m4_define([version_patch], [9])
m4_define([version], [version_major.version_minor.version_patch])
AC_INIT([liba], [version], [tqfx@tqfx.org])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = liba
version = 0.1.8
version = 0.1.9
url = https://github.com/tqfx/liba.git
author = tqfx
author_email = tqfx@tqfx.org
Expand Down
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set_project("liba")
set_xmakever("2.5.0")

-- set project version
set_version("0.1.8", { build = "%Y%m%d" })
set_version("0.1.9", { build = "%Y%m%d" })

-- option: liba-cxx
option("liba-cxx")
Expand Down

0 comments on commit 6446f9d

Please sign in to comment.