Skip to content

Commit

Permalink
v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
snmaynard committed Jul 1, 2015
1 parent 1a366f4 commit 09015a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.5.1
-----
- Lumen Service Provider use statement

1.5.0
-----
- Lumen support
Expand Down
4 changes: 2 additions & 2 deletions src/Bugsnag/BugsnagLaravel/BugsnagLaravelServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function register()
$client->setReleaseStage($app->environment());
$client->setNotifier(array(
'name' => 'Bugsnag Laravel',
'version' => '1.5.0',
'version' => '1.5.1',
'url' => 'https://github.com/bugsnag/bugsnag-laravel'
));

Expand All @@ -87,7 +87,7 @@ public function register()
if ($app['auth']->check()) {
// User is logged in.
$user = $app['auth']->user();

// If these attributes are available: pass them on.
$client->setUser(array('id' => $user->getAuthIdentifier()));
}
Expand Down
2 changes: 1 addition & 1 deletion src/Bugsnag/BugsnagLaravel/BugsnagLumenServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function register()
$client->setReleaseStage($app->environment());
$client->setNotifier(array(
'name' => 'Bugsnag Lumen',
'version' => '1.5.0',
'version' => '1.5.1',
'url' => 'https://github.com/bugsnag/bugsnag-laravel'
));

Expand Down

0 comments on commit 09015a9

Please sign in to comment.