From fdbbadb7c8b8f6158cfd19e2e0cc2de8b639e2fb Mon Sep 17 00:00:00 2001 From: Kaushal Prajapati Date: Thu, 25 Aug 2022 18:35:44 +0530 Subject: [PATCH] Release v1.7.0 --- changelog.md | 16 +++++++++++++++- src/pybrake/constant.py | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index e729fbf..d57489d 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.0] - 2022-09-02 + +### Added + +- Add support for Falcon framework with sample example +- Add support for Hug framework with sample example +- Add queue for backlog thread for failed request data + +### Fixed + +- Fastapi/Sanic middleware does not support lack of SqlAlchemy package [229](https://github.com/airbrake/pybrake/issues/229) + ## [1.6.0] - 2022-07-08 ### Added @@ -150,7 +162,9 @@ to work) - Pybrake SDK - Middleware for Flask, Django, celery, aiohttp frameworks -[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.5.0...HEAD +[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.7.0...HEAD +[1.7.0]: https://github.com/airbrake/pybrake/compare/v1.6.0...v1.7.0 +[1.6.0]: https://github.com/airbrake/pybrake/compare/v1.5.0...v1.6.0 [1.5.0]: https://github.com/airbrake/pybrake/compare/v1.4.0...v1.5.0 [1.4.0]: https://github.com/airbrake/pybrake/compare/v1.3.0...v1.4.0 [1.3.0]: https://github.com/airbrake/pybrake/compare/v1.2.0...v1.3.0 diff --git a/src/pybrake/constant.py b/src/pybrake/constant.py index 02172ac..f06221e 100644 --- a/src/pybrake/constant.py +++ b/src/pybrake/constant.py @@ -2,7 +2,7 @@ notifier_name = "pybrake" # Pybrake Notifier Version -version = "1.6.0" +version = "1.7.0" # End point of Airbrake API host. That will always be as default value. AIRBRAKE_HOST = "https://api.airbrake.io"