Skip to content

Commit

Permalink
Prepare the v1.7.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy Cline <jcline@redhat.com>
  • Loading branch information
jeremycline committed May 21, 2019
1 parent a3408a4 commit c4b8070
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 4 deletions.
49 changes: 49 additions & 0 deletions docs/changelog.rst
Expand Up @@ -4,6 +4,55 @@ Release Notes

.. towncrier release notes start
v1.7.0 (2019-05-21)
===================

Features
--------

* "fedora-messaging consume" now accepts a "--callback-file" argument which will
load a callback function from an arbitrary Python file. Previously, it was
required that the callback be in the Python path
(`#159 <https://github.com/fedora-infra/fedora-messaging/issues/159>`_).


Bug Fixes
---------

* Fix a bug where publishes that failed due to certain connection errors were not
retried
(`#175 <https://github.com/fedora-infra/fedora-messaging/issues/175>`_).

* Fix a bug where AMQP protocol errors did not reset the connection used for
publishing messages. This would result in publishes always failing with a
ConnectionError
(`#178 <https://github.com/fedora-infra/fedora-messaging/pull/178>`_).


Documentation Improvements
--------------------------

* Document the ``body`` attribute on the ``Message`` class
(`#164 <https://github.com/fedora-infra/fedora-messaging/issues/164>`_).

* Clearly document what properties message schema classes should override
(`#166 <https://github.com/fedora-infra/fedora-messaging/issues/166>`_).

* Re-organize the consumer documentation to make the consuming API clearer
(`#168 <https://github.com/fedora-infra/fedora-messaging/issues/168>`_).


Contributors
------------
Many thanks to the contributors of bug reports, pull requests, and pull request
reviews for this release:

* Randy Barlow
* Aurélien Bompard
* Jeremy Cline
* Dusty Mabe


v1.6.1 (2019-04-17)
===================

Expand Down
2 changes: 1 addition & 1 deletion fedora_messaging/__init__.py
Expand Up @@ -15,4 +15,4 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

__version__ = "1.6.1"
__version__ = "1.7.0"
3 changes: 0 additions & 3 deletions news/159.feature

This file was deleted.

5 changes: 5 additions & 0 deletions pyproject.toml
Expand Up @@ -21,6 +21,11 @@ template = "news/_template.rst"
name = "Bug Fixes"
showcontent = true

[[tool.towncrier.type]]
directory = "docs"
name = "Documentation Improvements"
showcontent = true

[[tool.towncrier.type]]
directory = "dev"
name = "Development Changes"
Expand Down

0 comments on commit c4b8070

Please sign in to comment.