File tree Expand file tree Collapse file tree 5 files changed +20
-4
lines changed Expand file tree Collapse file tree 5 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 11
22# Change Log
33
4+ ## 1.3.1 - 2018-06-04
5+
6+ - Increase compatibility with older and newer versions of pandas
7+ - Automatically convert columns with SAS date/time formats to Python date/time objects
8+ - Improve ` CASTable.merge ` algorithm
9+ - Fix autocompletion on ` CAS ` and ` CASTable ` objects
10+
411## 1.3.0 - 2017-12-12
512
613- Add new summary statistics for new version of CAS
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ Installation
77The SWAT package is installed using the ``pip `` command. The requirements
88for using the binary protocol of CAS (recommended) are as follows.
99
10- * **64-bit ** Python 2.7 or 3.4-3.6 on Linux or Windows
10+ * **64-bit ** Python 2.7 or 3.4-3.6 on Linux
1111
12- For Linux, see additional shared library notes below.
12+ See additional shared library notes below.
1313
1414The binary protocol requires pre-compiled components found in the ``pip ``
1515installer only. These pieces are not available as source code and
Original file line number Diff line number Diff line change @@ -9,6 +9,15 @@ What's New
99
1010This document outlines features and improvements from each release.
1111
12+ v1.3.1 (June 4, 2018)
13+ =====================
14+
15+ - Increase compatibility with older and newer versions of pandas
16+ - 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
19+
20+
1221v1.3.0 (December 12, 2017)
1322==========================
1423
Original file line number Diff line number Diff line change 3434setup (
3535 zip_safe = False ,
3636 name = 'swat' ,
37- version = '1.3.1-dev ' ,
37+ version = '1.3.1' ,
3838 description = 'SAS Scripting Wrapper for Analytics Transfer (SWAT)' ,
3939 long_description = README ,
4040 author = 'SAS' ,
Original file line number Diff line number Diff line change 9090# SAS Formatter
9191from .formatter import SASFormatter # noqa: E402
9292
93- __version__ = '1.3.1-dev '
93+ __version__ = '1.3.1'
You can’t perform that action at this time.
0 commit comments