From 440144a23e6dc6e11d0462779e7b89aa5abff11b Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Mon, 14 Sep 2015 16:32:31 +0930 Subject: [PATCH] Bump version number --- framework/core/CHANGELOG.md | 10 +++++++--- framework/core/src/Core/Application.php | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/framework/core/CHANGELOG.md b/framework/core/CHANGELOG.md index 97ad0a6e7..21b6e9f06 100644 --- a/framework/core/CHANGELOG.md +++ b/framework/core/CHANGELOG.md @@ -1,11 +1,11 @@ # Change Log -All notable changes to Flarum will be documented in this file. +All notable changes to Flarum and its bundled extensions will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] *nothing yet* -## [0.1.0-beta.2] - 2015-09-13 +## [0.1.0-beta.2] - 2015-09-14 ### Added - Check prerequisites (PHP version, extensions, etc.) before installation (#364) - Enforce maximum title and post length through validation (#53, #338) @@ -23,7 +23,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Discussion list did not work with non-empty database prefix (#269, #380) - Non-admins could not reset their password (#229) - Requests ending with a slash resulted in a 404 (#334) -- Sometimes, tags could not be dragged for reordering in the admin panel (#341) - In rare cases, posts did not load correctly (#295) - Avatars did not show up when installed in a subfolder (#291) - Installer crashed when views directory was not writable (#376) @@ -32,6 +31,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Invalid custom CSS could crash the application (#400) - First posts could not be restored or deleted - Several design bugs +- Set cookies to be HTTP-only +- Tags: Sometimes, tags could not be dragged for reordering in the admin panel (#341) +- Suspend: Use correct column name in when migrating database +- Lock: Check for correct permission when displaying lock control +- Likes: Allow liking permissions to be configured ## 0.1.0-beta - 2015-08-27 First Version diff --git a/framework/core/src/Core/Application.php b/framework/core/src/Core/Application.php index b3de34329..aa4972478 100644 --- a/framework/core/src/Core/Application.php +++ b/framework/core/src/Core/Application.php @@ -27,7 +27,7 @@ class Application extends Container implements ApplicationContract * * @var string */ - const VERSION = '0.1.0-beta'; + const VERSION = '0.1.0-beta.2'; /** * The base path for the Laravel installation.