Skip to content

Commit

Permalink
Update release config and finalize zoweVersion
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Sep 18, 2024
1 parent 68e05b5 commit c969142
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"typedoc:packages": "lerna run --parallel typedoc",
"audit:public": "npm audit --registry https://registry.npmjs.org/",
"bundle:webHelp": "cd packages/imperative/web-help && node build.js",
"prepare": "husky install && npm run bundle:webHelp",
"prepare": "husky && npm run bundle:webHelp",
"package": "node scripts/bundleCliTgz.js"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@zowe/cli",
"version": "8.0.0-next.202409111528",
"zoweVersion": "v3.0.0-prerelease",
"zoweVersion": "v3.0.0",
"description": "Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.",
"author": "Zowe",
"license": "EPL-2.0",
Expand Down
16 changes: 9 additions & 7 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
module.exports = {
branches: [
{
name: "master",
level: "minor"
},
// Temporarily put zowe-v2-lts branch first in the list.
// It should move down once latest becomes zowe-v3-lts.
{
name: "zowe-v?-lts",
level: "patch"
},
// Temporarily publish master branch as @next prerelease.
// When V3 goes live, remember to update alias tags below.
{
name: "next",
name: "master",
level: "none",
prerelease: true
prerelease: true,
channel: "next"
}
],
plugins: [
Expand All @@ -35,7 +36,8 @@ module.exports = {
}],
["@octorelease/lerna", {
aliasTags: {
"latest": ["zowe-v2-lts"]
"latest": ["zowe-v2-lts"],
"next": ["zowe-v3-lts"]
},
pruneShrinkwrap: ["@zowe/cli"],
smokeTest: true
Expand Down

0 comments on commit c969142

Please sign in to comment.