Skip to content

Commit 64875c0

Browse files
authored
Merge pull request #450 from cmusphinx/version_bump_510rc1
Bump versions for 5.1.0-rc1 prerelease
2 parents 7930438 + b5b8be5 commit 64875c0

7 files changed

Lines changed: 15 additions & 14 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
cmake_minimum_required(VERSION 3.14) # I like pie
1+
cmake_minimum_required(VERSION 3.25)
22

3-
project(PocketSphinx VERSION 5.0.4
3+
project(PocketSphinx VERSION 5.1.0
44
DESCRIPTION "A small speech recognizer"
55
HOMEPAGE_URL "https://github.com/cmusphinx/pocketsphinx"
66
LANGUAGES C)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
PocketSphinx 5.0.4
2-
==================
1+
PocketSphinx 5.1.0rc1
2+
=====================
33

44
This is PocketSphinx, one of Carnegie Mellon University's open source large
55
vocabulary, speaker-independent continuous speech recognition engines.

cython/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
PocketSphinx 5.0.4
2-
==================
1+
PocketSphinx 5.1.0rc1
2+
=====================
33

44
This is PocketSphinx, one of Carnegie Mellon University's open source large
55
vocabulary, speaker-independent continuous speech recognition engines.

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'David Huggins-Daines'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '5.0.4'
25+
release = '5.1.0rc1'
2626

2727

2828
# -- General configuration ---------------------------------------------------

doxygen/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
find_package(Doxygen)
22
if(DOXYGEN_FOUND)
3-
set(DOXYGEN_PROJECT_NUMBER 5.0.4)
3+
set(DOXYGEN_PROJECT_NUMBER 5.1.0rc1)
44
set(DOXYGEN_EXAMPLE_PATH ${CMAKE_SOURCE_DIR}/examples)
55
set(DOXYGEN_SORT_MEMBER_DOCS NO)
66
set(DOXYGEN_USE_MATHJAX YES)

include/pocketsphinx.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,8 +1095,8 @@ void ps_get_all_time(ps_decoder_t *ps, double *out_nspeech,
10951095
/**
10961096
* @mainpage PocketSphinx API Documentation
10971097
* @author David Huggins-Daines <dhdaines@gmail.com>
1098-
* @version 5.0.4
1099-
* @date January 10, 2025
1098+
* @version 5.1.0rc1
1099+
* @date November 30, 2025
11001100
*
11011101
* @tableofcontents{HTML:1}
11021102
*

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[build-system]
22
requires = [
3-
"scikit-build-core",
4-
"Cython"
3+
"scikit-build-core>=0.10",
4+
"Cython"
55
]
66
build-backend = "scikit_build_core.build"
77

88
[project]
99
name = "pocketsphinx"
10-
version = "5.1.0pre1"
10+
version = "5.1.0rc1"
1111
description = "Official Python bindings for PocketSphinx"
1212
readme = "cython/README.md"
1313
authors = [
@@ -71,6 +71,7 @@ extend-ignore = "E203"
7171
max-line-length = "88"
7272

7373
[tool.scikit-build]
74-
cmake.verbose = true
74+
minimum-version = "build-system.requires"
75+
build.verbose = true
7576
logging.level = "INFO"
7677
wheel.packages = ["cython/pocketsphinx"]

0 commit comments

Comments
 (0)