From 5df6742a1f33d680a16cf399fbd0eb874ffb8b40 Mon Sep 17 00:00:00 2001 From: Zsailer Date: Fri, 10 Jan 2020 10:00:28 -0800 Subject: [PATCH] bump version to 0.2.1 --- CHANGELOG.md | 12 ++++++++++++ jupyter_server/_version.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2ea13a7e5..eea30e86f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2019-12-19 + +### Added + +- **pytest-plugin** for Jupyter Server. + - Allows one to write async/await syntax in tests functions. + - Some particularly useful fixtures include: + - `serverapp`: a default ServerApp instance that handles setup+teardown. + - `configurable_serverapp`: a function that returns a ServerApp instance. + - `fetch`: an awaitable function that tests makes requests to the server API + - `create_notebook`: a function that writes a notebook to a given temporary file path. + ## [0.2.0] - 2019-12-19 ### Added diff --git a/jupyter_server/_version.py b/jupyter_server/_version.py index 5f99508428..c1d1ee614e 100644 --- a/jupyter_server/_version.py +++ b/jupyter_server/_version.py @@ -9,5 +9,5 @@ # Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**. -version_info = (0, 3, 0, '.dev') +version_info = (0, 2, 1, '') __version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])