Skip to content

Commit

Permalink
release 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
tqfx committed Jun 30, 2024
1 parent 89ec533 commit e3a55f3
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 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.13"
version = "0.1.14"
authors = ["tqfx <[email protected]>"]
description = "An algorithm library based on C/C++"
documentation = "https://docs.rs/liba"
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.13)
set(PROJECT_VERSION 0.1.14)
set(PROJECT_LICENSE MPL-2.0)
set(PROJECT_CONTACT [email protected])
set(PROJECT_DESCRIPTION "An algorithm library based on C/C++")
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 Conan(ConanFile):
name = "liba"
version = "0.1.13"
version = "0.1.14"
license = "MPL-2.0"
topics = ["algorithm"]
author = "tqfx [email protected]"
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.13
PROJECT_NUMBER = 0.1.14
PROJECT_BRIEF = An algorithm library based on C/C++
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 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)
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.13";
VERSION = "0.1.14";
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.13",
"version": "0.1.14",
"description": "An algorithm library based on C/C++",
"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.13"
liba.VERSION = "0.1.14"

return liba
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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())
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.13
version = 0.1.14
url = https://github.com/tqfx/liba
author = tqfx
author_email = [email protected]
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.13", { build = "%Y%m%d" })
set_version("0.1.14", { build = "%Y%m%d" })

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

0 comments on commit e3a55f3

Please sign in to comment.