Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
snmaynard committed Jul 14, 2015
1 parent 482617a commit e806606
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

1.6.0
-----
- Move to using .env for api key in laravel 5+
- Support for artisan vendor:publish

1.5.1
-----
- Lumen Service Provider use statement
Expand Down
2 changes: 1 addition & 1 deletion example/laravel-5.1/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"bugsnag/bugsnag-laravel": "1.*"
"bugsnag/bugsnag-laravel": "dev-master"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
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.5.1',
'version' => '1.6.0',
'url' => 'https://github.com/bugsnag/bugsnag-laravel'
));

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.1',
'version' => '1.6.0',
'url' => 'https://github.com/bugsnag/bugsnag-laravel'
));

Expand Down

0 comments on commit e806606

Please sign in to comment.