File tree Expand file tree Collapse file tree 4 files changed +21
-2
lines changed
Expand file tree Collapse file tree 4 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 11
22# Change Log
33
4+ ## 1.5.1 - 2019-03-01
5+
6+ - Fix Authinfo matching when using base URLs in REST interface
7+ - Fix compatibility with pandas 0.24
8+ - Fix blob parameters in REST interface
9+ - Add ` CASTable.last_modified_date ` , ` CASTable.last_accessed_date ` , and ` CASTable.created_date ` properties
10+ - Add reverse operator methods to ` CASColumn `
11+
412## 1.5.0 - 2018-09-18
513
614- Windows support for binary CAS protocol
Original file line number Diff line number Diff line change @@ -9,6 +9,17 @@ What's New
99
1010This document outlines features and improvements from each release.
1111
12+ 1.5.1 (March 1, 2019)
13+ =====================
14+
15+ - Fix Authinfo matching when using base URLs in REST interface
16+ - Fix compatibility with pandas 0.24
17+ - Fix blob parameters in REST interface
18+ - Add ``CASTable.last_modified_date ``, ``CASTable.last_accessed_date ``, and ``CASTable.created_date `` prop
19+ erties
20+ - Add reverse operator methods to `CASColumn `
21+
22+
1223v1.5.0 (September 18, 2018)
1324===========================
1425
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def get_file(fname):
3333setup (
3434 zip_safe = False ,
3535 name = 'swat' ,
36- version = '1.5.1-dev ' ,
36+ version = '1.5.1' ,
3737 description = 'SAS Scripting Wrapper for Analytics Transfer (SWAT)' ,
3838 long_description = get_file ('README.md' ),
3939 long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 9090# SAS Formatter
9191from .formatter import SASFormatter # noqa: E402
9292
93- __version__ = '1.5.1-dev '
93+ __version__ = '1.5.1'
You can’t perform that action at this time.
0 commit comments