-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 0.12.0 #94
Merged
Merged
Release 0.12.0 #94
Changes from 33 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
cab2ea5
remove wrap_generator, deprecated since 0.10.0
shamrin cbbb309
remove run_iterator, deprecated since 0.10.0
shamrin 4d414a9
remove trio2aio, deprecated since 0.10.0
shamrin dee471c
remove aio2trio, deprecated since 0.10.0
shamrin cdd808f
remove run_future and TrioEventLoop.run_future, deprecated since 0.10.0
shamrin 1e9ef9e
remove unused imports in _adapter
shamrin e01154a
remove run_coroutine and TrioEventLoop.run_coroutine, deprecated sinc…
shamrin a42b2c1
remove unused import in test_thread
shamrin f2ebc0a
remove wrap_trio_context, deprecated since 0.10.0
shamrin 518c29e
remove TrioEventLoop.run_trio, deprecated since 0.10.0
shamrin 64366e7
remove run_asyncio and TrioEventLoop.run_asyncio, deprecated since 0.…
shamrin a61411c
remove unused imports in test_misc, test_adapter, test_callback
shamrin d0bc23e
temporarily disable flaky test_cancel_loop
shamrin 3cffc2a
remove unused imports in _base, _loop
shamrin 1c22295
configure towncrier to show Miscellaneous content
shamrin f1f62c2
mention that trio.hazmat TrioDeprecationWarning is gone now
shamrin ba572d6
0.12.0 version
shamrin 050fb3d
0.12.0 history
shamrin 4465d26
synchronize docstring: use recommended replacement for loop.run_trio
shamrin 898a2a4
remove poetry section
shamrin 9a9f357
mention issue #95 in xfail'ed test_cancel_loop
shamrin e775879
Python 3.10 drops the "loop" argument from "sleep"
smurfix 4476608
Minimal de-`loop=loop`-ification
smurfix b6f2c67
port test_deprecate from Trio
shamrin 40fba89
coverage: test no __await__ attribute case in Asyncio_Trio_Wrapper.__…
shamrin 917b4fe
coverage: test not Future case in allow_asyncio
shamrin a965a61
coverage: test allow_asyncio(get_future_instance, ...)
shamrin 5ca079a
consistent history headings; fix towncrier config to match
shamrin c414430
correct issue link in history
shamrin 3fb7a07
clarify migration from removed API
shamrin 950b0eb
Merge branch 'master' into release-0.12.0
oremanj c9b7bde
enable previously disabled test (at d0bc23e1ac68fda66f6848ecd6efeec60…
shamrin 0b7f978
rename test
shamrin 520768e
Merge branch 'master' into release-0.12.0
oremanj 5006bee
merge recent newsfragments
shamrin 970d81c
stop test_cancel_sleep from deadlocking and less dependent on timer
shamrin a18c2b4
version +dev
shamrin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,32 @@ | ||
[tool.towncrier] | ||
package = "trio_asyncio" | ||
title_format = "trio-asyncio {version} ({project_date})" | ||
filename = "docs/source/history.rst" | ||
directory = "newsfragments" | ||
underlines = ["-", "~", "^"] | ||
issue_format = "`#{issue} <https://github.com/python-trio/trio-asyncio/issues/{issue}>`__" | ||
|
||
[[tool.towncrier.type]] | ||
directory = "feature" | ||
name = "Features" | ||
showcontent = true | ||
|
||
[[tool.towncrier.type]] | ||
directory = "bugfix" | ||
name = "Bugfixes" | ||
showcontent = true | ||
|
||
[[tool.towncrier.type]] | ||
directory = "doc" | ||
name = "Improved documentation" | ||
showcontent = true | ||
|
||
[[tool.towncrier.type]] | ||
directory = "removal" | ||
name = "Deprecations and removals" | ||
showcontent = true | ||
|
||
[[tool.towncrier.type]] | ||
directory = "misc" | ||
name = "Miscellaneous" | ||
showcontent = true | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
showcontent = true
line above is the whole reason for changingtowncrier
config. Otherwise,misc
notes are missing their content inhistory.rst
. I did it the same way as in trio: https://github.com/python-trio/trio/blob/master/pyproject.toml