Skip to content

Commit

Permalink
chore: bump version to 2.7.0 (#1779)
Browse files Browse the repository at this point in the history
  • Loading branch information
djaiss committed Sep 5, 2018
1 parent 4ba763d commit 8facc8b
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 7 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
UNRELEASED CHANGES:

*

RELEASED VERSIONS:

v2.7.0 - 2018-09-04
-------------------

* Add ability to log conversations made on social networks or SMS
* Fix gifts not showing when value was not set
* Fix phpunit not parsing all test files
* Improve automatic route binding
* Add language selector on register page
* Support Arabic language
* Improve automatic route binding
* Split app css in two files for better support of ltr/rtl text direction
* Add helper function htmldir()
* Fix gifts not showing when value was not set
* Fix phpunit not parsing all test files
* Fix login remember with 2fa and u2f enabled
* Fix gender update
* Fix how comparing version is done
Expand All @@ -15,9 +23,6 @@ UNRELEASED CHANGES:
* Fix subscription cancel on account deletion
* Fix email maximum size on settings
* Fix reminder link in email sent
* Add language selector on register page

RELEASED VERSIONS:

v2.6.0 - 2018-08-17
-------------------
Expand Down
2 changes: 1 addition & 1 deletion config/monica.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
| bad things will happen.
|
*/
'app_version' => '2.6.0',
'app_version' => '2.7.0',

/*
|--------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php

use App\Models\Instance\Instance;
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Migrations\Migration;

class UpdateChangelogForConversations extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$description = '
**New feature: conversations**
You can now log conversations that you have on social media or SMS or else. While you could already do that using notes, conversations is an easier way to record them using a nice user interface.
![image](/img/changelogs/2018-09-04-conversations.png)';

$id = DB::table('changelogs')->insertGetId([
'description' => $description,
'created_at' => '2018-09-04',
]);

$instance = Instance::first();
$instance->addUnreadChangelogEntry($id);
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8facc8b

Please sign in to comment.