Skip to content

Commit

Permalink
Update changelog and List
Browse files Browse the repository at this point in the history
Signed-off-by: pem70 <[email protected]>
  • Loading branch information
pem70 committed Aug 7, 2024
1 parent a25a464 commit 7f7e66d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to the Zowe Client Python SDK will be documented in this file.

## Recent Changes

### Enhancements

- *Breaking*: Update custom class for REST API responses [#89] (https://github.com/zowe/zowe-client-python-sdk/issues/89)

### Bug Fixes


## `1.0.0-dev19`

### Enhancements
Expand All @@ -14,8 +23,6 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil

- Added checks and auto addition for license headers on workflow. [#293] (https://github.com/zowe/zowe-client-python-sdk/issues/293)

- *Breaking*: Update custom class for REST API responses [#89] (https://github.com/zowe/zowe-client-python-sdk/issues/89)

### Bug Fixes

## `1.0.0-dev18`
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""

from dataclasses import dataclass
from typing import Any, Optional
from typing import Any, List, Optional


@dataclass
Expand Down
4 changes: 2 additions & 2 deletions src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def list_jobs(
Returns
-------
list[JobResponse]
List[JobResponse]
A list of jobs on JES queue based on the given parameters
"""
custom_args = self._create_custom_request_arguments()
Expand Down Expand Up @@ -380,7 +380,7 @@ def get_spool_files(self, correlator: str) -> List[SpoolResponse]:
Returns
-------
list[SpoolResponse]
List[SpoolResponse]
A JSON object containing the result of the request execution
"""
custom_args = self._create_custom_request_arguments()
Expand Down

0 comments on commit 7f7e66d

Please sign in to comment.