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: Tasks/UnityBuild/UnityBuildV3/CHANGELOG.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [3.4.0]
9
+
10
+
### Added
11
+
12
+
- Project versioning configuration to modify a project's bundle version and/or build code and commit the change to the repository as well as create a tag
13
+
8
14
## [3.3.0]
9
15
10
16
### Added
@@ -112,4 +118,4 @@ Maintenance release
112
118
### Removed
113
119
114
120
- Removed build output path output variable. The build output path can now be set by the user as part of the build task configuration, hence output variable is not needed anymore
115
-
- Removed build log output variable. Whether to create a build log or not and where can be specified as part of the additional arguments setting
121
+
- Removed build log output variable. Whether to create a build log or not and where can be specified as part of the additional arguments setting
Copy file name to clipboardExpand all lines: Tasks/UnityBuild/UnityBuildV3/task.json
+113-6Lines changed: 113 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,11 @@
6
6
"helpMarkDown": "Use this task to build your Unity project and generate the target platform's output files. [More Information](https://unitydevops.com/docs/unity-build-task)",
"helpMarkDown": "(Optional) Enter the path to the Unity project within the repository. If no value is entered, the root of the repository will be used."
93
96
},
97
+
{
98
+
"name": "projectVersioningBundleVersionMode",
99
+
"type": "pickList",
100
+
"label": "Bundle versioning mode",
101
+
"defaultValue": "none",
102
+
"helpMarkDown": "Define if and how to modify the project's bundle version.",
103
+
"groupName": "versioning",
104
+
"options": {
105
+
"none": "None",
106
+
"increment": "Increment bundle version",
107
+
"set": "Set bundle version"
108
+
}
109
+
},
110
+
{
111
+
"name": "projectVersioningBundleVersionMajor",
112
+
"type": "string",
113
+
"label": "Major (Increment by / Set to)",
114
+
"groupName": "versioning",
115
+
"helpMarkDown": "Either the new value for the bundle major version or the increment for the major version to apply.",
0 commit comments