File tree Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# Change Log
3
3
4
+ ## 1.2.1 - 2017-09-13
5
+
6
+ - Better support for binary data in table uploads and parameters
7
+ - Add integer missing value support
8
+ - Allow list parameters to also be sets
9
+ - Improve connection protocol detection
10
+ - Add ` eval ` method to ` CASTable `
11
+
4
12
## 1.2.0 - 2017-05-02
5
13
6
14
- Use ` upload ` action rather than ` addtable ` for ` read_* ` methods.
Original file line number Diff line number Diff line change @@ -9,6 +9,15 @@ What's New
9
9
10
10
This document outlines features and improvements from each release.
11
11
12
+ v1.2.1 (September 13, 2017)
13
+ ===========================
14
+
15
+ - Better support for binary data in table uploads and parameters
16
+ - Add integer missing value support
17
+ - Allow list parameters to also be sets
18
+ - Improve connection protocol detection
19
+ - Add ``eval `` method to ``CASTable ``
20
+
12
21
v1.2.0 (May 2, 2017)
13
22
====================
14
23
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.2.1-dev ' ,
37
+ version = '1.2.1' ,
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.2.1-dev '
89
+ __version__ = '1.2.1'
You can’t perform that action at this time.
0 commit comments