From ae25e05a73351a04ddadd9e8c431021f5047e5c1 Mon Sep 17 00:00:00 2001 From: badaix Date: Wed, 15 Dec 2021 11:08:18 +0100 Subject: [PATCH] Raise version to v0.26.0 --- CMakeLists.txt | 2 +- changelog.md | 21 ++++++++++++++++++++- client/Makefile | 2 +- debian/changelog | 18 +++++++++++++++++- server/Makefile | 2 +- 5 files changed, 40 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e3713eb..d0464dde 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.2) -project(snapcast LANGUAGES CXX VERSION 0.25.0) +project(snapcast LANGUAGES CXX VERSION 0.26.0) set(PROJECT_DESCRIPTION "Multiroom client-server audio player") set(PROJECT_URL "https://github.com/badaix/snapcast") diff --git a/changelog.md b/changelog.md index 6f76e582..5733d524 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,24 @@ # Snapcast changelog +## Version 0.26.0 + +### Features + +- Client: Disconnect from pulse when no audio is available (Issue #927, PR #931) +- Server: New Metadata API for audio streams (Issue #803, #953) +- Server: New Control API for audio streams (Issue #954) +- Server: Lowered minimum buffer from 400ms to 20ms (Issue #329) + +### Bugfixes + +- Server: systemd.unit starts server after network-online (Issue #950) + +### General + +- Update documentation (Issue #804, PR #945) + +_Johannes Pohl Fri, 24 Dec 2021 00:13:37 +0200_ + ## Version 0.25.0 ### Features @@ -9,7 +28,7 @@ ### Bugfixes -- Client: Fix crash on Windows when system volume changes (PR #838) +- Client: Fix crash on Windows when system volume changes (PR #838) - Client: Removed a log message to stdout for file player backend (Issue #681) - Server: Fix percent-decoding for stream URIs (Issue #850) - Server: Fix double quotes in Airplay device names (Issue #851) diff --git a/client/Makefile b/client/Makefile index 735448d4..e55314a2 100644 --- a/client/Makefile +++ b/client/Makefile @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -VERSION = 0.25.0 +VERSION = 0.26.0 BIN = snapclient ifeq ($(TARGET), FREEBSD) diff --git a/debian/changelog b/debian/changelog index c98d1ccf..c579bb13 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +snapcast (0.26.0-1) unstable; urgency=medium + + * Features + -Client: Disconnect from pulse when no audio is available (Issue #927, PR #931) + -Server: New Metadata API for audio streams (Issue #803, #953) + -Server: New Control API for audio streams (Issue #954) + -Server: Lowered minimum buffer from 400ms to 20ms (Issue #329) + + * Bugfixes + -Server: systemd.unit starts server after network-online (Issue #950) + + * General + -Update documentation (Issue #804, PR #945) + + -- Johannes Pohl Fri, 24 May 2021 00:13:37 +0200 + snapcast (0.25.0-1) unstable; urgency=medium * Features @@ -5,7 +21,7 @@ snapcast (0.25.0-1) unstable; urgency=medium -Server: Configurable amplitute for silence detection in alsa stream (Issue #846) * Bugfixes - -Client: Fix crash on Windows when system volume changes (PR #838) + -Client: Fix crash on Windows when system volume changes (PR #838) -Client: Removed a log message to stdout for file player backend (Issue #681) -Server: Fix percent-decoding for stream URIs (Issue #850) -Server: Fix double quotes in Airplay device names (Issue #851) diff --git a/server/Makefile b/server/Makefile index e8c1625a..3bd277b0 100644 --- a/server/Makefile +++ b/server/Makefile @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -VERSION = 0.25.0 +VERSION = 0.26.0 BIN = snapserver ifeq ($(TARGET), FREEBSD)