Skip to content

Commit 6e382d7

Browse files
authored
Merge pull request #682 from jupyter-incubator/devstein/0.17.0-release
Prepare for 0.17.0 Release
2 parents d9233ae + b95a9d4 commit 6e382d7

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.17.0
4+
5+
### Features
6+
7+
* Customizable Livy authentication methods [#662](https://github.com/jupyter-incubator/sparkmagic/pull/662). Thanks @alexismacaskilll
8+
9+
### Bug fixes
10+
11+
* Fix Dockerfile.jupyter build [#672](https://github.com/jupyter-incubator/sparkmagic/pull/672)
12+
313
## 0.16.0
414

515
### Bug fixes
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.16.0'
1+
__version__ = '0.17.0'
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.16.0'
1+
__version__ = '0.17.0'

sparkmagic/sparkmagic/__init__.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
__version__ = '0.16.0'
1+
__version__ = '0.17.0'
22

33
from sparkmagic.serverextension.handlers import load_jupyter_server_extension
44

55

66
def _jupyter_server_extension_paths():
7-
return [{
8-
"module": "sparkmagic"
9-
}]
7+
return [{"module": "sparkmagic"}]
8+
109

1110
def _jupyter_nbextension_paths():
1211
return []

0 commit comments

Comments
 (0)