Skip to content

Commit

Permalink
Bump version: 0.15.0 → 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gsalgado committed Dec 3, 2019
1 parent b8f2f69 commit 53526e5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 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.0
current_version = 0.15.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
Expand Down
12 changes: 12 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ Release Notes

.. towncrier release notes start
Lahja 0.15.1 (2019-12-03)
-------------------------

Bugfixes
~~~~~~~~

- Use a synchronous API to unlink the IPC file when a TrioEndpoint finishes

It was using trio's async unlink() method, which would do nothing if the current context is
already cancelled (e.g. when the user hits Ctrl-C), which is not what we want. (`#165 <https://github.com/ethereum/lahja/issues/165>`__)


Lahja 0.15.0 (2019-11-21)
-------------------------

Expand Down
4 changes: 0 additions & 4 deletions newsfragments/165.bugfix.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.0',
version='0.15.1',
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 53526e5

Please sign in to comment.