From f17efa0d0b1b928bac980e3c5beeafac72410d3e Mon Sep 17 00:00:00 2001 From: Kaushal Prajapati Date: Tue, 27 Sep 2022 17:00:22 +0530 Subject: [PATCH] Release v1.9.0 :tada: --- changelog.md | 11 ++++++++++- src/pybrake/constant.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index e6116c5..d8634e4 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.9.0] - 2022-09-27 + +### Added + +- Added support for the Tornado framework with a sample example +- Added support for the Turbogears2 framework with a sample example + + ## [1.8.0] - 2022-09-13 ### Added @@ -177,7 +185,8 @@ to work) - Pybrake SDK - Middleware for Flask, Django, celery, aiohttp frameworks -[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.8.0...HEAD +[Unreleased]: https://github.com/airbrake/pybrake/compare/v1.9.0...HEAD +[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 [1.6.0]: https://github.com/airbrake/pybrake/compare/v1.5.0...v1.6.0 diff --git a/src/pybrake/constant.py b/src/pybrake/constant.py index e0b95df..29c3d96 100644 --- a/src/pybrake/constant.py +++ b/src/pybrake/constant.py @@ -2,7 +2,7 @@ notifier_name = "pybrake" # Pybrake Notifier Version -version = "1.8.0" +version = "1.9.0" # End point of Airbrake API host. That will always be as default value. AIRBRAKE_HOST = "https://api.airbrake.io"