Skip to content

Commit 8b632bb

Browse files
committed
clarify language in README on versioning and bump version
1 parent ccb10b7 commit 8b632bb

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,9 @@ To install the latest release locally, make sure you have
3030

3131
If Jupyter Server is a dependency of your project/application, it is important that you pin it to a version that works for your application. Currently, Jupyter Server only has minor versions and patch versions. Different minor versions may include API-changes while patch versions do not change API.
3232

33-
Each minor version has its own branch in this repo, and patches are applied to their relevant minor version. The master branch of the latest minor version.
33+
After each minor *release*, a branch for that version will be created in this repository, and the version of the master branch will be bumped to the next minor version. Thus, the master branch always reflects the latest un-released version.
3434

35-
The available minor versions are:
36-
* [0.2.x](https://github.com/jupyter/jupyter_server/tree/0.2.x): Extension Application API added.
37-
* [0.3.x](https://github.com/jupyter/jupyter_server/tree/master) (master): Kernels API changed. Kernel Providers are the new way to interface with kernels.
38-
39-
You can see which versions are released by going to the ["releases"](https://github.com/jupyter/jupyter_server/releases) tab.
35+
To the changes between versions, checkout the [CHANGELOG](https://github.com/jupyter/jupyter_server/blob/master/CHANGELOG.md).
4036

4137
To install the latest patch of a given version:
4238

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

0 commit comments

Comments
 (0)