Skip to content

Commit

Permalink
Release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
smurfix committed Aug 13, 2018
1 parent eaa4827 commit fa219b7
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 10 deletions.
28 changes: 28 additions & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ Release history

.. towncrier release notes start
Trio 0.6.0 (2018-08-13)
-----------------------

Features
~~~~~~~~

- Add :func:`trio.hazmat.WaitForSingleObject` async function to await Windows
handles. (`#233 <https://github.com/python-trio/trio/issues/233>`__)
- The `sniffio <https://github.com/python-trio/sniffio>`__ library can now
detect when Trio is running. (`#572
<https://github.com/python-trio/trio/issues/572>`__)


Bugfixes
~~~~~~~~

- Make trio.socket._SocketType.connect *always* close the socket on
cancellation (`#247 <https://github.com/python-trio/trio/issues/247>`__)
- Fix a memory leak in :class:`trio.CapacityLimiter`, that could occurr when
``acquire`` or ``acquire_on_behalf_of`` was cancelled. (`#548
<https://github.com/python-trio/trio/issues/548>`__)
- Some version of MacOS have a buggy ``getaddrinfo`` that was causing spurious
test failures; we now detect those systems and skip the relevant test when
found. (`#580 <https://github.com/python-trio/trio/issues/580>`__)
- Prevent crashes when used with Sentry (raven-python). (`#599
<https://github.com/python-trio/trio/issues/599>`__)


Trio 0.5.0 (2018-07-20)
-----------------------

Expand Down
1 change: 0 additions & 1 deletion newsfragments/233.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/247.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/548.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/572.feature.rst

This file was deleted.

3 changes: 0 additions & 3 deletions newsfragments/580.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/599.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion trio/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file is imported from __init__.py and exec'd from setup.py

__version__ = "0.5.0+dev"
__version__ = "0.6.0"

0 comments on commit fa219b7

Please sign in to comment.