Skip to content

Commit cb47de7

Browse files
author
Kevin D Smith
committed
Create v1.8.0-rc release candidate.
1 parent 287b9d4 commit cb47de7

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-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.8.0 - 2021-01-12
5+
6+
- Use ssl module's CA list as default
7+
- Improve initial connection performance
8+
- Fix OAuth authentication in REST connections
9+
- Fix log truncation with messages >1000 characters
10+
411
## 1.7.1 - 2020-09-29
512

613
- Add ability to apply SAS formats to columns in a `SASDataFrame`

doc/source/whatsnew.rst

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

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

12+
1.8.0 (January 12, 2021)
13+
------------------------
14+
15+
- Use ssl module’s CA list as default
16+
- Improve initial connection performance
17+
- Fix OAuth authentication in REST connections
18+
- Fix log truncation with messages >1000 characters
19+
1220
1.7.1 (September 29, 2020)
1321
--------------------------
1422

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.7.2-dev',
36+
version='1.8.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.7.2-dev'
96+
__version__ = '1.8.0'
9797
__tk_version__ = None

0 commit comments

Comments
 (0)