Skip to content
This repository was archived by the owner on Jun 11, 2018. It is now read-only.

Commit 2cea62a

Browse files
committed
updated changelog and bumped version to 3.3.1
1 parent 832dea2 commit 2cea62a

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGES.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### 3.3.1 ###
2+
* setting `PROCESSORS` to an empty list now skips processing completely instead
3+
of using the default processors
4+
* setting `_opbeat_transaction_name` on the `request` object from a view or
5+
middleware allows code to override the name used for the transaction
6+
* experimental support for manylinux1 binary wheels. Note that the wheels will
7+
not be uploaded to PyPI for now, but will be available on the
8+
[release page](https://github.com/opbeat/opbeat_python/releases/tag/3.3.1)
9+
on GitHub.
10+
111
## 3.3 ##
212
* added an asyncio transport (for Python 3.5 and up), thanks @ticosax!
313
* fixed a bug with uWSGI master mode which would stop the module from sending

opbeat/version.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
VERSION = "3.3"
1+
__version__ = (3, 3, 1)
2+
VERSION = '.'.join(map(str, __version__))

0 commit comments

Comments
 (0)