Skip to content

Commit 135aa4d

Browse files
authored
Merge pull request #250 from minrk/spec-5-1
protocol version is 5.1
2 parents 13cb7c0 + bd2d7f2 commit 135aa4d

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

docs/changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,22 @@ Changes in Jupyter Client
77
5.0
88
===
99

10+
5.0.1
11+
-----
12+
13+
`5.0.1 on GitHub <https://github.com/jupyter/jupyter_client/milestones/5.0.1>`__
14+
15+
- Update internal protocol version number to 5.1,
16+
which should have been done in 5.0.0.
17+
1018
5.0.0
1119
-----
1220

1321
`5.0.0 on GitHub <https://github.com/jupyter/jupyter_client/milestones/5.0>`__
1422

1523
New features:
1624

25+
- Implement Jupyter protocol version 5.1.
1726
- Introduce :command:`jupyter run` command for running scripts with a kernel, for instance::
1827

1928
jupyter run --kernel python3 myscript.py

docs/messaging.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Versioning
2121

2222
The Jupyter message specification is versioned independently of the packages
2323
that use it.
24-
The current version of the specification is 5.0.
24+
The current version of the specification is 5.1.
2525

2626
.. note::
2727
*New in* and *Changed in* messages in this document refer to versions of the

jupyter_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version_info = (5, 1, 0, 'dev')
22
__version__ = '.'.join(map(str, version_info))
33

4-
protocol_version_info = (5, 0)
4+
protocol_version_info = (5, 1)
55
protocol_version = "%i.%i" % protocol_version_info

0 commit comments

Comments
 (0)