Skip to content

Commit 8facc8b

Browse files
authored
chore: bump version to 2.7.0 (#1779)
1 parent 4ba763d commit 8facc8b

File tree

4 files changed

+43
-7
lines changed

4 files changed

+43
-7
lines changed

CHANGELOG

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
UNRELEASED CHANGES:
22

3+
*
4+
5+
RELEASED VERSIONS:
6+
7+
v2.7.0 - 2018-09-04
8+
-------------------
9+
310
* Add ability to log conversations made on social networks or SMS
4-
* Fix gifts not showing when value was not set
5-
* Fix phpunit not parsing all test files
6-
* Improve automatic route binding
11+
* Add language selector on register page
712
* Support Arabic language
13+
* Improve automatic route binding
814
* Split app css in two files for better support of ltr/rtl text direction
915
* Add helper function htmldir()
16+
* Fix gifts not showing when value was not set
17+
* Fix phpunit not parsing all test files
1018
* Fix login remember with 2fa and u2f enabled
1119
* Fix gender update
1220
* Fix how comparing version is done
@@ -15,9 +23,6 @@ UNRELEASED CHANGES:
1523
* Fix subscription cancel on account deletion
1624
* Fix email maximum size on settings
1725
* Fix reminder link in email sent
18-
* Add language selector on register page
19-
20-
RELEASED VERSIONS:
2126

2227
v2.6.0 - 2018-08-17
2328
-------------------

config/monica.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
| bad things will happen.
1313
|
1414
*/
15-
'app_version' => '2.6.0',
15+
'app_version' => '2.7.0',
1616

1717
/*
1818
|--------------------------------------------------------------------------
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php
2+
3+
use App\Models\Instance\Instance;
4+
use Illuminate\Support\Facades\DB;
5+
use Illuminate\Database\Migrations\Migration;
6+
7+
class UpdateChangelogForConversations extends Migration
8+
{
9+
/**
10+
* Run the migrations.
11+
*
12+
* @return void
13+
*/
14+
public function up()
15+
{
16+
$description = '
17+
**New feature: conversations**
18+
19+
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.
20+
21+
![image](/img/changelogs/2018-09-04-conversations.png)';
22+
23+
$id = DB::table('changelogs')->insertGetId([
24+
'description' => $description,
25+
'created_at' => '2018-09-04',
26+
]);
27+
28+
$instance = Instance::first();
29+
$instance->addUnreadChangelogEntry($id);
30+
}
31+
}
22.9 KB
Loading

0 commit comments

Comments
 (0)