Skip to content

Commit

Permalink
Prepare for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin D Smith committed Jul 25, 2018
1 parent f2f50e1 commit 972e388
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

# Change Log

## 1.4.0 - 2018-07-25

- Automatic CAS table creation when large number of By groups are generated in some DataFrame methods
- Debugging options for REST interface
- Python 3.7 support

## 1.3.1 - 2018-06-04

- Increase compatibility with older and newer versions of pandas
Expand Down
12 changes: 10 additions & 2 deletions doc/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,21 @@ What's New

This document outlines features and improvements from each release.

v1.4.0 (July 25, 2018)
======================

- Automatic CAS table creation when large number of By groups are generated in some DataFrame methods
- Debugging options for REST interface
- Python 3.7 support


v1.3.1 (June 4, 2018)
=====================

- Increase compatibility with older and newer versions of pandas
- Automatically convert columns with SAS date/time formats to Python date/time objects
- Improve `CASTable.merge` algorithm
- Fix autocompletion on `CAS` and `CASTable` objects
- Improve ``CASTable.merge`` algorithm
- Fix autocompletion on ``CAS`` and ``CASTable`` objects


v1.3.0 (December 12, 2017)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_file(fname):
setup(
zip_safe=False,
name='swat',
version='1.3.2-dev',
version='1.4.0',
description='SAS Scripting Wrapper for Analytics Transfer (SWAT)',
long_description=get_file('README.md'),
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion swat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@
# SAS Formatter
from .formatter import SASFormatter # noqa: E402

__version__ = '1.3.2-dev'
__version__ = '1.4.0'

0 comments on commit 972e388

Please sign in to comment.