diff --git a/changelog.md b/changelog.md index d8634e4..bdbb322 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.10.0] - 2022-10-20 + +### Added + +- Added support for the Morepath framework with a sample example + +### Changes + +- Query statistics improved to pass function, file, and line number + + ## [1.9.0] - 2022-09-27 ### Added @@ -185,7 +196,8 @@ to work) - Pybrake SDK - Middleware for Flask, Django, celery, aiohttp frameworks -[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.9.0...HEAD +[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.10.0...HEAD +[1.10.0]: https://github.com/airbrake/pybrake/compare/v1.9.0...v1.10.0 [1.9.0]: https://github.com/airbrake/pybrake/compare/v1.8.0...v1.9.0 [1.8.0]: https://github.com/airbrake/pybrake/compare/v1.7.0...v1.8.0 [1.7.0]: https://github.com/airbrake/pybrake/compare/v1.6.0...v1.7.0 diff --git a/src/pybrake/constant.py b/src/pybrake/constant.py index 29c3d96..7741a17 100644 --- a/src/pybrake/constant.py +++ b/src/pybrake/constant.py @@ -2,7 +2,7 @@ notifier_name = "pybrake" # Pybrake Notifier Version -version = "1.9.0" +version = "1.10.0" # End point of Airbrake API host. That will always be as default value. AIRBRAKE_HOST = "https://api.airbrake.io"