Skip to content

Commit 5df6742

Browse files
committed
bump version to 0.2.1
1 parent 3e5c28a commit 5df6742

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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

jupyter_server/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
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:])

0 commit comments

Comments
 (0)