File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# Change Log
3
3
4
+ ## 1.13.2 - 2023-07-31
5
+
6
+ - Add CASTable.rename() to rename the columns of a table
7
+ - Add biomedical image filetypes to the Image Data Message Handler
8
+
4
9
## 1.13.1 - 2023-07-14
5
10
6
11
- Add nunique method for CASTable
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ What’s New
8
8
9
9
This document outlines features and improvements from each release.
10
10
11
+ 1.13.2 (July 31, 2023)
12
+ ----------------------
13
+
14
+ - Add CASTable.rename() to rename the columns of a table
15
+ - Add biomedical image filetypes to the Image Data Message Handler
16
+
11
17
1.13.1 (July 14, 2023)
12
18
----------------------
13
19
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def get_file(fname):
33
33
setup (
34
34
zip_safe = False ,
35
35
name = 'swat' ,
36
- version = '1.13.2-dev ' ,
36
+ version = '1.13.2' ,
37
37
description = 'SAS Scripting Wrapper for Analytics Transfer (SWAT)' ,
38
38
long_description = get_file ('README.md' ),
39
39
long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 93
93
# SAS Formatter
94
94
from .formatter import SASFormatter # noqa: E402
95
95
96
- __version__ = '1.13.2-dev '
96
+ __version__ = '1.13.2'
97
97
__tk_version__ = None
You can’t perform that action at this time.
0 commit comments