File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# Change Log
3
3
4
+ ## 1.2.0 - 2017-05-02
5
+
6
+ - Use ` upload ` action rather than ` addtable ` for ` read_* ` methods.
7
+ - Add basic Zeppelin notebook support (` from swat.notebook.zeppelin import show ` )
8
+
4
9
## 1.1.0 - 2017-03-21
5
10
6
11
- Add support for Python 3.6 (Linux extension)
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ What's New
9
9
10
10
This document outlines features and improvements from each release.
11
11
12
+ v1.2.0 (May 2, 2017)
13
+ ====================
14
+
15
+ - Use ``upload `` action rather than ``addtable `` for ``read_* `` methods.
16
+ - Add basic Zeppelin notebook support (``from swat.notebook.zeppelin import show ``)
17
+
12
18
v1.1.0 (March 21, 2017)
13
19
=======================
14
20
Original file line number Diff line number Diff line change 34
34
setup (
35
35
zip_safe = False ,
36
36
name = 'swat' ,
37
- version = '1.1.0-dev ' ,
37
+ version = '1.2.0 ' ,
38
38
description = 'SAS Scripting Wrapper for Analytics Transfer (SWAT)' ,
39
39
long_description = README ,
40
40
author = 'SAS' ,
Original file line number Diff line number Diff line change 86
86
# SAS Formatter
87
87
from .formatter import SASFormatter
88
88
89
- __version__ = '1.1.0-dev '
89
+ __version__ = '1.2.0 '
You can’t perform that action at this time.
0 commit comments