Skip to content

Commit

Permalink
Release 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean85 committed Aug 7, 2017
1 parent 15c2076 commit 70ecbbf
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## 0.8.3 - 2017-08-07
### Changed
- Migrate all the options from the config root to `sentry.options` (#68); the affected options are still usable in the old form, but they will generate deprecation notices. They will be dropped in the 1.0 release.

Before:
```yaml
sentry:
app_path: ~
environment: ~
error_types: ~
excluded_app_paths: ~
prefixes: ~
release: ~
```
After:
```yaml
sentry:
options:
app_path: ~
environment: ~
error_types: ~
excluded_app_paths: ~
prefixes: ~
release: ~
```
- Migrate from PSR-0 to PSR-4
## 0.8.2 - 2017-07-28
### Fixed
- Fix previous release with cherry pick of the right commit from #67
Expand Down
2 changes: 1 addition & 1 deletion src/Sentry/SentryBundle/SentryBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

class SentryBundle extends Bundle
{
const VERSION = '0.8.2';
const VERSION = '0.8.3';
}

0 comments on commit 70ecbbf

Please sign in to comment.