Skip to content

Commit 3c38bf7

Browse files
committed
prep for release
1 parent fd4a1e2 commit 3c38bf7

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
v1.11.0 (2024-10-29)
2+
--------------------
3+
**Changes**
4+
- Added `score_definition.py` and `score_execution.py` to allow for score testing within SAS Model Manager
5+
- Included optional use of CAS Gateway for faster scoring. Only available in environments where Gateway scoring is properly set up.
6+
- Added ability to include data pre-processing function within python score code using the `preprocess_function` argument.
7+
8+
**Bugfixes**
9+
- Fixed issue where settings file was improperly imported in some score code files.
10+
111
v1.10.7 (2024-10-02)
212
--------------------
313
**Changes**

src/sasctl/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright © 2019, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
55
# SPDX-License-Identifier: Apache-2.0
66

7-
__version__ = "1.10.7"
7+
__version__ = "1.11.0"
88
__author__ = "SAS"
99
__credits__ = [
1010
"Yi Jian Ching",
@@ -15,6 +15,7 @@
1515
"Jon Walker",
1616
"Scott Lindauer",
1717
"DJ Moore",
18+
"Samya Potlapalli"
1819
]
1920
__license__ = "Apache 2.0"
2021
__copyright__ = (

0 commit comments

Comments
 (0)