Skip to content

Commit 0138432

Browse files
committed
Bump to 2.9.0, update changelog
1 parent a1c7ef6 commit 0138432

File tree

4 files changed

+35
-27
lines changed

4 files changed

+35
-27
lines changed

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### 2.9.0 (2020-09-05)
4+
* `install` is now the default action, so e.g. `install-unity 2021.1` works
5+
* Add interactive prompt to upgrade a Unity project with `run`
6+
* Fix `--opt` not being able to set `downloadSubdirectory` and `installPathMac`
7+
* Fix Android SDK Build Tools version with Unity >= 2019.4
8+
39
### 2.8.2 (2020-11-10)
410
* Don't add Documentation package for alpha releases
511
* Use Android SDK Platforms 29 for 2019.3+

Command/Command.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<PropertyGroup Label="Package">
10-
<Version>2.8.2</Version>
10+
<Version>2.9.0</Version>
1111
<Authors>Adrian Stutz (sttz.ch)</Authors>
1212
<Product>install-unity CLI</Product>
1313
<Description>CLI for install-unity unofficial Unity installer library</Description>

Readme.md

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ The project will use Unity's default setup, including packages. Alternatively, y
113113
## CLI Help
114114

115115
````
116-
install-unity v2.8.2
116+
install-unity v2.9.0
117117
118118
USAGE: install-unity [--help] [--version] [--verbose...] [--yes] [--update]
119119
[--data-path <path>] [--opt <name>=<value>...] <action>
@@ -126,11 +126,35 @@ GLOBAL OPTIONS:
126126
-u, --update Force an update of the versions cache
127127
--data-path <path> Store all data at the given path, also don't delete
128128
packages after install
129-
--opt <name>=<value> Set additional options. Use 'list' to show all
130-
options and their default value and 'save' to create an
129+
--opt <name>=<value> Set additional options. Use '--opt list' to show all
130+
options and their default value and '--opt save' to create an
131131
editable JSON config file.
132132
133133
134+
ACTIONS:
135+
136+
---- INSTALL (default):
137+
Download and install a version of Unity
138+
139+
USAGE: install-unity [options] [install] [--packages <name,name>...]
140+
[--download] [--install] [--upgrade]
141+
[--platform none|macos|windows|linux] [--yolo] [<version>]
142+
143+
OPTIONS:
144+
<version> Pattern to match Unity version or release notes / unity hub
145+
url
146+
-p, --packages <name,name> Select packages to download and install ('all'
147+
selects all available, '~NAME' matches substrings)
148+
--download Only download the packages (requires '--data-path')
149+
--install Install previously downloaded packages (requires
150+
'--data-path')
151+
--upgrade Replace existing matching Unity installation after successful
152+
install
153+
--platform none|macos|windows|linux Platform to download the packages for
154+
(only valid with '--download', default = current platform)
155+
--yolo Skip size and hash checks of downloaded files
156+
157+
134158
---- LIST:
135159
Get an overview of available or installed Unity versions
136160
@@ -157,28 +181,6 @@ OPTIONS:
157181
(default = current platform)
158182
159183
160-
---- INSTALL:
161-
Download and install a version of Unity
162-
163-
USAGE: install-unity [options] install [--packages <name,name>...] [--download]
164-
[--install] [--upgrade]
165-
[--platform none|macos|windows|linux] [--yolo] [<version>]
166-
167-
OPTIONS:
168-
<version> Pattern to match Unity version or release notes / unity hub
169-
url
170-
-p, --packages <name,name> Select packages to download and install ('all'
171-
selects all available, '~NAME' matches substrings)
172-
--download Only download the packages (requires '--data-path')
173-
--install Install previously downloaded packages (requires
174-
'--data-path')
175-
--upgrade Replace existing matching Unity installation after successful
176-
install
177-
--platform none|macos|windows|linux Platform to download the packages for
178-
(only valid with '--download', default = current platform)
179-
--yolo Skip size and hash checks of downloaded files
180-
181-
182184
---- UNINSTALL:
183185
Remove a previously installed version of Unity
184186

sttz.InstallUnity/sttz.InstallUnity.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<PropertyGroup Label="Package">
10-
<Version>2.8.2</Version>
10+
<Version>2.9.0</Version>
1111
<Authors>Adrian Stutz (sttz.ch)</Authors>
1212
<Product>install-unity</Product>
1313
<Description>install-unity unofficial Unity installer library</Description>

0 commit comments

Comments
 (0)