Skip to content

Commit a809a6b

Browse files
authored
Merge pull request #464 from rollbar/release/1.1.0
Bumped version to 1.1.0 and added changelog.
2 parents a641597 + 035f8be commit a809a6b

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
The change log is also available on the [GitHub Releases Page](https://github.com/rollbar/pyrollbar/releases).
44

5+
**1.1.0**
6+
7+
- Updated supported/tested frameworks and modernized tests and packaging by @danielmorell in [#455](https://github.com/rollbar/pyrollbar/pull/455)
8+
- Fixed #398 FastAPI integration fails if docs are disabled by @danielmorell in [#459](https://github.com/rollbar/pyrollbar/pull/459)
9+
- Support `pathlib.Path()` objects by @singingwolfboy in [$450](https://github.com/rollbar/pyrollbar/pull/450)
10+
- Added support for Python 3.12 by @danielmorell in [#460](https://github.com/rollbar/pyrollbar/pull/460)
11+
- Changed the `ShortenerTransform` to use breadth first traversal by @danielmorell in [#461](https://github.com/rollbar/pyrollbar/pull/461)
12+
- Fixed shortener multi level shortening by @danielmorell and @pawelsz-rb. See [#449](https://github.com/rollbar/pyrollbar/pull/449)
13+
514
**1.1.0-beta**
615

716
- Updated supported/tested frameworks and modernized tests and packaging by @danielmorell in [#455](https://github.com/rollbar/pyrollbar/pull/455)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Python notifier for reporting exceptions, errors, and log messages to [Rollbar](
2424

2525
| PyRollbar Version | Python Version Compatibility | Support Level |
2626
|-------------------|-----------------------------------------------|---------------------|
27-
| 1.0.0 | 3.6, 3.7. 3.8, 3.9, 3.10, 3.11, 3.12 | Full |
27+
| 1.1.0 | 3.6, 3.7. 3.8, 3.9, 3.10, 3.11, 3.12 | Full |
2828
| 0.16.3 | 2.7, 3.4, 3.5, 3.6, 3.7. 3.8, 3.9, 3.10, 3.11 | Security Fixes Only |
2929

3030
#### Support Level Definitions

rollbar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from rollbar.lib import events, filters, dict_merge, transport, defaultJSONEncode
2525

2626

27-
__version__ = '1.1.0-beta'
27+
__version__ = '1.1.0'
2828
__log_name__ = 'rollbar'
2929
log = logging.getLogger(__log_name__)
3030

0 commit comments

Comments
 (0)