diff --git a/changelog.md b/changelog.md index ab501b0..e729fbf 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6.0] - 2022-07-08 + +### Added + +- Add sample example for AIOHTTP Framework + +### Changed + +- Improve AIOHTTP middleware with APM support of Jinja Template, SqlAlchemy + +### Fixed + +- Fix for AIOHTTP middleware's "none type object has no attribute while handling error" + ## [1.5.0] - 2022-06-07 ### Added diff --git a/src/pybrake/constant.py b/src/pybrake/constant.py index d29dc0b..54cfd1b 100644 --- a/src/pybrake/constant.py +++ b/src/pybrake/constant.py @@ -2,7 +2,7 @@ notifier_name = "pybrake" # Pybrake Notifier Version -version = "1.5.0" +version = "1.6.0" # End point of Airbrake API host. That will always be as default value. AIRBRAKE_HOST = "https://api.airbrake.io"