File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# Change Log
3
3
4
+ ## 1.4.0 - 2018-07-25
5
+
6
+ - Automatic CAS table creation when large number of By groups are generated in some DataFrame methods
7
+ - Debugging options for REST interface
8
+ - Python 3.7 support
9
+
4
10
## 1.3.1 - 2018-06-04
5
11
6
12
- Increase compatibility with older and newer versions of pandas
Original file line number Diff line number Diff line change @@ -9,13 +9,21 @@ What's New
9
9
10
10
This document outlines features and improvements from each release.
11
11
12
+ v1.4.0 (July 25, 2018)
13
+ ======================
14
+
15
+ - Automatic CAS table creation when large number of By groups are generated in some DataFrame methods
16
+ - Debugging options for REST interface
17
+ - Python 3.7 support
18
+
19
+
12
20
v1.3.1 (June 4, 2018)
13
21
=====================
14
22
15
23
- Increase compatibility with older and newer versions of pandas
16
24
- Automatically convert columns with SAS date/time formats to Python date/time objects
17
- - Improve `CASTable.merge ` algorithm
18
- - Fix autocompletion on `CAS ` and `CASTable ` objects
25
+ - Improve `` CASTable.merge ` ` algorithm
26
+ - Fix autocompletion on `` CAS `` and `` CASTable ` ` objects
19
27
20
28
21
29
v1.3.0 (December 12, 2017)
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def get_file(fname):
33
33
setup (
34
34
zip_safe = False ,
35
35
name = 'swat' ,
36
- version = '1.3.2-dev ' ,
36
+ version = '1.4.0 ' ,
37
37
description = 'SAS Scripting Wrapper for Analytics Transfer (SWAT)' ,
38
38
long_description = get_file ('README.md' ),
39
39
long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 90
90
# SAS Formatter
91
91
from .formatter import SASFormatter # noqa: E402
92
92
93
- __version__ = '1.3.2-dev '
93
+ __version__ = '1.4.0 '
You can’t perform that action at this time.
0 commit comments