Skip to content

Commit

Permalink
Raise version number to v0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
badaix committed Jan 22, 2020
1 parent a575e9d commit 1f1c009
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.2)

project(snapcast LANGUAGES CXX VERSION 0.17.1)
project(snapcast LANGUAGES CXX VERSION 0.18.0)
set(PROJECT_DESCRIPTION "Multi-room client-server audio player")
set(PROJECT_URL "https://github.com/badaix/snapcast")

Expand Down
22 changes: 22 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Snapcast changelog

## Version 0.18.0

### Features

- Add TCP stream reader

### Bugfixes

- Client: fix hostname reporting on Android
- Fix some small memory leaks
- Fix Librespot stream causing zombie processes (Issue #530)
- Process stream watchdog is configurable (Issue #517)
- Fix Makefile for macOS (Issues #510, #514)

### General

- Refactored stream readers
- Server can run on a single thread
- Configurable number of server worker threads

_Johannes Pohl <[email protected]> Wed, 22 Jan 2020 00:13:37 +0200_

## Version 0.17.1

### Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion client/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

VERSION = 0.17.1
VERSION = 0.18.0
BIN = snapclient

ifeq ($(TARGET), FREEBSD)
Expand Down
17 changes: 17 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
snapcast (0.18.0-1) unstable; urgency=medium

* Features
-Add TCP stream reader
* Bugfixes
-Client: fix hostname reporting on Android
-Fix some small memory leaks
-Fix Librespot stream causing zombie processes (Issue #530)
-Process stream watchdog is configurable (Issue #517)
-Fix Makefile for macOS (Issues #510, #514)
* General
-Refactored stream readers
-Server can run on a single thread
-Configurable number of server worker threads

-- Johannes Pohl <[email protected]> Wed, 22 Jan 2020 00:13:37 +0200

snapcast (0.17.1-1) unstable; urgency=medium

* Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

VERSION = 0.17.1
VERSION = 0.18.0
BIN = snapserver

ifeq ($(TARGET), FREEBSD)
Expand Down

1 comment on commit 1f1c009

@KraigoMpls
Copy link

@KraigoMpls KraigoMpls commented on 1f1c009 Jan 25, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this mean that as of v18, the TCP stream is now part of the master stream and I no longer have to put it off because I don't have time to mess with the compilation process? :-)

If so, you're making the upgrade very compelling.

KO

Please sign in to comment.