Skip to content

Commit b54240b

Browse files
author
Kevin D Smith
committed
Prepare for release
1 parent 63f9555 commit b54240b

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

CHANGELOG.md

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

22
# Change Log
33

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+
410
## 1.6.1 - 2020-02-10
511

612
- Add pandas v1.0.0 support

doc/source/whatsnew.rst

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

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

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+
1220
1.6.1 (February 10, 2020)
1321
=========================
1422

1523
- Add pandas v1.0.0 support
1624

25+
1726
1.6.0 (November 21, 2019)
1827
=========================
1928

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.6.2-dev',
36+
version='1.7.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
@@ -93,5 +93,5 @@
9393
# SAS Formatter
9494
from .formatter import SASFormatter # noqa: E402
9595

96-
__version__ = '1.6.2-dev'
96+
__version__ = '1.7.0'
9797
__tk_version__ = None

0 commit comments

Comments
 (0)