Skip to content

Commit 0a75f3e

Browse files
committed
Create v1.17.1-rc release candidate.
1 parent bef3320 commit 0a75f3e

4 files changed

Lines changed: 15 additions & 2 deletions

File tree

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.17.1 - 2026-03-06
5+
6+
- Cleanup miscellaneous test suite issues
7+
- Fix AttributeError: 'StringDtype' object has no attribute 'str'
8+
- Fix warning about chained assignment using an inplace method
9+
410
## 1.17.0 - 2025-09-30
511

612
- Add Python 3.13 support

doc/source/whatsnew.rst

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

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

12+
1.17.1 (March 6, 2026)
13+
----------------------
14+
15+
- Cleanup miscellaneous test suite issues
16+
- Fix AttributeError: ‘StringDtype’ object has no attribute ‘str’
17+
- Fix warning about chained assignment using an inplace method
18+
1219
1.17.0 (September 30, 2025)
1320
---------------------------
1421

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.17.1-dev',
36+
version='1.17.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.17.1-dev'
96+
__version__ = '1.17.1'
9797
__tk_version__ = None

0 commit comments

Comments
 (0)