diff --git a/README.md b/README.md index 21dec1a..26d8fd1 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,13 @@ run(main()) ``` # changelog +## 0.2.1 +### What's Changed +* make _Interceptor not abstract by @graingert in https://github.com/graingert/taskgroup/pull/25 + + +**Full Changelog**: https://github.com/graingert/taskgroup/compare/0.2.0...0.2.1 + ## 0.2.0 ### What's Changed * add readme and changelog by @graingert in https://github.com/graingert/taskgroup/pull/21 diff --git a/taskgroup/__init__.py b/taskgroup/__init__.py index 7fba599..e85d5d3 100644 --- a/taskgroup/__init__.py +++ b/taskgroup/__init__.py @@ -2,7 +2,7 @@ backport of asyncio.TaskGroup, asyncio.Runner and asyncio.timeout """ -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = ["run", "Runner", "TaskGroup", "Timeout", "timeout", "timeout_at"]