Skip to content

Commit 54c3b72

Browse files
committed
Prepare for 1.0
1 parent 220d05d commit 54c3b72

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

docs/source/history.rst

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ Release history
55

66
.. towncrier release notes start
77
8+
Outcome 1.0.0 (2018-09-12)
9+
--------------------------
10+
11+
Features
12+
~~~~~~~~
13+
14+
- On Python 3, the exception frame generated within :func:`capture` and
15+
:func:`acapture` has been removed from the traceback.
16+
(`#21 <https://github.com/python-trio/outcome/issues/21>`__)
17+
- Outcome is now tested using asyncio instead of trio, which outcome is a
18+
dependency of. This makes it easier for third parties to package up Outcome.
19+
(`#13 <https://github.com/python-trio/outcome/issues/13>`__)
20+
21+
822
Outcome 0.1.0 (2018-07-10)
923
--------------------------
1024

@@ -13,4 +27,5 @@ Features
1327

1428
- An Outcome may only be unwrapped or sent once.
1529

16-
Attempting to do so a second time will raise an :class:`AlreadyUsedError`. (`#7 <https://github.com/python-trio/outcome/issues/7>`__)
30+
Attempting to do so a second time will raise an :class:`AlreadyUsedError`.
31+
(`#7 <https://github.com/python-trio/outcome/issues/7>`__)

newsfragments/21.feature.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
3737
keywords='result',
3838
classifiers=[
39-
'Development Status :: 4 - Beta',
39+
'Development Status :: 5 - Production/Stable',
4040
'Framework :: Trio',
4141
'Intended Audience :: Developers',
4242
'License :: OSI Approved :: MIT License',

src/outcome/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# coding: utf-8
22
# This file is imported from __init__.py and exec'd from setup.py
33

4-
__version__ = "0.1.0"
4+
__version__ = "1.0.0"

0 commit comments

Comments
 (0)