Skip to content

Commit 7a6f339

Browse files
author
Kevin D Smith
committed
Prepare for v1.2.1
1 parent 88caeda commit 7a6f339

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

CHANGELOG.md

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

22
# Change Log
33

4+
## 1.2.1 - 2017-09-13
5+
6+
- Better support for binary data in table uploads and parameters
7+
- Add integer missing value support
8+
- Allow list parameters to also be sets
9+
- Improve connection protocol detection
10+
- Add `eval` method to `CASTable`
11+
412
## 1.2.0 - 2017-05-02
513

614
- Use `upload` action rather than `addtable` for `read_*` methods.

doc/source/whatsnew.rst

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

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

12+
v1.2.1 (September 13, 2017)
13+
===========================
14+
15+
- Better support for binary data in table uploads and parameters
16+
- Add integer missing value support
17+
- Allow list parameters to also be sets
18+
- Improve connection protocol detection
19+
- Add ``eval`` method to ``CASTable``
20+
1221
v1.2.0 (May 2, 2017)
1322
====================
1423

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.1-dev',
37+
version = '1.2.1',
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
@@ -86,4 +86,4 @@
8686
# SAS Formatter
8787
from .formatter import SASFormatter
8888

89-
__version__ = '1.2.1-dev'
89+
__version__ = '1.2.1'

0 commit comments

Comments
 (0)