Skip to content

Commit 972e388

Browse files
author
Kevin D Smith
committed
Prepare for next release
1 parent f2f50e1 commit 972e388

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
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.4.0 - 2018-07-25
5+
6+
- Automatic CAS table creation when large number of By groups are generated in some DataFrame methods
7+
- Debugging options for REST interface
8+
- Python 3.7 support
9+
410
## 1.3.1 - 2018-06-04
511

612
- Increase compatibility with older and newer versions of pandas

doc/source/whatsnew.rst

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,21 @@ What's New
99

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

12+
v1.4.0 (July 25, 2018)
13+
======================
14+
15+
- Automatic CAS table creation when large number of By groups are generated in some DataFrame methods
16+
- Debugging options for REST interface
17+
- Python 3.7 support
18+
19+
1220
v1.3.1 (June 4, 2018)
1321
=====================
1422

1523
- Increase compatibility with older and newer versions of pandas
1624
- Automatically convert columns with SAS date/time formats to Python date/time objects
17-
- Improve `CASTable.merge` algorithm
18-
- Fix autocompletion on `CAS` and `CASTable` objects
25+
- Improve ``CASTable.merge`` algorithm
26+
- Fix autocompletion on ``CAS`` and ``CASTable`` objects
1927

2028

2129
v1.3.0 (December 12, 2017)

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.3.2-dev',
36+
version='1.4.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.3.2-dev'
93+
__version__ = '1.4.0'

0 commit comments

Comments
 (0)