File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88## [ Unreleased]
99
1010
11+ ## [ 0.2.0] - 2019-12-19
12+
13+ ### Added
14+
15+ - ** pytest-plugin** for Jupyter Server.
16+ - Allows one to write async/await syntax in tests functions.
17+ - Some particularly useful fixtures include:
18+ - ` serverapp ` : a default ServerApp instance that handles setup+teardown.
19+ - ` configurable_serverapp ` : a function that returns a ServerApp instance.
20+ - ` fetch ` : an awaitable function that tests makes requests to the server API
21+ - ` create_notebook ` : a function that writes a notebook to a given temporary file path.
22+
1123## [ 0.2.0] - 2019-12-19
1224
1325### Added
Original file line number Diff line number Diff line change 99
1010# Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**.
1111
12- version_info = (0 , 3 , 0 , '.dev ' )
12+ version_info = (0 , 2 , 1 , '' )
1313__version__ = '.' .join (map (str , version_info [:3 ])) + '' .join (version_info [3 :])
You can’t perform that action at this time.
0 commit comments