Skip to content

Commit

Permalink
Bump to 2.9.0, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sttz committed Sep 5, 2021
1 parent a1c7ef6 commit 0138432
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 27 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### 2.9.0 (2020-09-05)
* `install` is now the default action, so e.g. `install-unity 2021.1` works
* Add interactive prompt to upgrade a Unity project with `run`
* Fix `--opt` not being able to set `downloadSubdirectory` and `installPathMac`
* Fix Android SDK Build Tools version with Unity >= 2019.4

### 2.8.2 (2020-11-10)
* Don't add Documentation package for alpha releases
* Use Android SDK Platforms 29 for 2019.3+
Expand Down
2 changes: 1 addition & 1 deletion Command/Command.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<PropertyGroup Label="Package">
<Version>2.8.2</Version>
<Version>2.9.0</Version>
<Authors>Adrian Stutz (sttz.ch)</Authors>
<Product>install-unity CLI</Product>
<Description>CLI for install-unity unofficial Unity installer library</Description>
Expand Down
52 changes: 27 additions & 25 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ The project will use Unity's default setup, including packages. Alternatively, y
## CLI Help

````
install-unity v2.8.2
install-unity v2.9.0
USAGE: install-unity [--help] [--version] [--verbose...] [--yes] [--update]
[--data-path <path>] [--opt <name>=<value>...] <action>
Expand All @@ -126,11 +126,35 @@ GLOBAL OPTIONS:
-u, --update Force an update of the versions cache
--data-path <path> Store all data at the given path, also don't delete
packages after install
--opt <name>=<value> Set additional options. Use 'list' to show all
options and their default value and 'save' to create an
--opt <name>=<value> Set additional options. Use '--opt list' to show all
options and their default value and '--opt save' to create an
editable JSON config file.
ACTIONS:
---- INSTALL (default):
Download and install a version of Unity
USAGE: install-unity [options] [install] [--packages <name,name>...]
[--download] [--install] [--upgrade]
[--platform none|macos|windows|linux] [--yolo] [<version>]
OPTIONS:
<version> Pattern to match Unity version or release notes / unity hub
url
-p, --packages <name,name> Select packages to download and install ('all'
selects all available, '~NAME' matches substrings)
--download Only download the packages (requires '--data-path')
--install Install previously downloaded packages (requires
'--data-path')
--upgrade Replace existing matching Unity installation after successful
install
--platform none|macos|windows|linux Platform to download the packages for
(only valid with '--download', default = current platform)
--yolo Skip size and hash checks of downloaded files
---- LIST:
Get an overview of available or installed Unity versions
Expand All @@ -157,28 +181,6 @@ OPTIONS:
(default = current platform)
---- INSTALL:
Download and install a version of Unity
USAGE: install-unity [options] install [--packages <name,name>...] [--download]
[--install] [--upgrade]
[--platform none|macos|windows|linux] [--yolo] [<version>]
OPTIONS:
<version> Pattern to match Unity version or release notes / unity hub
url
-p, --packages <name,name> Select packages to download and install ('all'
selects all available, '~NAME' matches substrings)
--download Only download the packages (requires '--data-path')
--install Install previously downloaded packages (requires
'--data-path')
--upgrade Replace existing matching Unity installation after successful
install
--platform none|macos|windows|linux Platform to download the packages for
(only valid with '--download', default = current platform)
--yolo Skip size and hash checks of downloaded files
---- UNINSTALL:
Remove a previously installed version of Unity
Expand Down
2 changes: 1 addition & 1 deletion sttz.InstallUnity/sttz.InstallUnity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<PropertyGroup Label="Package">
<Version>2.8.2</Version>
<Version>2.9.0</Version>
<Authors>Adrian Stutz (sttz.ch)</Authors>
<Product>install-unity</Product>
<Description>install-unity unofficial Unity installer library</Description>
Expand Down

0 comments on commit 0138432

Please sign in to comment.