From 7a36f1b6a47b7084a575131c71850b0e91787a0f Mon Sep 17 00:00:00 2001 From: Mohamed Alsharaf Date: Fri, 19 Aug 2016 21:17:43 +1200 Subject: [PATCH] Misc: increment version & update changes doc --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- app/Providers/ConfigServiceProvider.php | 4 ++-- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a62912b88..989224b8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Tiny Issue Change Log +## Tiny Issue v2.9.0 + +- Feature: Messaging system (Send project updates notifications). +- Change: show resolution tags in kanban items. +- Change: show issue tags in "Your issues" page. +- Feature: ability to delete an issue. +- Feature: automatically make issue read-only to specific user roles based on the current status tag. +- Feature: ability to delete an attachment from a comment. +- Feature: allow admin to enter new user password. +- Feature: allow manager to lock issue quote. +- Change: allow users with User Role to view their created issues. +- Feature: added new project visibility status (Internal). Users with User Role can only view their created issues. +- Feature: add global setting to set default language for new users. +- Feature: admin setting to turn on/off maintenance mode. +- Other bug fixes & improvements. + ## Tiny Issue v2.7.1 - Bug fixes. diff --git a/README.md b/README.md index c0e1be98c..6a0cbd874 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Tiny Issue v2.7.1 - for Laravel 5.1+ +# Tiny Issue v2.9.0 - for Laravel 5.1+ [![Build Status](https://travis-ci.org/satrun77/tinyissue.svg?branch=master&?style=flat-square)](https://travis-ci.org/satrun77/tinyissue) [![SensioLabsInsight](https://insight.sensiolabs.com/projects/a6c6ecdf-13f6-4e51-a9f0-f1fffebf1fdd/mini.png)](https://insight.sensiolabs.com/projects/a6c6ecdf-13f6-4e51-a9f0-f1fffebf1fdd) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/satrun77/tinyissue/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/satrun77/tinyissue/?branch=master) diff --git a/app/Providers/ConfigServiceProvider.php b/app/Providers/ConfigServiceProvider.php index 4cfb90b3f..033e2d566 100644 --- a/app/Providers/ConfigServiceProvider.php +++ b/app/Providers/ConfigServiceProvider.php @@ -30,8 +30,8 @@ class ConfigServiceProvider extends ServiceProvider public function register() { config([ - 'tinyissue.release_date' => '23-05-2016', - 'tinyissue.version' => '2.7.1', + 'tinyissue.release_date' => '19-08-2016', + 'tinyissue.version' => '2.9.0', 'tinyissue.uploads_dir' => env('APP_UPLOAD_DIR', 'uploads'), ]); }