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 Sep 18, 2018
1 parent 6cd01de commit 6ee762b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 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.5.0 - 2018-09-18

- Windows support for binary CAS protocol
- Added `with_params` method to `CASTable` to create one-off parameter object
- Set appropriate column data types when uploading a `DataFrame`

## 1.4.0 - 2018-07-25

- Automatic CAS table creation when large number of By groups are generated in some DataFrame methods
Expand Down
8 changes: 8 additions & 0 deletions doc/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ What's New

This document outlines features and improvements from each release.

v1.5.0 (September 18, 2018)
===========================

- Windows support for binary CAS protocol
- Added ``with_params`` method to ``CASTable`` to create one-off parameter object
- Set appropriate column data types when uploading a ``DataFrame``


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

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.4.1-dev',
version='1.5.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.4.1-dev'
__version__ = '1.5.0'
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inline-quotes = single
multiline-quotes = single

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

[testenv]
Expand Down Expand Up @@ -41,6 +41,8 @@ deps =
changedir = {envdir}

commands =
- {envbindir}/pip uninstall swat -qy
{envbindir}/pip install --no-cache-dir {toxinidir}
{envbindir}/nosetests -v {posargs:swat.tests.cas.test_basics}
- {envbindir}/pip uninstall swat -qy

Expand Down

0 comments on commit 6ee762b

Please sign in to comment.