Skip to content

Commit e16a3f3

Browse files
author
Kevin D Smith
committed
Prepare release v1.2.0
1 parent 156a3e7 commit e16a3f3

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11

22
# Change Log
33

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+
49
## 1.1.0 - 2017-03-21
510

611
- Add support for Python 3.6 (Linux extension)

doc/source/whatsnew.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ What's New
99

1010
This document outlines features and improvements from each release.
1111

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+
1218
v1.1.0 (March 21, 2017)
1319
=======================
1420

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
setup(
3535
zip_safe = False,
3636
name = 'swat',
37-
version = '1.1.0-dev',
37+
version = '1.2.0',
3838
description = 'SAS Scripting Wrapper for Analytics Transfer (SWAT)',
3939
long_description = README,
4040
author = 'SAS',

swat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@
8686
# SAS Formatter
8787
from .formatter import SASFormatter
8888

89-
__version__ = '1.1.0-dev'
89+
__version__ = '1.2.0'

0 commit comments

Comments
 (0)