Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v1.12.0 (2026-08-26)
--------------------
**Improvements**
- Scikit-learn binary classifier models now return both classes when registering model
- Changed `use_cas_gateway` to be set to true as default for scoring functions
- Added optional `input_mapping` argument allowing users to map table variables to model variables when scoring models

**Bugfixes**
- Replaced deprecated distutils package with packaging to accomodate newer python versions

v1.11.8 (2026-04-24)
--------------------
**Bugfixes**
Expand Down
3 changes: 2 additions & 1 deletion src/sasctl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Copyright © 2019, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

__version__ = "1.11.8"
__version__ = "1.12.0"
__author__ = "SAS"
__credits__ = [
"Yi Jian Ching",
Expand All @@ -17,6 +17,7 @@
"DJ Moore",
"Samya Potlapalli",
"Samuel Babak",
"Hailey Patel",
]
__license__ = "Apache 2.0"
__copyright__ = (
Expand Down
Loading