Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions cython/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion doxygen/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions include/pocketsphinx.h
Original file line number Diff line number Diff line change
Expand Up @@ -1095,8 +1095,8 @@ void ps_get_all_time(ps_decoder_t *ps, double *out_nspeech,
/**
* @mainpage PocketSphinx API Documentation
* @author David Huggins-Daines <dhdaines@gmail.com>
* @version 5.0.4
* @date January 10, 2025
* @version 5.1.0rc1
* @date November 30, 2025
*
* @tableofcontents{HTML:1}
*
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down Expand Up @@ -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"]
Loading