Skip to content

Commit 6ee762b

Browse files
author
Kevin D Smith
committed
Prepare for next release
1 parent 6cd01de commit 6ee762b

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
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.5.0 - 2018-09-18
5+
6+
- Windows support for binary CAS protocol
7+
- Added `with_params` method to `CASTable` to create one-off parameter object
8+
- Set appropriate column data types when uploading a `DataFrame`
9+
410
## 1.4.0 - 2018-07-25
511

612
- Automatic CAS table creation when large number of By groups are generated in some DataFrame methods

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+
v1.5.0 (September 18, 2018)
13+
===========================
14+
15+
- Windows support for binary CAS protocol
16+
- Added ``with_params`` method to ``CASTable`` to create one-off parameter object
17+
- Set appropriate column data types when uploading a ``DataFrame``
18+
19+
1220
v1.4.0 (July 25, 2018)
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.4.1-dev',
36+
version='1.5.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.4.1-dev'
93+
__version__ = '1.5.0'

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inline-quotes = single
1212
multiline-quotes = single
1313

1414
[tox]
15-
envlist = py27, py34, py35, py36-pd21, py36-pd22, py36
15+
envlist = py27, py34, py35, py36-pd21, py36-pd22, py36, py37
1616
toxworkdir = {env:TOX_WORK_DIR:.tox}
1717

1818
[testenv]
@@ -41,6 +41,8 @@ deps =
4141
changedir = {envdir}
4242

4343
commands =
44+
- {envbindir}/pip uninstall swat -qy
45+
{envbindir}/pip install --no-cache-dir {toxinidir}
4446
{envbindir}/nosetests -v {posargs:swat.tests.cas.test_basics}
4547
- {envbindir}/pip uninstall swat -qy
4648

0 commit comments

Comments
 (0)