Skip to content

Commit a1b87a7

Browse files
committed
bumped version
1 parent a161906 commit a1b87a7

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

HISTORY.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Release History
44
===============
55

6-
0.2.0 (unreleased)
6+
0.2.0 (2018-07-25)
77
++++++++++++++++++
88

99
- **Breaking change** `MessageSender.send_async` has been renamed to `MessageSender.send`, and
@@ -12,7 +12,7 @@ Release History
1212
MessageSenderAsync, and MessageReceiverAsync in favour of new `error_policy` argument.
1313
- Added ErrorPolicy class to determine how the client should respond to both generic AMQP errors
1414
and custom or vendor-specific errors. A default policy will be used, but a custom policy can
15-
be added to and client by using new `error_policy` argument. Value must be either an instance
15+
be added to any client by using a new `error_policy` argument. Value must be either an instance
1616
or subclass of ErrorPolicy.
1717

1818
- The `error_policy` argument has also been added to MessageSender, MessageReceiver, Connection, and their
@@ -24,10 +24,10 @@ Release History
2424
three properties: `retry` (a boolean to determine whether the error is retryable), `backoff`
2525
(an integer to determine how long the client should wait before retrying, default is 0) and
2626
`increment_retries` (a boolean to determine whether the error should count against the maximum
27-
retry attempts). Currently `backoff` and `increment_retries` are only considered for message
28-
send failures.
27+
retry attempts, default is `True`). Currently `backoff` and `increment_retries` are only
28+
considered for message send failures.
2929
- Added `VendorConnectionClose` and `VendorLinkDetach` exceptions for non-standard (unrecognized)
30-
connection errors.
30+
connection/link errors.
3131

3232
- Added support for HTTP proxy configuration.
3333
- Added support for running async clients synchronously.
@@ -36,7 +36,7 @@ Release History
3636
disabled by default, to enable, set the `keep_alive_interval` argument on the client to
3737
an integer representing the number of seconds between connection pings.
3838
- Added support for catching a Connection CLOSE event.
39-
- Added support for `Connection.sleep` and `AsyncConnection.sleep_async` to pause the connection.
39+
- Added support for `Connection.sleep` and `ConnectionAsync.sleep_async` to pause the connection.
4040
- Added support for surfacing message disposition delivery-state (with error information).
4141
- Added `constants.ErrorCodes` enum to map standard AMQP error conditions. This replaces the previous
4242
`constants.ERROR_CONNECTION_REDIRECT` and `constants.ERROR_LINK_REDIRECT` which are now both

build_armv7l.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
# To execute this script:
55
# docker run --rm -v $PWD:/data local/manylinux_crypto32 /data/build_many_linux_32bit.sh
66

7-
export UAMQP_VERSION="0.1.1"
7+
export UAMQP_VERSION="0.2.0"
88

99
export CPATH="/opt/uamqp/openssl/include"
1010
export LIBRARY_PATH="/opt/uamqp/openssl/lib"

build_many_linux_32bit.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
# To execute this script:
55
# docker run --rm -v $PWD:/data local/manylinux_crypto32 /data/build_many_linux_32bit.sh
66

7-
export UAMQP_VERSION="0.1.1"
7+
export UAMQP_VERSION="0.2.0"
88

99
export CPATH="/opt/pyca/cryptography/openssl/include"
1010
export LIBRARY_PATH="/opt/pyca/cryptography/openssl/lib"

build_many_linux_64bit.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
# To execute this script:
55
# docker run --rm -v $PWD:/data local/manylinux_crypto64 /data/build_many_linux_64bit.sh
66

7-
export UAMQP_VERSION="0.1.1"
7+
export UAMQP_VERSION="0.2.0"
88

99
export CPATH="/opt/pyca/cryptography/openssl/include"
1010
export LIBRARY_PATH="/opt/pyca/cryptography/openssl/lib"

uamqp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
pass # Async not supported.
3333

3434

35-
__version__ = "0.1.1"
35+
__version__ = "0.2.0"
3636

3737

3838
_logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)