Skip to content
Snippets Groups Projects
Commit 7d841514 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

version bump to 0.97a1

parent 36d3b36c
No related branches found
No related tags found
No related merge requests found
* v0.96: # v0.97:
* _TBA_
# v0.96:
* Python 3.6 and 3.7 officially supported and tested against. Also same done for PyPY 3.5 * Python 3.6 and 3.7 officially supported and tested against. Also same done for PyPY 3.5
* fixing #40 * fixing #40
* added #32 * added #32
* v0.95: # v0.95:
* multiple bugs fixed * multiple bugs fixed
* v0.94: # v0.94:
_version skipped_ _version skipped_
* v0.93: # v0.93:
* Large refactor of XML schema compiler * Large refactor of XML schema compiler
* v0.92: # v0.92:
* Added `on_fail` event handler - fired upon connection loss * Added `on_fail` event handler - fired upon connection loss
* v0.91: # v0.91:
* removed annoying warnings * removed annoying warnings
* v0.90: # v0.90:
* first release with a *stable API* * first release with a *stable API*
* You can pick how your received _message.body_ will look like - bytes, * You can pick how your received _message.body_ will look like - bytes,
a zero-copy-for-short-messages memoryview, or maybe a totally zero-copy list of memoryviews? a zero-copy-for-short-messages memoryview, or maybe a totally zero-copy list of memoryviews?
* v0.89.1: # v0.89.1:
* **Critical bugfix**: messages larger than a frame got corrupted * **Critical bugfix**: messages larger than a frame got corrupted
* v0.89: # v0.89:
* Events are no longer timestamped by CoolAMQP, it's your job now * Events are no longer timestamped by CoolAMQP, it's your job now
* You can delete queues (_Cluster.delete_queue_) * You can delete queues (_Cluster.delete_queue_)
* Race condition _Connection.start_ fixed * Race condition _Connection.start_ fixed
...@@ -42,12 +46,7 @@ _version skipped_ ...@@ -42,12 +46,7 @@ _version skipped_
* Consumer being cancelled for any reason * Consumer being cancelled for any reason
* Consumer being cancelled with a CCN * Consumer being cancelled with a CCN
* v0.88: # v0.88:
* Cluster.start will RuntimeError if called more than once * Cluster.start will RuntimeError if called more than once
* Cluster.shutdown will RuntimeError if called without .start * Cluster.shutdown will RuntimeError if called without .start
* Warning with content list is shorter * Warning with content list is shorter
Latest:
* stability bug fixes
* ...
...@@ -24,7 +24,7 @@ CLIENT_DATA = [ ...@@ -24,7 +24,7 @@ CLIENT_DATA = [
# because RabbitMQ is some kind of a fascist and does not allow # because RabbitMQ is some kind of a fascist and does not allow
# these fields to be of type short-string # these fields to be of type short-string
(b'product', (b'CoolAMQP', 'S')), (b'product', (b'CoolAMQP', 'S')),
(b'version', (b'0.96', 'S')), (b'version', (b'0.97a1', 'S')),
(b'copyright', (b'Copyright (C) 2016-2017 DMS Serwis', 'S')), (b'copyright', (b'Copyright (C) 2016-2017 DMS Serwis', 'S')),
( (
b'information', ( b'information', (
......
[metadata] [metadata]
description-file = README.md description-file = README.md
name = CoolAMQP name = CoolAMQP
version = 0.96 version = 0.97a1
license = MIT License license = MIT License
classifiers = classifiers =
Programming Language :: Python Programming Language :: Python
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment