From 5cd42b78472fea5d692e43535158ee4d16a05c59 Mon Sep 17 00:00:00 2001 From: badaix Date: Thu, 27 Feb 2020 22:05:53 +0100 Subject: [PATCH] Raise version number to 0.19.0 --- CMakeLists.txt | 2 +- changelog.md | 30 ++++++++++++++++++++++++++++++ debian/changelog | 6 ++++++ server/Makefile | 2 +- 4 files changed, 38 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d3cf93df..7bfe157e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.2) -project(snapcast LANGUAGES CXX VERSION 0.18.1) +project(snapcast LANGUAGES CXX VERSION 0.19.0) set(PROJECT_DESCRIPTION "Multi-room client-server audio player") set(PROJECT_URL "https://github.com/badaix/snapcast") diff --git a/changelog.md b/changelog.md index f6b37d66..3197efc4 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,35 @@ # Snapcast changelog +## Version 0.19.0 + +### Features + +- Option to not kill all running librespot instances (PR #539) +- Add Airplay cover art to metadata (PR #543) +- Anroid: add support for Oboe audio backend +- Server: configurable PID file (Issue #554) +- Server: configurable persistant storage directory (Issue #554) +- Server: config file options can be overwritten on command line +- Client: PCM stream can be resampled "--sampleformat" option + +### Bugfixes + +- Fix Airplay metadata, port selection and device names (PR #537) +- Fix cmake build when libatomic is needed (PR #540) +- Control: fix random crash (PR #543) + +### General + +- ALSA: improved latency estimation for better sync +- Improved audio synchronization +- Faster initial sync after client start and reconnect +- Less playback tempo adaptions and jitter (Issue #525) +- Playback is robust against system time changes (Issue #522) +- Control: quicker response to group volume changes +- Server uses less memory when sending PCM data to a stalled connection + +_Johannes Pohl Tue, 28 Jan 2020 00:13:37 +0200_ + ## Version 0.18.1 ### Bugfixes diff --git a/debian/changelog b/debian/changelog index b263a701..d6680fa3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +snapcast (0.19.0-1) unstable; urgency=medium + + * TODO + + -- Johannes Pohl Tue, 28 Jan 2020 00:13:37 +0200 + snapcast (0.18.1-1) unstable; urgency=medium * Bugfixes diff --git a/server/Makefile b/server/Makefile index 1a4e9171..24b70d4f 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.18.1 +VERSION = 0.19.0 BIN = snapserver ifeq ($(TARGET), FREEBSD)