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
8
8
## [ Unreleased]
9
9
10
10
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
+
11
23
## [ 0.2.0] - 2019-12-19
12
24
13
25
### Added
Original file line number Diff line number Diff line change 9
9
10
10
# Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**.
11
11
12
- version_info = (0 , 3 , 0 , '.dev ' )
12
+ version_info = (0 , 2 , 1 , '' )
13
13
__version__ = '.' .join (map (str , version_info [:3 ])) + '' .join (version_info [3 :])
You can’t perform that action at this time.
0 commit comments