From b5b8be5c4cc6b59f4ec276fed7d1ead4d32376a5 Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Sun, 30 Nov 2025 21:30:40 -0500 Subject: [PATCH] chore: version bumps --- CMakeLists.txt | 4 ++-- README.md | 4 ++-- cython/README.md | 4 ++-- docs/source/conf.py | 2 +- doxygen/CMakeLists.txt | 2 +- include/pocketsphinx.h | 4 ++-- pyproject.toml | 9 +++++---- 7 files changed, 15 insertions(+), 14 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1fa64b9d..eaba392d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ -cmake_minimum_required(VERSION 3.14) # I like pie +cmake_minimum_required(VERSION 3.25) -project(PocketSphinx VERSION 5.0.4 +project(PocketSphinx VERSION 5.1.0 DESCRIPTION "A small speech recognizer" HOMEPAGE_URL "https://github.com/cmusphinx/pocketsphinx" LANGUAGES C) diff --git a/README.md b/README.md index e986b666..9ce84cd1 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -PocketSphinx 5.0.4 -================== +PocketSphinx 5.1.0rc1 +===================== This is PocketSphinx, one of Carnegie Mellon University's open source large vocabulary, speaker-independent continuous speech recognition engines. diff --git a/cython/README.md b/cython/README.md index 3ee77f4e..0e8ce653 100644 --- a/cython/README.md +++ b/cython/README.md @@ -1,5 +1,5 @@ -PocketSphinx 5.0.4 -================== +PocketSphinx 5.1.0rc1 +===================== This is PocketSphinx, one of Carnegie Mellon University's open source large vocabulary, speaker-independent continuous speech recognition engines. diff --git a/docs/source/conf.py b/docs/source/conf.py index ce8be7f9..8b1ed491 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'David Huggins-Daines' # The full version, including alpha/beta/rc tags -release = '5.0.4' +release = '5.1.0rc1' # -- General configuration --------------------------------------------------- diff --git a/doxygen/CMakeLists.txt b/doxygen/CMakeLists.txt index e7e2f5c4..7eb92e67 100644 --- a/doxygen/CMakeLists.txt +++ b/doxygen/CMakeLists.txt @@ -1,6 +1,6 @@ find_package(Doxygen) if(DOXYGEN_FOUND) - set(DOXYGEN_PROJECT_NUMBER 5.0.4) + set(DOXYGEN_PROJECT_NUMBER 5.1.0rc1) set(DOXYGEN_EXAMPLE_PATH ${CMAKE_SOURCE_DIR}/examples) set(DOXYGEN_SORT_MEMBER_DOCS NO) set(DOXYGEN_USE_MATHJAX YES) diff --git a/include/pocketsphinx.h b/include/pocketsphinx.h index 884532fe..38c3cc60 100644 --- a/include/pocketsphinx.h +++ b/include/pocketsphinx.h @@ -1095,8 +1095,8 @@ void ps_get_all_time(ps_decoder_t *ps, double *out_nspeech, /** * @mainpage PocketSphinx API Documentation * @author David Huggins-Daines - * @version 5.0.4 - * @date January 10, 2025 + * @version 5.1.0rc1 + * @date November 30, 2025 * * @tableofcontents{HTML:1} * diff --git a/pyproject.toml b/pyproject.toml index 563f26be..17f34ea1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [build-system] requires = [ - "scikit-build-core", - "Cython" + "scikit-build-core>=0.10", + "Cython" ] build-backend = "scikit_build_core.build" [project] name = "pocketsphinx" -version = "5.1.0pre1" +version = "5.1.0rc1" description = "Official Python bindings for PocketSphinx" readme = "cython/README.md" authors = [ @@ -71,6 +71,7 @@ extend-ignore = "E203" max-line-length = "88" [tool.scikit-build] -cmake.verbose = true +minimum-version = "build-system.requires" +build.verbose = true logging.level = "INFO" wheel.packages = ["cython/pocketsphinx"]