Skip to content

Commit f58d90d

Browse files
committed
Prep for release
1 parent 244d9d0 commit f58d90d

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Unreleased
22
----------
33
-
4+
5+
v1.8.1 (2023-01-19)
6+
----------
7+
**Changes**
8+
- Adjusted workflow for code coverage reporting. Prepped to add components in next release.
9+
- Added `generate_requirements_json.ipynb` example.
10+
11+
**Bugfixes**
12+
- Fixed improper math.fabs use in `sasctl.pzmm.writeJSONFiles.calculateFitStat()`.
13+
- Fixed incorrect ast node walk for module collection in `sasctl.pzmm.writeJSONFiles.create_requirements_json()`.
414

515
v1.8.0 (2022-12-19)
616
-------------------
@@ -10,6 +20,8 @@ v1.8.0 (2022-12-19)
1020
custom property names and values, and to correctly indicate their type (numeric, string, date, datetime) when
1121
passing the values to Viya.
1222
- Added `services.saslogon` for creating and removing OAuth clients.
23+
- Added `pzmm.JSONFiles.create_requirements_json()` to create the requirements.json file for model deployment
24+
to containers based on the user's model assets and Python environment.
1325

1426
**Changes**
1527
- Deprecated `core.platform_version()` in favor of `Session.version_info()`.
@@ -19,6 +31,7 @@ v1.8.0 (2022-12-19)
1931
- Updated the testing framework to allow regression testing of multiple Viya versions.
2032
- Refactored the authentication functionality in `Session` to be more clear and less error prone. Relevant
2133
functions were also made private to reduce clutter in the class's public interface.
34+
- Began refactor for `sasctl.pzmm` to adhere to PEP8 guidelines and have better code coverage.
2235

2336
**Bugfixes**
2437
- Fixed an issue with `register_model()` that caused invalid SAS score code to be generated when registering an

src/sasctl/__init__.py

Lines changed: 1 addition & 1 deletion
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.8.0"
7+
__version__ = "1.8.1"
88
__author__ = "SAS"
99
__credits__ = [
1010
"Yi Jian Ching",

0 commit comments

Comments
 (0)