Merge branch '1.1'

This commit is contained in:
An Phan 2015-12-29 13:28:15 +07:00
commit 8193797bba
3 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ class Application extends IlluminateApplication
*
* @link https://github.com/phanan/koel/releases
*/
const VERSION = 'v1.1.1';
const VERSION = 'v1.1.2';
/**
* We have merged public path and base path.

View file

@ -20,7 +20,7 @@ class PlaylistController extends Controller
$playlist = auth()->user()->playlists()->create($request->only('name'));
$playlist->songs()->sync($request->input('songs'));
$playlist->songs = $playlist->songs->fetch('id');
$playlist->songs = $playlist->songs->pluck('id');
return response()->json($playlist);
}

View file

@ -21,7 +21,7 @@ Back up your installation of Koel, including application files and database dump
``` bash
git fetch --all
git checkout v1.1.1
git checkout v1.1.2
```
#### 2. Upgrade Laravel, install packages, and migrate database