Skip to content

Commit

Permalink
chore: bump version 2.8.0 (#1854)
Browse files Browse the repository at this point in the history
  • Loading branch information
djaiss committed Sep 29, 2018
1 parent 113226e commit f6ca027
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
23 changes: 14 additions & 9 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
UNRELEASED CHANGES:

*

RELEASED VERSIONS:

v2.8.0 - 2018-09-28
-------------------

* Add ability to track life events
* Fix select boxes not working properly anymore
* Add ability to define the default email address used for support
* Add sentry:release command
* Add Envoy file template
* Add passport config file
* Add new variable APP_DISPLAY_NAME
* Rename env variable 2FA_ENABLED to MFA_ENABLED (2FA_ENABLED is still functional for compatibility reasons)
* Improve search
* Fix reminders displaying wrong date
* Add ability to define the default email address used for support
* Fix select boxes not working properly anymore
* Fix confirm email sent when signup_double_optin is false
* Fix now() without timezone functions
* Remove notion of events
* Support papertrail logging
* Add sentry:release command
* Add Envoy file template
* Add passport config file
* Add new variable APP_DISPLAY_NAME
* Rename variable 2FA_ENABLED to MFA_ENABLED (2FA_ENABLED is still functional for compatibility reasons)

RELEASED VERSIONS:

v2.7.1 - 2018-09-05
-------------------
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.7.1',
'app_version' => '2.8.0',

/*
|--------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ public function up()
You can now log major life events that happen to a contact. Like if the contact has had a surgery, or where he travelled to. You have access to nearly 50 different possible life events to document what happens to the people you care about.
![image](/img/changelogs/2018-09-24-life-events.png)';
![image](/img/changelogs/2018-09-28-life-events.png)';

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

$instance = Instance::first();
Expand Down

0 comments on commit f6ca027

Please sign in to comment.