File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# Change Log
3
3
4
+ ## 1.7.0 - 2020-08-19
5
+
6
+ - Add Python 3.8 support
7
+ - Improve connection parameter handling (add CAS_URL= connection variable)
8
+ - Improve connection protocol auto-detection
9
+
4
10
## 1.6.1 - 2020-02-10
5
11
6
12
- Add pandas v1.0.0 support
Original file line number Diff line number Diff line change @@ -9,11 +9,20 @@ What's New
9
9
10
10
This document outlines features and improvements from each release.
11
11
12
+ 1.7.0 (August 19, 2020)
13
+ =======================
14
+
15
+ - Add Python 3.8 support
16
+ - Improve connection parameter handling (add CAS_URL= connection variable)
17
+ - Improve connection protocol auto-detection
18
+
19
+
12
20
1.6.1 (February 10, 2020)
13
21
=========================
14
22
15
23
- Add pandas v1.0.0 support
16
24
25
+
17
26
1.6.0 (November 21, 2019)
18
27
=========================
19
28
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.6.2-dev ' ,
36
+ version = '1.7.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 93
93
# SAS Formatter
94
94
from .formatter import SASFormatter # noqa: E402
95
95
96
- __version__ = '1.6.2-dev '
96
+ __version__ = '1.7.0 '
97
97
__tk_version__ = None
You can’t perform that action at this time.
0 commit comments