Skip to content

Commit b11a44d

Browse files
authored
feat!: new major release - v4.0.0 (#412)
1 parent f53539d commit b11a44d

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/create-github-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- prerelease/**
88
- 252-patch
99
- 254-patch
10+
- 256-patch
1011
tags-ignore:
1112
- '*'
1213
workflow_dispatch:

.github/workflows/onRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
#ctc: true
4949
sign: true
5050
# At CLCO, the new patch branch's version will be released as 'prerelease'. After R2b, delete the logic below for 'latest' and update 'prerelease' candidate to 'latest'
51-
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') ||'next' }}
51+
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') || (needs.getMajorVersion.outputs.major == '3' && 'prerelease') ||'next' }}
5252
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
5353

5454
secrets: inherit

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: tests
22
on:
33
push:
4-
branches-ignore: [main, 252-patch, 254-patch]
4+
branches-ignore: [main, 252-patch, 254-patch, 256-patch]
55
workflow_dispatch:
66

77
jobs:

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,20 +232,24 @@
232232
"The 'versionToTagMappings' section defines the mapping between released tags for our CLI plugin and the org version that each tag supports."
233233
],
234234
"target": {
235-
"versionNumber": "64.0",
235+
"versionNumber": "65.0",
236236
"matchingDevServerVersion": "~12.3.4"
237237
},
238238
"versionToTagMappings": [
239239
{
240240
"versionNumber": "62.0",
241-
"tagName": "latest"
241+
"tagName": "v1"
242242
},
243243
{
244244
"versionNumber": "63.0",
245-
"tagName": "prerelease"
245+
"tagName": "latest"
246246
},
247247
{
248248
"versionNumber": "64.0",
249+
"tagName": "prerelease"
250+
},
251+
{
252+
"versionNumber": "65.0",
249253
"tagName": "next"
250254
}
251255
]

0 commit comments

Comments
 (0)