Skip to content

Commit

Permalink
Misc: increment version & update changes doc
Browse files Browse the repository at this point in the history
  • Loading branch information
satrun77 committed Aug 19, 2016
1 parent cc24441 commit 7a36f1b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions app/Providers/ConfigServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
]);
}
Expand Down

4 comments on commit 7a36f1b

@nickbe
Copy link

@nickbe nickbe commented on 7a36f1b Oct 11, 2016

Choose a reason for hiding this comment

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

Hi Mohammed, although I was absent these last weeks I saw all the commits here.
I can only admire how busy you were working on version 3.0. 😮

Is version 3 in a state where I can already try it?

@satrun77
Copy link
Owner Author

Choose a reason for hiding this comment

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

I upgraded to Laravel 5.3, replaced the role/permission setup with Laravel standard code, re-arranged some of the code.

I was working a lot on the new version, also in a rush. There were some experiments and most of the commits are same text message.

The branch develop-3.0 contains version 3 changes. It passed the automated, but I have not viewed the site. You can try install the site separately and find out if its working.

I need to clean out all the random commits and make sure the code does not includes side notes and un-wanted code.

@nickbe
Copy link

@nickbe nickbe commented on 7a36f1b Oct 12, 2016

Choose a reason for hiding this comment

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

Well then I'll try and install 3.0 tomorrow night. You already want bug reports or is it too early for that?

@satrun77
Copy link
Owner Author

Choose a reason for hiding this comment

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

If something not working just log it here: https://gitter.im/satrun77/tinyissue_version3

Please sign in to comment.