diff --git a/.github/workflows/zowe-cli.yml b/.github/workflows/zowe-cli.yml index 0f4dd310a8..428bb0a42c 100644 --- a/.github/workflows/zowe-cli.yml +++ b/.github/workflows/zowe-cli.yml @@ -78,7 +78,7 @@ jobs: - name: Use Original NPM Version id: original-npm-version - run: npm install -g npm@${{ steps.npm-version.outputs.number }} + run: npm install -g npm@${{ steps.npm-version.outputs.number || '9' }} - name: Install Rust toolchain id: install-rust diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index b5058e76ad..da7378e9a1 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -2,9 +2,9 @@ All notable changes to the Zowe CLI package will be documented in this file. -## `7.18.3` +## `7.18.4` -- Enhancement: Bump Secrets SDK to `7.18.3` - uses more reliable resolution logic for `prebuilds` folder; adds static CRT for Windows builds. +- BugFix: Bump Secrets SDK to `7.18.4` - uses more reliable resolution logic for `prebuilds` folder; adds static CRT for Windows builds. ## `7.18.0` diff --git a/packages/secrets/CHANGELOG.md b/packages/secrets/CHANGELOG.md index 21496ab195..43029f672a 100644 --- a/packages/secrets/CHANGELOG.md +++ b/packages/secrets/CHANGELOG.md @@ -2,10 +2,10 @@ All notable changes to the Zowe Secrets SDK package will be documented in this file. -## `7.18.3` +## `7.18.4` -- Enhancement: Separated module resolution logic during installation; added more error handling to provide a more graceful installation process. -- Enhancement: Add static CRT when compiling Windows builds. +- BugFix: Separated module resolution logic during installation; added more error handling to provide a more graceful installation process. +- BugFix: Add static CRT when compiling Windows builds. - Added OVERVIEW document to package: provides context on the Secrets SDK transition and how it affects Zowe CLI and Zowe Explorer. ## `7.18.2` diff --git a/packages/secrets/src/keyring/Cargo.toml b/packages/secrets/src/keyring/Cargo.toml index 89d8267ff6..ba973e38ef 100644 --- a/packages/secrets/src/keyring/Cargo.toml +++ b/packages/secrets/src/keyring/Cargo.toml @@ -1,7 +1,10 @@ [package] edition = "2021" name = "keyring" -version = "0.0.0" +version = "1.0.0" +authors = ["Zowe Project"] +license = "EPL-2.0" +repository = "https://github.com/zowe/zowe-cli" [lib] crate-type = ["cdylib"]