Skip to content

Commit d869196

Browse files
committed
release: Bump version to 1.0.4 for TTS utilities, FFmpeg decoding, and expanded bindings
1 parent d7611f1 commit d869196

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.16)
2-
project(libsonare VERSION 1.0.3 LANGUAGES C CXX)
2+
project(libsonare VERSION 1.0.4 LANGUAGES C CXX)
33

44
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "libsonare"
7-
version = "1.0.3"
7+
version = "1.0.4"
88
description = "Fast audio analysis library with C++ and Python bindings"
99
requires-python = ">=3.11"
1010
license = "Apache-2.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libraz/libsonare",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"type": "module",
55
"packageManager": "yarn@4.12.0",
66
"description": "Audio analysis library for music information retrieval",

src/sonare.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
// Version information
88
#define SONARE_VERSION_MAJOR 1
99
#define SONARE_VERSION_MINOR 0
10-
#define SONARE_VERSION_PATCH 3
11-
#define SONARE_VERSION_STRING "1.0.3"
10+
#define SONARE_VERSION_PATCH 4
11+
#define SONARE_VERSION_STRING "1.0.4"
1212

1313
// Utility
1414
#include "util/exception.h"

0 commit comments

Comments
 (0)