Skip to content

Commit b9b5c7d

Browse files
authored
Merge pull request #205 from Zsailer/0.3
bump version to 0.3 for minor release
2 parents ae5fb4a + 296cc68 commit b9b5c7d

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3] - 2020-4-22
11+
12+
### Added
13+
14+
- ([#191](https://github.com/jupyter/jupyter_server/pull/191)) Async kernel managment is now possible using the `AsyncKernelManager` from `jupyter_client`
15+
- ([#201](https://github.com/jupyter/jupyter_server/pull/201)) Parameters can now be passed to new terminals created by the `terminals` REST API.
16+
17+
18+
### Changed
19+
20+
- ([#196](https://github.com/jupyter/jupyter_server/pull/196)) Documentation was rewritten + refactored to use pydata_sphinx_theme.
21+
- ([#174](https://github.com/jupyter/jupyter_server/pull/174)) `ExtensionHandler` was changed to an Mixin class, i.e. `ExtensionHandlerMixin`
22+
23+
### Removed
24+
25+
- ([#194](https://github.com/jupyter/jupyter_server/pull/194)) The bundlerextension entry point was removed.
26+
27+
1028
## [0.2.1] - 2020-1-10
1129

1230
### Added

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ When a new minor version in released on PyPI, a branch for that version will be
3030

3131
To see the changes between releases, checkout the [CHANGELOG](https://github.com/jupyter/jupyter_server/blob/master/CHANGELOG.md).
3232

33-
To install the latest patch of a given version:
34-
35-
$ pip install jupyter_server>=0.2
3633

3734
## Usage - Running Jupyter Server
3835

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, 3, 0, '')
1313
__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])

0 commit comments

Comments
 (0)