Skip to content

Commit

Permalink
Releasing version 2.2.1
Browse files Browse the repository at this point in the history
- Fixed potential Channel leak [#36] - Thanks Adam Mills.
- Fixed threading losing select module during python shutdown [#37] -
Thanks Adam Mills.
  • Loading branch information
eandersson committed Feb 22, 2017
1 parent f8832c5 commit 1d5ccdd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -3,7 +3,8 @@ Changelog

Version 2.2.1
-------------

- Fixed potential Channel leak [#36] - Thanks Adam Mills.
- Fixed threading losing select module during python shutdown [#37] - Thanks Adam Mills.

Version 2.2.0
-------------
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2016 Erik Olof Gunnar Andersson
Copyright (c) 2014-2017 Erik Olof Gunnar Andersson

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Expand Up @@ -23,6 +23,8 @@ Changelog

Version 2.2.1
-------------
- Fixed potential Channel leak [#36] - Thanks Adam Mills.
- Fixed threading losing select module during python shutdown [#37] - Thanks Adam Mills.

Version 2.2.0
-------------
Expand Down
2 changes: 1 addition & 1 deletion amqpstorm/tests/unit/channel/channel_tests.py
Expand Up @@ -227,7 +227,7 @@ def on_close_ok(_, frame_out):
def test_channel_close_gracefully_with_queued_error(self):
def on_close_ok(_, frame_out):
if isinstance(frame_out, specification.Basic.Cancel):
raise AMQPChannelError("travis-ci")
raise AMQPChannelError('travis-ci')
channel.rpc.on_frame(specification.Channel.CloseOk())

channel = Channel(0, FakeConnection(on_write=on_close_ok), 360)
Expand Down

0 comments on commit 1d5ccdd

Please sign in to comment.