VirtoCommerce.GlobalTool 3.803.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global VirtoCommerce.GlobalTool --version 3.803.0
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local VirtoCommerce.GlobalTool --version 3.803.0
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=VirtoCommerce.GlobalTool&version=3.803.0
                    
nuke :add-package VirtoCommerce.GlobalTool --version 3.803.0
                    

Introduction

The VirtoCommerce Global Tool (vc-build) is the official CLI .NET Core GlobalTool that helps you build, test and deploy releases, create and push NuGet packages, provide package management for projects based on VirtoCommerce, and automate common DevOps tasks. It is powered by nuke.build - a cross-platform build automation system with C# DSL, that provides an approach to embrace existing IDE tooling and state where everyone in a team can manage and change the build scenarios. This allows writing build scenarios in C# and debugging them in Visual Studio. Also, along with cross-platform support, it was the best choice for us to build our own build automation solution on top of this project.

Check out the project source code for the implementation details.

vc-build CLI

The key features:

Build automation

  • build and bundle a module project (both managed and scripted parts)
  • discover and run all the unit tests from the solution
  • create and publish NuGet packages for projects from your solution, this can be helpful if you intend to re-use a module's logic in another project, you will be able to quickly publish the needed version as a NuGet package. In the private or public NuGet registry
  • include targets that allow performing various additional quality checks such as static code analysis (currently we support out-of-the-box integration with SonarCloud)

Packages management

  • install, update, uninstall modules
  • install and update a platform application
  • prepare backend package with specific versions of the platform and modules from the manifest file

The platform cold start optimization and data migration (WIP)

  • platform start optimization (slow run on Azure case)
  • get idempotent SQL scripts for all modules EF migrations with the ability to apply them in a specific order without installed platform and source code (helpful for migration from VirtoCommerce platform version 2 (latest) to version 3)

Before you start

Before you start using VirtoCommerce.GlobalTool, install the following in order to use all its functionality:

  • .NET SDK 5.x
  • Node.js 12.x
  • Git SCM

Installation

Run this command to install VirtoCommerce.GlobalTool on your machine:


dotnet tool install VirtoCommerce.GlobalTool  -g

Updating

Run this command to update VirtoCommerce.GlobalTool to the latest version:


dotnet tool update VirtoCommerce.GlobalTool -g

Getting started

To use VirtoCommerce.GlobalTool by invoke the tool run the following command: vc-build

To get the list of all targets:


vc-build help

Command output:

NUKE Execution Engine version 5.0.2 (Windows,.NETCoreApp,Version=v2.1)

Target with name 'help' does not exist. Available targets are:
  - ChangeVersion
  - Clean
  - ClearTemp
  - Compile
  - CompleteHotfix
  - CompleteRelease
  - Compress
  - GetManifestGit
  - GrabMigrator
  - IncrementMinor
  - IncrementPatch
  - Init
  - InitPlatform
  - Install
  - InstallModules
  - InstallPlatform
  - MassPullAndBuild
  - Pack
  - Publish
  - PublishManifestGit
  - PublishModuleManifest
  - PublishPackages
  - QuickRelease
  - Release
  - Restore
  - SonarQubeEnd
  - SonarQubeStart
  - StartAnalyzer
  - StartHotfix
  - StartRelease
  - SwaggerValidation
  - Test
  - Uninstall
  - Update
  - UpdateManifest
  - ValidateSwaggerSchema
  - WebPackBuild

To get help for the specific target:


vc-build help NameOfTheTarget

Usage examples

Below you can see how the specific target could be used

Compress

The target is used to create a redistributed zip archive for a module or platform. After executing, the resulting zip is placed in artifacts folder. To execute this target, you need to run this command in the root module folder of the cloned from GitHub repository.


vc-build compress

Console output


═══════════════════════════════════════
Target             Status      Duration
───────────────────────────────────────
Clean              Executed        0:00
Restore            Executed        0:07
Compile            Executed        0:06
WebPackBuild       Executed        0:00
Test               Executed        0:05
Publish            Executed        0:01
Compress           Executed        0:01
───────────────────────────────────────
Total                              0:23
═══════════════════════════════════════

StartRelease, CompleteRelease, QuickRelease, StartHotfix, CompleteHotfix

Used to automate the routine operations with release branches

StartRelease:
  • creates and pushes the new branch release/version from dev
CompleteRelease:
  • merges release/version into master and pushes
  • merges into dev branch, increments version's minor and pushes
QuickRelease:
  • triggers StartRelease and then CompleteRelease
StartHotfix:
  • increments version's patch in master
  • creates and pushes the new branch hotfix/version
CompleteHotfix:
  • merges hotfix branch into master
  • adds tag and pushes

Packages management

The vc-build provides the set of targets that allow you to easily install, uninstall, and update platform dependencies by simple CLI commands execution.

Install
vc-build install (with no args)
vc-build install -platform -version <version>
vc-build install -module <module> -version <version>
vc-build install -module <module>:<version>

This command downloads and install into the current folder the platform or modules with versions that are passed as the command parameters or defined in vc-package.json.

vc-package.json - file is used to maintain the list of installed modules with their versions. This allows vc-build to easily restore the platform with the modules when on a different machine, such as a build server, without all those packages.

  • vc-build install (with no args)

This target downloads and install into the current folder the platform and modules with versions described in vc-package.json. If vc-package.json is not found in the local folder, by default the command will download and install the latest platform and modules versions that are marked with the commerce group.

By default, install target will install all modules listed as dependencies in vc-package.json.

Examples:

vc-build install 
  • vc-build install -platform -version <version>

Fetch and install the platform with the specific version. If the platform with specified version does not exist in the registry, then this will fail. If no version is specified, the latest platform version will be installed.

Examples:

vc-build install -platform
vc-build install -platform -version 3.55.0
  • vc-build install -module -version <version>

Install the specified version of the module. This will fail if the version has not been published to the registry. If no version is specified, the latest module version will be installed. You can also install multiple modules with a single command by specifying multiple modules with their versions as arguments.

If the module to be installed has dependencies, their latest versions will be installed along with it.

This command also modified the vc-package.json with the installed dependencies after successful command execution.

Examples:

vc-build install -module VirtoCommerce.Cart
vc-build install -module VirtoCommerce.Cart -version 3.12.0
vc-build install -module VirtoCommerce.Cart:3.12.0 VirtoCommerce.Core:3.20.0
Update
vc-build update (with no args)
vc-build update -platform -version <version>
vc-build update -module <module> -version <version>

This command will update the platform and all modules listed to the version specified by <version>, respecting semver. If <version> is not specified the component will updated to the latest version. If no args are specified, the platform and all modules in the specified location will be updated.

This command also updated the installed dependencies versions in the vc-package.json

Examples:

vc-build update
vc-build update -platform
vc-build update -platform -version 3.14.0
vc-build update -module VirtoCommerce.Cart
vc-build update -module VirtoCommerce.Cart -version 3.30.0
Uninstall
vc-build uninstall -module <module>

This uninstalls a module and completely removes all modules that depend on it. It also removes uninstalled modules from your vc-package.json.

Examples:

vc-build uninstall -module VirtoCommerce.Cart
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
3.814.0-alpha.258 0 8/11/2025
3.814.0-alpha.257 67 8/1/2025
3.813.0 5,233 6/19/2025
3.813.0-alpha.254 422 6/16/2025
3.813.0-alpha.253 205 6/9/2025
3.812.0 1,783 6/9/2025
3.812.0-alpha.251 84 6/6/2025
3.811.0 4,976 5/2/2025
3.811.0-alpha.248 105 5/2/2025
3.811.0-alpha.247 124 5/1/2025
3.811.0-alpha.246 128 5/1/2025
3.811.0-alpha.245 134 5/1/2025
3.811.0-alpha.244 125 4/30/2025
3.811.0-alpha.243 169 4/29/2025
3.811.0-alpha.242 136 4/25/2025
3.811.0-alpha.241 231 4/15/2025
3.811.0-alpha.240 227 4/14/2025
3.810.0 6,863 3/24/2025
3.810.0-alpha.238 253 3/18/2025
3.810.0-alpha.237 130 3/18/2025
3.810.0-alpha.236 159 3/12/2025
3.810.0-alpha.235 1,127 2/26/2025
3.810.0-alpha.234 159 2/21/2025
3.810.0-alpha.233 111 2/20/2025
3.809.0 3,611 2/20/2025
3.809.0-alpha.231 123 2/18/2025
3.809.0-alpha.230 585 2/11/2025
3.809.0-alpha.229 118 2/6/2025
3.808.0 2,752 1/30/2025
3.808.0-alpha.227 2,886 11/19/2024
3.808.0-alpha.225 81 11/18/2024
3.807.0 6,525 11/18/2024
3.807.0-alpha.224 4,380 11/12/2024
3.807.0-alpha.223 127 10/29/2024
3.806.0 2,845 10/29/2024
3.806.0-alpha.222 118 10/23/2024
3.806.0-alpha.221 177 10/7/2024
3.805.0 3,493 10/7/2024
3.805.0-alpha.220 104 10/4/2024
3.805.0-alpha.219 116 10/3/2024
3.805.0-alpha.218 108 10/3/2024
3.805.0-alpha.217 104 10/3/2024
3.804.0 5,935 8/26/2024
3.804.0-alpha.215 296 8/21/2024
3.804.0-alpha.214 112 8/21/2024
3.804.0-alpha.213 116 8/12/2024
3.803.0 1,671 8/12/2024
3.803.0-alpha.212 803 8/1/2024
3.803.0-alpha.211 78 7/31/2024
3.803.0-alpha.210 79 7/31/2024
3.803.0-alpha.209 68 7/31/2024
3.803.0-alpha.208 93 7/30/2024
3.803.0-alpha.206 177 6/6/2024
3.802.0 6,471 6/6/2024
3.802.0-alpha.205 439 5/29/2024
3.802.0-alpha.204 143 5/28/2024
3.802.0-alpha.203 164 5/10/2024
3.801.0 3,387 5/10/2024
3.801.0-alpha.202 123 5/8/2024
3.801.0-alpha.201 69 5/2/2024
3.801.0-alpha.200 53 5/2/2024
3.800.0 4,349 4/15/2024
3.800.0-alpha.197 107 4/15/2024
3.800.0-alpha.196 1,472 4/11/2024
3.800.0-alpha.195 155 4/10/2024
3.800.0-alpha.194 142 4/9/2024
3.800.0-alpha.193 111 4/9/2024
3.800.0-alpha.192 184 4/3/2024
3.800.0-alpha.190 108 3/29/2024
3.800.0-alpha.189 111 3/29/2024
3.800.0-alpha.188 252 3/26/2024
3.800.0-alpha.187 136 3/25/2024
3.800.0-alpha.186 99 3/25/2024
3.800.0-alpha.185 155 3/21/2024
3.800.0-alpha.184 103 3/21/2024
3.800.0-alpha.183 103 3/20/2024
3.800.0-alpha.182 100 3/19/2024
3.800.0-alpha.181 112 3/15/2024
3.800.0-alpha.180 100 3/12/2024
3.800.0-alpha.179 107 3/12/2024
3.800.0-alpha.178 115 3/11/2024
3.800.0-alpha.177 103 3/7/2024
3.800.0-alpha.176 136 2/22/2024
3.800.0-alpha.175 119 2/22/2024
3.21.5 5,740 3/12/2024
3.21.4 439 3/11/2024
3.21.3 601 3/6/2024
3.21.2 859 3/1/2024
3.21.1 991 2/23/2024
3.21.0 815 2/20/2024
3.21.0-alpha.173 98 2/20/2024
3.20.0 4,897 1/25/2024
3.20.0-alpha.171 354 1/24/2024
3.20.0-alpha.170 99 1/12/2024
3.20.0-alpha.169 106 1/11/2024
3.20.0-alpha.168 116 1/9/2024
3.20.0-alpha.167 111 12/26/2023
3.19.0 3,524 12/8/2023
3.19.0-alpha.165 103 12/7/2023
3.19.0-alpha.164 138 11/14/2023
3.19.0-alpha.163 95 11/13/2023
3.19.0-alpha.162 135 10/26/2023
3.19.0-alpha.161 157 10/4/2023
3.18.0 6,163 10/3/2023
3.18.0-alpha.159 164 10/3/2023
3.17.0 429 10/3/2023
3.17.0-alpha.157 141 9/22/2023
3.17.0-alpha.156 154 9/14/2023
3.17.0-alpha.155 137 9/13/2023
3.17.0-alpha.153 156 9/8/2023
3.16.0 4,100 8/24/2023
3.16.0-alpha.150 140 8/24/2023
3.16.0-alpha.149 128 8/24/2023
3.16.0-alpha.148 153 8/22/2023
3.16.0-alpha.147 136 8/22/2023
3.16.0-alpha.146 147 8/21/2023
3.15.0 9,496 8/8/2023
3.15.0-alpha.144 129 8/8/2023
3.15.0-alpha.143 170 8/7/2023
3.15.0-alpha.142 173 8/7/2023
3.15.0-alpha.141 190 7/10/2023
3.15.0-alpha.140 343 7/6/2023
3.15.0-alpha.139 181 7/6/2023
3.15.0-alpha.138 157 7/6/2023
3.15.0-alpha.137 155 6/15/2023
3.15.0-alpha.136 235 4/17/2023
3.14.0 9,907 4/17/2023
3.14.0-alpha.135 6,891 4/12/2023
3.14.0-alpha.134 261 4/6/2023
3.14.0-alpha.133 240 4/3/2023
3.13.0 1,480 4/3/2023
3.13.0-alpha.131 773 3/31/2023
3.13.0-alpha.130 259 3/29/2023
3.13.0-alpha.129 250 3/29/2023
3.13.0-alpha.128 400 3/24/2023
3.13.0-alpha.127 243 2/22/2023
3.13.0-alpha.126 2,072 2/21/2023
3.13.0-alpha.125 208 2/16/2023
3.12.0 4,206 2/16/2023
3.12.0-alpha.122 191 2/15/2023
3.12.0-alpha.121 237 2/8/2023
3.12.0-alpha.120 274 1/30/2023
3.12.0-alpha.118 235 1/20/2023
3.11.1 6,699 1/20/2023
3.11.0 608 1/19/2023
3.11.0-alpha.116 224 1/19/2023
3.11.0-alpha.113 223 1/18/2023
3.11.0-alpha.112 232 1/18/2023
3.11.0-alpha.111 216 1/18/2023
3.11.0-alpha.110 207 1/17/2023
3.11.0-alpha.109 239 1/16/2023
3.11.0-alpha.108 211 1/16/2023
3.11.0-alpha.107 244 1/13/2023
3.11.0-alpha.106 217 12/22/2022
3.11.0-alpha.105 193 12/21/2022
3.10.1 3,192 12/22/2022
3.10.0 2,297 12/21/2022
3.10.0-alpha.104 206 12/20/2022
3.10.0-alpha.103 207 12/20/2022
3.10.0-alpha.102 221 12/12/2022
3.10.0-alpha.101 195 12/12/2022
3.10.0-alpha.100 192 12/6/2022
3.10.0-alpha.99 2,949 12/1/2022
3.10.0-alpha.98 204 12/1/2022
3.10.0-alpha.96 182 11/29/2022
3.9.0 2,594 11/29/2022
3.9.0-alpha.95 190 11/28/2022
3.9.0-alpha.94 181 11/28/2022
3.8.0 16,881 10/24/2022
3.7.0 842 10/17/2022
3.7.0-alpha.92 262 9/26/2022
3.7.0-alpha.91 327 8/29/2022
3.7.0-alpha.90 220 8/24/2022
3.7.0-alpha.89 222 8/19/2022
3.6.0 4,386 8/19/2022
3.6.0-alpha.88 3,675 8/17/2022
3.6.0-alpha.87 227 8/12/2022
3.6.0-alpha.85 234 8/12/2022
3.6.0-alpha.84 241 7/21/2022
3.5.0 2,096 7/21/2022
3.5.0-alpha.83 241 7/21/2022
3.5.0-alpha.80 262 5/26/2022
3.4.1 4,570 5/27/2022
3.4.0 1,235 5/26/2022
3.4.0-alpha.76 244 5/26/2022
3.4.0-alpha.75 268 5/25/2022
3.3.0 2,109 4/26/2022
3.3.0-alpha.73 278 4/26/2022
3.3.0-alpha.72 273 4/20/2022
3.3.0-alpha.71 266 4/14/2022
3.3.0-alpha.70 327 4/14/2022
3.3.0-alpha.69 339 4/6/2022
3.3.0-alpha.67 238 4/5/2022
3.3.0-alpha.66 260 3/31/2022
3.2.0 2,270 3/31/2022
3.2.0-alpha.55 266 3/31/2022
3.2.0-alpha.54 258 3/30/2022
3.2.0-alpha.53 272 3/23/2022
3.2.0-alpha.52 265 2/25/2022
3.1.0 1,680 2/25/2022
3.1.0-alpha.51 264 2/25/2022
3.1.0-alpha.50 642 2/7/2022
3.1.0-alpha.49 270 2/3/2022
3.1.0-alpha.48 273 2/1/2022
3.1.0-alpha.47 290 2/1/2022
3.1.0-alpha.46 266 2/1/2022
3.1.0-alpha.45 270 1/31/2022
3.1.0-alpha.44 275 1/28/2022
3.0.0 2,318 1/28/2022
3.0.0-alpha.43 274 1/28/2022
3.0.0-alpha.42 283 1/28/2022
2.6.0-alpha.41 265 1/26/2022
2.6.0-alpha.40 269 1/25/2022
2.6.0-alpha.39 262 1/21/2022
2.5.1 5,767 2/2/2022
2.5.0 1,646 1/21/2022
2.5.0-alpha.38 257 1/21/2022
2.5.0-alpha.37 270 1/20/2022
2.5.0-alpha.36 281 1/18/2022
2.5.0-alpha.35 265 1/13/2022
2.4.0 745 1/13/2022
2.4.0-alpha.34 258 1/13/2022
2.4.0-alpha.33 266 1/12/2022
2.3.0 560 1/12/2022
2.3.0-alpha.32 252 1/12/2022
2.3.0-alpha.31 254 12/28/2021
2.2.0 698 12/28/2021
2.2.0-alpha.30 264 12/27/2021
2.2.0-alpha.29 1,226 12/20/2021
2.2.0-alpha.28 278 12/17/2021
2.2.0-alpha.27 276 12/17/2021
2.2.0-alpha.26 253 12/17/2021
2.2.0-alpha.25 291 12/15/2021
2.1.0 1,276 10/1/2021
2.1.0-alpha.24 296 12/15/2021
2.1.0-alpha.22 352 12/14/2021
2.1.0-alpha.21 291 12/8/2021
2.1.0-alpha.20 259 11/29/2021
2.1.0-alpha.19 278 11/29/2021
2.1.0-alpha.18 273 11/29/2021
2.1.0-alpha.17 3,203 11/26/2021
2.1.0-alpha.15 273 9/30/2021
2.1.0-alpha.14 430 9/29/2021
2.1.0-alpha.12 280 9/23/2021
2.1.0-alpha.11 308 9/22/2021
2.1.0-alpha.10 297 9/22/2021
2.1.0-alpha.9 279 9/3/2021
2.0.0 3,302 8/20/2021
2.0.0-beta0011 361 8/20/2021
2.0.0-beta0010 479 7/22/2021
2.0.0-beta0009 376 7/22/2021
2.0.0-beta0008 406 7/22/2021
2.0.0-beta0007 727 7/13/2021
2.0.0-beta0006 397 7/13/2021
2.0.0-beta0005 430 7/7/2021
2.0.0-beta0004 395 7/6/2021
2.0.0-beta0003 401 7/1/2021
2.0.0-beta0002 377 7/1/2021
2.0.0-beta0001 546 6/24/2021
2.0.0-alpha.38 291 8/20/2021
2.0.0-alpha.37 305 8/19/2021
2.0.0-alpha.36 311 8/19/2021
2.0.0-alpha.35 269 8/19/2021
2.0.0-alpha.34 282 8/18/2021
2.0.0-alpha.33 285 8/17/2021
2.0.0-alpha.32 283 8/16/2021
2.0.0-alpha.30 277 8/13/2021
2.0.0-alpha.28 286 8/13/2021
2.0.0-alpha.26 280 8/5/2021
2.0.0-alpha.20 344 8/2/2021
2.0.0-alpha.19 744 7/22/2021
2.0.0-alpha.16 284 7/22/2021
2.0.0-alpha.7 284 8/20/2021
1.7.5 17,335 5/28/2021
1.7.4 2,154 5/26/2021
1.7.3 660 5/26/2021
1.7.3-beta0005 548 5/21/2021
1.7.3-beta0004 404 5/21/2021
1.7.3-beta0003 415 5/20/2021
1.7.3-beta0002 387 5/20/2021
1.7.3-beta0001 394 5/20/2021
1.7.2 908 5/18/2021
1.7.2-beta0015 383 5/17/2021
1.7.2-beta0014 365 5/14/2021
1.7.2-beta0013 332 5/14/2021
1.7.2-beta0012 340 5/14/2021
1.7.2-beta0011 352 5/14/2021
1.7.2-beta0010 339 5/13/2021
1.7.2-beta0009 564 5/12/2021
1.7.2-beta0008 354 5/12/2021
1.7.2-beta0007 489 5/7/2021
1.7.2-beta0006 520 5/5/2021
1.7.2-beta0005 351 5/5/2021
1.7.2-beta0004 432 5/4/2021
1.7.2-beta0003 350 5/4/2021
1.7.2-beta0002 356 5/4/2021
1.7.2-beta0001 352 5/4/2021
1.7.1 1,284 4/30/2021
1.7.1-beta0002 507 4/29/2021
1.7.1-beta0001 393 4/29/2021
1.7.0 780 4/21/2021
1.7.0-beta0001 350 4/16/2021
1.6.0 685 4/12/2021
1.6.0-beta0001 914 4/9/2021
1.5.2 572 4/6/2021
1.5.2-beta0012 482 4/5/2021
1.5.2-beta0011 367 4/2/2021
1.5.2-beta0010 684 3/25/2021
1.5.2-beta0009 384 3/25/2021
1.5.2-beta0008 404 3/23/2021
1.5.2-beta0007 409 3/23/2021
1.5.2-beta0006 717 3/4/2021
1.5.2-beta0005 639 2/18/2021
1.5.2-beta0004 391 2/18/2021
1.5.2-beta0003 384 2/18/2021
1.5.2-beta0002 387 2/18/2021
1.5.2-beta0001 376 2/18/2021
1.5.1 2,748 1/26/2021
1.5.0 614 1/25/2021
1.4.19-beta0002 493 1/19/2021
1.4.19-beta0001 343 1/13/2021
1.4.18 3,854 11/3/2020
1.4.17 1,120 10/21/2020
1.4.16 684 10/19/2020
1.4.15 1,180 10/5/2020
1.4.14 644 10/5/2020
1.4.13 878 9/25/2020
1.4.12 667 9/25/2020
1.4.11 663 9/24/2020
1.4.10 645 9/24/2020
1.4.9 635 9/24/2020
1.4.8 756 9/22/2020
1.4.7 669 9/22/2020
1.4.6 928 9/11/2020
1.4.5 636 9/10/2020
1.4.4 747 9/9/2020
1.4.3 667 9/7/2020
1.4.2 767 9/4/2020
1.4.1 704 9/3/2020
1.4.0 746 8/31/2020
1.3.7 769 8/21/2020
1.3.6 681 8/19/2020
1.3.5 957 8/13/2020
1.3.4 760 8/5/2020
1.3.3 679 8/5/2020
1.3.2 662 8/4/2020
1.3.1 648 8/4/2020
1.3.0 755 7/22/2020
1.2.0 682 7/9/2020
1.1.1 698 6/26/2020
1.1.0 688 6/25/2020
1.0.2 730 6/18/2020
1.0.1 699 6/11/2020
1.0.0 2,971 6/8/2020