Skip to content

Commit aef6ef5

Browse files
author
Kevin D Smith
committed
Prepare for new release
1 parent 1f855d1 commit aef6ef5

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11

22
# Change Log
33

4+
## 1.6.0 - 2019-11-21
5+
6+
- Fix letter-casing in `has_action` and `has_actionset` methods
7+
- Remove usage of deprecated `ix` accessor
8+
- Explicitly specify column and line delimiters and locale in uploaded CSV files
9+
- Fix TKPATH issues in Windows and PPC
10+
411
## 1.5.2 - 2019-09-09
512

613
- Fix issue with nulls in REST parameters

doc/source/whatsnew.rst

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

1010
This document outlines features and improvements from each release.
1111

12+
1.6.0 - (November 21, 2019)
13+
===========================
14+
15+
- Fix letter-casing in ``has_action`` and ``has_actionset`` methods
16+
- Remove usage of deprecated ``ix`` accessor
17+
- Explicitly specify column and line delimiters and locale in uploaded CSV files
18+
- Fix TKPATH issues in Windows and PPC
19+
20+
1221
1.5.2 (September 9, 2019)
1322
=========================
1423

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.3-dev',
36+
version='1.6.0',
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.3-dev'
93+
__version__ = '1.6.0'

0 commit comments

Comments
 (0)