Skip to content

Commit 6d05840

Browse files
authored
Release v2.1.14 (#411)
1 parent 3c4dbcb commit 6d05840

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ endif()
55
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
66
project(sherpa-ncnn)
77

8-
set(SHERPA_NCNN_VERSION "2.1.13")
8+
set(SHERPA_NCNN_VERSION "2.1.14")
99

1010
# Disable warning about
1111
#

new-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
set -ex
44

5-
old_version="2\.1\.12"
6-
new_version="2\.1\.13"
5+
old_version="2\.1\.13"
6+
new_version="2\.1\.14"
77

88
replace_str="s/$old_version/$new_version/g"
99

scripts/wheel/sherpa-ncnn-bin/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def is_windows():
1313

1414
setup(
1515
name="sherpa-ncnn-bin",
16-
version="2.1.13",
16+
version="2.1.14",
1717
description="Binary executables for sherpa-ncnn",
1818
author="The sherpa-ncnn development team",
1919
url="https://github.com/k2-fsa/sherpa-ncnn",
@@ -23,7 +23,7 @@ def is_windows():
2323
packages=[],
2424
data_files=[("Scripts", bin_files) if is_windows() else ("bin", bin_files)],
2525
install_requires=[
26-
"sherpa-ncnn-core==2.1.13",
26+
"sherpa-ncnn-core==2.1.14",
2727
],
2828
classifiers=[
2929
"Programming Language :: Python :: 3",

scripts/wheel/sherpa-ncnn-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_binaries():
2121

2222
setup(
2323
name="sherpa-ncnn-core",
24-
version="2.1.13",
24+
version="2.1.14",
2525
description="Core shared libraries for sherpa-ncnn",
2626
packages=["sherpa_ncnn"],
2727
include_package_data=True,

sherpa-ncnn/csrc/version.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
namespace sherpa_ncnn {
88

99
const char *GetGitDate() {
10-
static const char *date = "Wed Sep 3 23:39:44 2025";
10+
static const char *date = "Fri Sep 5 23:27:34 2025";
1111
return date;
1212
}
1313

1414
const char *GetGitSha1() {
15-
static const char *sha1 = "b0928b0e";
15+
static const char *sha1 = "3c4dbcbf";
1616
return sha1;
1717
}
1818

1919
const char *GetVersionStr() {
20-
static const char *version = "2.1.13";
20+
static const char *version = "2.1.14";
2121
return version;
2222
}
2323

0 commit comments

Comments
 (0)