Skip to content

Commit fa2a773

Browse files
author
Kevin D Smith
committed
Increment version for 1.5.1 release
1 parent 6b0844c commit fa2a773

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
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

doc/source/whatsnew.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ What's New
99

1010
This 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+
1223
v1.5.0 (September 18, 2018)
1324
===========================
1425

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_file(fname):
3333
setup(
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',

swat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@
9090
# SAS Formatter
9191
from .formatter import SASFormatter # noqa: E402
9292

93-
__version__ = '1.5.1-dev'
93+
__version__ = '1.5.1'

0 commit comments

Comments
 (0)