From 52843332cd573b7e02b19eed55ce294ecc404a96 Mon Sep 17 00:00:00 2001 From: Kaushal Prajapati Date: Thu, 7 Jul 2022 11:45:58 +0530 Subject: [PATCH] Release v1.6.0 --- changelog.md | 14 ++++++++++++++ src/pybrake/constant.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) 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"