Skip to content

Commit 218e3e0

Browse files
author
Kevin D Smith
committed
Prepare for v1.3.0 release
1 parent 317ea61 commit 218e3e0

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

CHANGELOG.md

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

22
# Change Log
33

4+
## 1.3.0 - 2017-12-12
5+
6+
- Add new summary statistics for new version of CAS
7+
- Improve missing value support in `CASTable` `describe` method
8+
- Add controller failover support
9+
- Improve encrypted communication support
10+
- Add `add`, `any`, `all`, `merge`, and `append` methods to `CASTable`
11+
- Add `merge` and `concat` functions with `CASTable` support
12+
413
## 1.2.1 - 2017-09-13
514

615
- Better support for binary data in table uploads and parameters

doc/source/whatsnew.rst

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

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

12+
v1.3.0 (December 12, 2017)
13+
==========================
14+
15+
- Add new summary statistics for new version of CAS
16+
- Improve missing value support in ``CASTable`` ``describe`` method
17+
- Add controller failover support
18+
- Improve encrypted communication support
19+
- Add ``add``, ``any``, ``all``, ``merge``, and ``append`` methods to ``CASTable``
20+
- Add ``merge`` and ``concat`` functions with ``CASTable`` support
21+
22+
1223
v1.2.1 (September 13, 2017)
1324
===========================
1425

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
setup(
3535
zip_safe=False,
3636
name='swat',
37-
version='1.2.2-dev',
37+
version='1.3.0',
3838
description='SAS Scripting Wrapper for Analytics Transfer (SWAT)',
3939
long_description=README,
4040
author='SAS',

swat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@
8989
# SAS Formatter
9090
from .formatter import SASFormatter # noqa: E402
9191

92-
__version__ = '1.2.2-dev'
92+
__version__ = '1.3.0'

0 commit comments

Comments
 (0)