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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ public APIs may still change while the backend design stabilizes.

## [Unreleased]

## [0.2.0a3] - 2026-06-12

### Changed

- Refactored native ring-buffer and stream-stat helpers without changing public
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "tachyaudio"
version = "0.2.0a2"
version = "0.2.0a3"
description = "Low-level audio primitives for tachypy and Python experiments."
readme = "README.md"
license = { file = "LICENSE" }
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [
{ name = "tachyaudio contributors" }
Expand All @@ -16,7 +17,6 @@ classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 2 additions & 0 deletions src/tachyaudio/_native.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ static PyObject *tachy_build_stream_stats(
return stats;
}

#ifdef __linux__
static PyObject *tachy_build_stream_stats_without_hardware_latency(
unsigned long long frames_processed,
unsigned int underruns,
Expand All @@ -107,6 +108,7 @@ static PyObject *tachy_build_stream_stats_without_hardware_latency(
"buffer_size", buffer_size
);
}
#endif

#ifdef __linux__
#define MA_NO_DECODING
Expand Down
2 changes: 1 addition & 1 deletion src/tachyaudio/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0a2"
__version__ = "0.2.0a3"
Loading