Skip to content

Commit 2d0bf9e

Browse files
committed
Create v1.13.1-rc release candidate.
1 parent 22387dd commit 2d0bf9e

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
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.13.1 - 2023-07-14
5+
6+
- Add nunique method for CASTable
7+
- Add drop_duplicates method for CASTable
8+
- Add new testcases to swat/tests/test_dataframe.py and swat/tests/cas/test_table.py
9+
410
## 1.13.0 - 2023-04-20
511

612
- Add Python 3.11 support

doc/source/whatsnew.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ What’s New
88

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

11+
1.13.1 (July 14, 2023)
12+
----------------------
13+
14+
- Add nunique method for CASTable
15+
- Add drop_duplicates method for CASTable
16+
- Add new testcases to swat/tests/test_dataframe.py and
17+
swat/tests/cas/test_table.py
18+
1119
1.13.0 (April 20, 2023)
1220
-----------------------
1321

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.13.1-dev',
36+
version='1.13.1',
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
@@ -93,5 +93,5 @@
9393
# SAS Formatter
9494
from .formatter import SASFormatter # noqa: E402
9595

96-
__version__ = '1.13.1-dev'
96+
__version__ = '1.13.1'
9797
__tk_version__ = None

0 commit comments

Comments
 (0)