You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/RELEASENOTES.copy.md
+12
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,15 @@
1
+
## preview
2
+
3
+
Note that when using the preview version of AL-Go for GitHub, we recommend you Update your AL-Go system files, as soon as possible when informed that an update is available.
4
+
5
+
### Issues
6
+
7
+
- It is now possible to skip the modification of dependency version numbers when running the Increment Version number workflow or the Create Release workflow
8
+
9
+
### New Versioning Strategy
10
+
11
+
Setting versioning strategy to 3 will allow 3 segments of the version number to be defined in app.json and repoVersion. Only the 4th segment (Revision) will be defined by the GitHub [run_number](https://go.microsoft.com/fwlink/?linkid=2217416&clcid=0x409) for the CI/CD workflow. Increment version number and Create Release now also supports the ability to set a third segment to the RepoVersion and appversion in app.json.
Copy file name to clipboardExpand all lines: .github/workflows/IncrementVersionNumber.yaml
+14-8
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,13 @@ on:
10
10
required: false
11
11
default: '*'
12
12
versionNumber:
13
-
description: Updated Version Number. Use Major.Minor for absolute change, use +Major.Minor for incremental change.
14
-
required: true
13
+
description: New Version Number in main branch. Use Major.Minor (optionally add .Build for versioningstrategy 3) for absolute change, or +1, +0.1 (or +0.0.1 for versioningstrategy 3) incremental change.
14
+
required: false
15
+
default: ''
16
+
skipUpdatingDependencies:
17
+
description: Skip updating dependency version numbers in all apps.
0 commit comments