Skip to content

Commit

Permalink
Release 1.7.0 (#136)
Browse files Browse the repository at this point in the history
* Updated the change log

* Release v1.7.0

* Release v1.7.0
  • Loading branch information
GrahamCampbell authored and kattrali committed Jul 7, 2016
1 parent bd57838 commit 5475884
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
Changelog
=========

## 1.6.4 (9 Mar 2016)
## 1.7.0 (2016-06-24)

## Enhancements

* Let Laravel decide whether to report or not
[Phil Bates](https://github.com/philbates35)
[#97](https://github.com/bugsnag/bugsnag-laravel/pull/97)

## Bug Fixes

* Fixed version constraint
[Graham Campbell](https://github.com/GrahamCampbell)
[#111](https://github.com/bugsnag/bugsnag-laravel/pull/111)

* Ensure the api key is a string
[Graham Campbell](https://github.com/GrahamCampbell)
[57afd32](https://github.com/bugsnag/bugsnag-laravel/commit/57afd321273486d4f24a96d9eb3f0938278c9f4d)

## 1.6.4 (2016-03-09)

### Bug Fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function register()
$client->setReleaseStage($app->environment());
$client->setNotifier(array(
'name' => 'Bugsnag Laravel',
'version' => '1.6.4',
'version' => '1.7.0',
'url' => 'https://github.com/bugsnag/bugsnag-laravel',
));

Expand Down
8 changes: 4 additions & 4 deletions src/Bugsnag/BugsnagLaravel/BugsnagLumenServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ public function register()
$client->setBatchSending(false);
$client->setReleaseStage($app->environment());
$client->setNotifier(array(
'name' => 'Bugsnag Lumen',
'version' => '1.6.4',
'url' => 'https://github.com/bugsnag/bugsnag-laravel',
));
'name' => 'Bugsnag Lumen',
'version' => '1.7.0',
'url' => 'https://github.com/bugsnag/bugsnag-laravel',
));

if (isset($config['notify_release_stages']) && is_array($config['notify_release_stages'])) {
$client->setNotifyReleaseStages($config['notify_release_stages']);
Expand Down

0 comments on commit 5475884

Please sign in to comment.