Skip to content

Commit

Permalink
v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ConradIrwin committed May 29, 2015
1 parent d2c284e commit 0b336de
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

1.5.0
-----
- Lumen support
- Fix bug in instructions
- Fix bug with reading settings from service file

1.4.2
-----
- Try/catch for missing/nonstandard auth service
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Releasing
=========

1. Commit all outstanding changes
1. Bump the version in `src/Bugsnag/BugsnagLaravel/BugsnagLaravelServiceProvider.php`.
1. Bump the version in `src/Bugsnag/BugsnagLaravel/BugsnagLaravelServiceProvider.php` and `src/Bugsnag/BugsnagLaravel/BugsnagLumenServiceProvider.php`
2. Update the CHANGELOG.md, and README if appropriate.
3. Commit, tag push

Expand Down
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.4.2',
'version' => '1.5.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 @@ -40,7 +40,7 @@ public function register()
$client->setReleaseStage($app->environment());
$client->setNotifier(array(
'name' => 'Bugsnag Lumen',
'version' => '1.4.2',
'version' => '1.5.0',
'url' => 'https://github.com/bugsnag/bugsnag-laravel'
));

Expand Down

0 comments on commit 0b336de

Please sign in to comment.