Skip to content

Commit 92eea23

Browse files
committed
Jupyter Kernel Gateway 2.1.0 release
1 parent 01edf49 commit 92eea23

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 2.1.0 (2018-08-13)
4+
5+
* [PR-299](https://github.com/jupyter/kernel_gateway/pull/299): adds x_header configuration option for use behind proxies
6+
* [PR-294](https://github.com/jupyter/kernel_gateway/pull/294): Allow access from remote hosts (Notebook 5.6)
7+
* [PR-292](https://github.com/jupyter/kernel_gateway/pull/292): Update dependencies of Jupyter components
8+
* [PR-290](https://github.com/jupyter/kernel_gateway/pull/290): Include LICENSE file in wheels
9+
* [PR-285](https://github.com/jupyter/kernel_gateway/pull/285): Update Kernel Gateway test base class to be compatible with Tornado 5.0
10+
* [PR-284](https://github.com/jupyter/kernel_gateway/pull/284): Add reason argument to set_status() so that custom messages flow back to client
11+
* [PR-280](https://github.com/jupyter/kernel_gateway/pull/280): Add whitelist of environment variables to be inherited from gateway process by kernel
12+
* [PR-275](https://github.com/jupyter/kernel_gateway/pull/275): Fix broken links to notebook-http mode page in docs
13+
* [PR-272](https://github.com/jupyter/kernel_gateway/pull/272): Fix bug when getting kernel language in notebook-http mode
14+
* [PR-271](https://github.com/jupyter/kernel_gateway/pull/271): Fix IPerl notebooks running in notebook-http mode
15+
316
## 2.0.2 (2017-11-10)
417

518
* [PR-266](https://github.com/jupyter/kernel_gateway/pull/266): Make KernelManager and KernelSpecManager configurable

docs/source/summary-changes.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
See `git log` for a more detailed summary of changes.
44

5+
## 2.1
6+
7+
### 2.1.0 (2018-08-13)
8+
9+
* [PR-299](https://github.com/jupyter/kernel_gateway/pull/299): adds x_header configuration option for use behind proxies
10+
* [PR-294](https://github.com/jupyter/kernel_gateway/pull/294): Allow access from remote hosts (Notebook 5.6)
11+
* [PR-292](https://github.com/jupyter/kernel_gateway/pull/292): Update dependencies of Jupyter components
12+
* [PR-290](https://github.com/jupyter/kernel_gateway/pull/290): Include LICENSE file in wheels
13+
* [PR-285](https://github.com/jupyter/kernel_gateway/pull/285): Update Kernel Gateway test base class to be compatible with Tornado 5.0
14+
* [PR-284](https://github.com/jupyter/kernel_gateway/pull/284): Add reason argument to set_status() so that custom messages flow back to client
15+
* [PR-280](https://github.com/jupyter/kernel_gateway/pull/280): Add whitelist of environment variables to be inherited from gateway process by kernel
16+
* [PR-275](https://github.com/jupyter/kernel_gateway/pull/275): Fix broken links to notebook-http mode page in docs
17+
* [PR-272](https://github.com/jupyter/kernel_gateway/pull/272): Fix bug when getting kernel language in notebook-http mode
18+
* [PR-271](https://github.com/jupyter/kernel_gateway/pull/271): Fix IPerl notebooks running in notebook-http mode
19+
520
## 2.0
621

722
### 2.0.2 (2017-11-10)

kernel_gateway/_version.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
version_info = (
77
2,
88
1,
9-
0,
10-
'dev',
9+
0
1110
)
1211

1312
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)