Skip to content

Commit

Permalink
Bump version: 0.15.2 → 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cburgdorf committed Apr 1, 2020
1 parent 32711ca commit 607262e
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.15.2
current_version = 0.16.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
Expand Down
31 changes: 31 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@ Release Notes

.. towncrier release notes start
Lahja 0.16.0 (2020-04-01)
-------------------------

Features
~~~~~~~~

- Raise :class:`~lahja.exceptions.NoSubscribers` exception if an event
is broadcasted or a request is made while there are no subscribers to
the specific event or request type. This is a safety check to avoid
scenarios where events or requests are never answered because developers
forgot to wire certain events or requests together.

If however, certain events or requests aren't expected to be subscribed to,
one can explicitly set ``require_subscriber`` on the
:class:`~lahja.common.BroadcastConfig` to ``False``.

This is a **BREAKING CHANGE**. (`#176 <https://github.com/ethereum/lahja/issues/176>`__)


Improved Documentation
~~~~~~~~~~~~~~~~~~~~~~

- Add Matomo Tracking to Docs site.

Matomo is an Open Source web analytics platform that allows us
to get better insights and optimize for our audience without
the negative consequences of other compareable platforms.

Read more: https://matomo.org/why-matomo/ (`#171 <https://github.com/ethereum/lahja/issues/171>`__)


Lahja 0.15.2 (2019-12-04)
-------------------------

Expand Down
7 changes: 0 additions & 7 deletions newsfragments/171.doc.rst

This file was deleted.

11 changes: 0 additions & 11 deletions newsfragments/176.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
setup(
name='lahja',
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
version='0.15.2',
version='0.16.0',
description="Generic event bus for asynchronous cross-process communication",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 607262e

Please sign in to comment.