VirtoCommerce.GlobalTool 3.811.0-alpha.248

Prefix Reserved
This is a prerelease version of VirtoCommerce.GlobalTool.
There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global VirtoCommerce.GlobalTool --version 3.811.0-alpha.248
                    
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.811.0-alpha.248
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=VirtoCommerce.GlobalTool&version=3.811.0-alpha.248&prerelease
                    
nuke :add-package VirtoCommerce.GlobalTool --version 3.811.0-alpha.248
                    

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.817.0-alpha.264 20 9/16/2025
3.816.0 94 9/15/2025
3.816.0-alpha.262 108 9/5/2025
3.815.0 2,158 8/22/2025
3.815.0-alpha.260 74 8/22/2025
3.815.0-alpha.259 79 8/22/2025
3.814.0 134 8/22/2025
3.814.0-alpha.258 1,792 8/11/2025
3.814.0-alpha.257 79 8/1/2025
3.813.0 8,833 6/19/2025
3.813.0-alpha.254 427 6/16/2025
3.813.0-alpha.253 208 6/9/2025
3.812.0 1,798 6/9/2025
3.812.0-alpha.251 87 6/6/2025
3.811.0 4,991 5/2/2025
3.811.0-alpha.248 110 5/2/2025
3.811.0-alpha.247 128 5/1/2025
3.811.0-alpha.246 133 5/1/2025
3.811.0-alpha.245 139 5/1/2025
3.811.0-alpha.244 130 4/30/2025
3.811.0-alpha.243 173 4/29/2025
3.811.0-alpha.242 140 4/25/2025
3.811.0-alpha.241 235 4/15/2025
3.811.0-alpha.240 232 4/14/2025
3.810.0 6,878 3/24/2025
3.810.0-alpha.238 258 3/18/2025
3.810.0-alpha.237 134 3/18/2025
3.810.0-alpha.236 165 3/12/2025
3.810.0-alpha.235 1,130 2/26/2025
3.810.0-alpha.234 163 2/21/2025
3.810.0-alpha.233 114 2/20/2025
3.809.0 3,624 2/20/2025
3.809.0-alpha.231 126 2/18/2025
3.809.0-alpha.230 588 2/11/2025
3.809.0-alpha.229 122 2/6/2025
3.808.0 2,765 1/30/2025
3.808.0-alpha.227 2,980 11/19/2024
3.808.0-alpha.225 84 11/18/2024
3.807.0 6,539 11/18/2024
3.807.0-alpha.224 4,384 11/12/2024
3.807.0-alpha.223 130 10/29/2024
3.806.0 2,858 10/29/2024
3.806.0-alpha.222 121 10/23/2024
3.806.0-alpha.221 181 10/7/2024
3.805.0 3,510 10/7/2024
3.805.0-alpha.220 107 10/4/2024
3.805.0-alpha.219 120 10/3/2024
3.805.0-alpha.218 111 10/3/2024
3.805.0-alpha.217 107 10/3/2024
3.804.0 5,948 8/26/2024
3.804.0-alpha.215 300 8/21/2024
3.804.0-alpha.214 115 8/21/2024
3.804.0-alpha.213 119 8/12/2024
3.803.0 1,685 8/12/2024
3.803.0-alpha.212 806 8/1/2024
3.803.0-alpha.211 81 7/31/2024
3.803.0-alpha.210 82 7/31/2024
3.803.0-alpha.209 72 7/31/2024
3.803.0-alpha.208 96 7/30/2024
3.803.0-alpha.206 180 6/6/2024
3.802.0 6,485 6/6/2024
3.802.0-alpha.205 442 5/29/2024
3.802.0-alpha.204 148 5/28/2024
3.802.0-alpha.203 168 5/10/2024
3.801.0 3,400 5/10/2024
3.801.0-alpha.202 127 5/8/2024
3.801.0-alpha.201 72 5/2/2024
3.801.0-alpha.200 56 5/2/2024
3.800.0 4,430 4/15/2024
3.800.0-alpha.197 110 4/15/2024
3.800.0-alpha.196 1,476 4/11/2024
3.800.0-alpha.195 158 4/10/2024
3.800.0-alpha.194 146 4/9/2024
3.800.0-alpha.193 114 4/9/2024
3.800.0-alpha.192 187 4/3/2024
3.800.0-alpha.190 111 3/29/2024
3.800.0-alpha.189 114 3/29/2024
3.800.0-alpha.188 255 3/26/2024
3.800.0-alpha.187 141 3/25/2024
3.800.0-alpha.186 103 3/25/2024
3.800.0-alpha.185 158 3/21/2024
3.800.0-alpha.184 106 3/21/2024
3.800.0-alpha.183 107 3/20/2024
3.800.0-alpha.182 104 3/19/2024
3.800.0-alpha.181 115 3/15/2024
3.800.0-alpha.180 104 3/12/2024
3.800.0-alpha.179 113 3/12/2024
3.800.0-alpha.178 120 3/11/2024
3.800.0-alpha.177 109 3/7/2024
3.800.0-alpha.176 140 2/22/2024
3.800.0-alpha.175 125 2/22/2024
3.21.5 5,756 3/12/2024
3.21.4 454 3/11/2024
3.21.3 615 3/6/2024
3.21.2 875 3/1/2024
3.21.1 1,009 2/23/2024
3.21.0 831 2/20/2024
3.21.0-alpha.173 103 2/20/2024
3.20.0 4,911 1/25/2024
3.20.0-alpha.171 359 1/24/2024
3.20.0-alpha.170 105 1/12/2024
3.20.0-alpha.169 113 1/11/2024
3.20.0-alpha.168 121 1/9/2024
3.20.0-alpha.167 117 12/26/2023
3.19.0 3,539 12/8/2023
3.19.0-alpha.165 108 12/7/2023
3.19.0-alpha.164 142 11/14/2023
3.19.0-alpha.163 99 11/13/2023
3.19.0-alpha.162 142 10/26/2023
3.19.0-alpha.161 162 10/4/2023
3.18.0 6,195 10/3/2023
3.18.0-alpha.159 169 10/3/2023
3.17.0 434 10/3/2023
3.17.0-alpha.157 146 9/22/2023
3.17.0-alpha.156 158 9/14/2023
3.17.0-alpha.155 141 9/13/2023
3.17.0-alpha.153 165 9/8/2023
3.16.0 4,109 8/24/2023
3.16.0-alpha.150 148 8/24/2023
3.16.0-alpha.149 137 8/24/2023
3.16.0-alpha.148 162 8/22/2023
3.16.0-alpha.147 145 8/22/2023
3.16.0-alpha.146 156 8/21/2023
3.15.0 9,505 8/8/2023
3.15.0-alpha.144 138 8/8/2023
3.15.0-alpha.143 180 8/7/2023
3.15.0-alpha.142 182 8/7/2023
3.15.0-alpha.141 199 7/10/2023
3.15.0-alpha.140 353 7/6/2023
3.15.0-alpha.139 191 7/6/2023
3.15.0-alpha.138 167 7/6/2023
3.15.0-alpha.137 166 6/15/2023
3.15.0-alpha.136 248 4/17/2023
3.14.0 9,921 4/17/2023
3.14.0-alpha.135 6,902 4/12/2023
3.14.0-alpha.134 273 4/6/2023
3.14.0-alpha.133 253 4/3/2023
3.13.0 1,491 4/3/2023
3.13.0-alpha.131 785 3/31/2023
3.13.0-alpha.130 270 3/29/2023
3.13.0-alpha.129 261 3/29/2023
3.13.0-alpha.128 411 3/24/2023
3.13.0-alpha.127 256 2/22/2023
3.13.0-alpha.126 2,085 2/21/2023
3.13.0-alpha.125 220 2/16/2023
3.12.0 4,219 2/16/2023
3.12.0-alpha.122 203 2/15/2023
3.12.0-alpha.121 250 2/8/2023
3.12.0-alpha.120 287 1/30/2023
3.12.0-alpha.118 247 1/20/2023
3.11.1 6,711 1/20/2023
3.11.0 620 1/19/2023
3.11.0-alpha.116 237 1/19/2023
3.11.0-alpha.113 237 1/18/2023
3.11.0-alpha.112 245 1/18/2023
3.11.0-alpha.111 230 1/18/2023
3.11.0-alpha.110 221 1/17/2023
3.11.0-alpha.109 252 1/16/2023
3.11.0-alpha.108 224 1/16/2023
3.11.0-alpha.107 257 1/13/2023
3.11.0-alpha.106 229 12/22/2022
3.11.0-alpha.105 206 12/21/2022
3.10.1 3,205 12/22/2022
3.10.0 2,457 12/21/2022
3.10.0-alpha.104 218 12/20/2022
3.10.0-alpha.103 219 12/20/2022
3.10.0-alpha.102 234 12/12/2022
3.10.0-alpha.101 207 12/12/2022
3.10.0-alpha.100 204 12/6/2022
3.10.0-alpha.99 2,962 12/1/2022
3.10.0-alpha.98 216 12/1/2022
3.10.0-alpha.96 195 11/29/2022
3.9.0 2,606 11/29/2022
3.9.0-alpha.95 203 11/28/2022
3.9.0-alpha.94 193 11/28/2022
3.8.0 17,259 10/24/2022
3.7.0 855 10/17/2022
3.7.0-alpha.92 276 9/26/2022
3.7.0-alpha.91 341 8/29/2022
3.7.0-alpha.90 234 8/24/2022
3.7.0-alpha.89 238 8/19/2022
3.6.0 4,423 8/19/2022
3.6.0-alpha.88 3,689 8/17/2022
3.6.0-alpha.87 240 8/12/2022
3.6.0-alpha.85 247 8/12/2022
3.6.0-alpha.84 256 7/21/2022
3.5.0 2,109 7/21/2022
3.5.0-alpha.83 255 7/21/2022
3.5.0-alpha.80 276 5/26/2022
3.4.1 4,584 5/27/2022
3.4.0 1,249 5/26/2022
3.4.0-alpha.76 257 5/26/2022
3.4.0-alpha.75 282 5/25/2022
3.3.0 2,123 4/26/2022
3.3.0-alpha.73 291 4/26/2022
3.3.0-alpha.72 287 4/20/2022
3.3.0-alpha.71 280 4/14/2022
3.3.0-alpha.70 341 4/14/2022
3.3.0-alpha.69 352 4/6/2022
3.3.0-alpha.67 251 4/5/2022
3.3.0-alpha.66 274 3/31/2022
3.2.0 2,283 3/31/2022
3.2.0-alpha.55 281 3/31/2022
3.2.0-alpha.54 272 3/30/2022
3.2.0-alpha.53 285 3/23/2022
3.2.0-alpha.52 278 2/25/2022
3.1.0 1,693 2/25/2022
3.1.0-alpha.51 277 2/25/2022
3.1.0-alpha.50 656 2/7/2022
3.1.0-alpha.49 284 2/3/2022
3.1.0-alpha.48 286 2/1/2022
3.1.0-alpha.47 305 2/1/2022
3.1.0-alpha.46 279 2/1/2022
3.1.0-alpha.45 285 1/31/2022
3.1.0-alpha.44 288 1/28/2022
3.0.0 2,332 1/28/2022
3.0.0-alpha.43 287 1/28/2022
3.0.0-alpha.42 296 1/28/2022
2.6.0-alpha.41 278 1/26/2022
2.6.0-alpha.40 283 1/25/2022
2.6.0-alpha.39 275 1/21/2022
2.5.1 5,878 2/2/2022
2.5.0 1,660 1/21/2022
2.5.0-alpha.38 271 1/21/2022
2.5.0-alpha.37 283 1/20/2022
2.5.0-alpha.36 295 1/18/2022
2.5.0-alpha.35 280 1/13/2022
2.4.0 759 1/13/2022
2.4.0-alpha.34 272 1/13/2022
2.4.0-alpha.33 280 1/12/2022
2.3.0 574 1/12/2022
2.3.0-alpha.32 266 1/12/2022
2.3.0-alpha.31 267 12/28/2021
2.2.0 712 12/28/2021
2.2.0-alpha.30 277 12/27/2021
2.2.0-alpha.29 1,239 12/20/2021
2.2.0-alpha.28 292 12/17/2021
2.2.0-alpha.27 289 12/17/2021
2.2.0-alpha.26 266 12/17/2021
2.2.0-alpha.25 305 12/15/2021
2.1.0 1,291 10/1/2021
2.1.0-alpha.24 310 12/15/2021
2.1.0-alpha.22 366 12/14/2021
2.1.0-alpha.21 304 12/8/2021
2.1.0-alpha.20 272 11/29/2021
2.1.0-alpha.19 292 11/29/2021
2.1.0-alpha.18 287 11/29/2021
2.1.0-alpha.17 3,216 11/26/2021
2.1.0-alpha.15 287 9/30/2021
2.1.0-alpha.14 444 9/29/2021
2.1.0-alpha.12 294 9/23/2021
2.1.0-alpha.11 322 9/22/2021
2.1.0-alpha.10 311 9/22/2021
2.1.0-alpha.9 292 9/3/2021
2.0.0 3,319 8/20/2021
2.0.0-beta0011 374 8/20/2021
2.0.0-beta0010 492 7/22/2021
2.0.0-beta0009 389 7/22/2021
2.0.0-beta0008 420 7/22/2021
2.0.0-beta0007 740 7/13/2021
2.0.0-beta0006 410 7/13/2021
2.0.0-beta0005 443 7/7/2021
2.0.0-beta0004 408 7/6/2021
2.0.0-beta0003 414 7/1/2021
2.0.0-beta0002 390 7/1/2021
2.0.0-beta0001 559 6/24/2021
2.0.0-alpha.38 303 8/20/2021
2.0.0-alpha.37 320 8/19/2021
2.0.0-alpha.36 324 8/19/2021
2.0.0-alpha.35 283 8/19/2021
2.0.0-alpha.34 296 8/18/2021
2.0.0-alpha.33 298 8/17/2021
2.0.0-alpha.32 296 8/16/2021
2.0.0-alpha.30 290 8/13/2021
2.0.0-alpha.28 299 8/13/2021
2.0.0-alpha.26 294 8/5/2021
2.0.0-alpha.20 357 8/2/2021
2.0.0-alpha.19 758 7/22/2021
2.0.0-alpha.16 298 7/22/2021
2.0.0-alpha.7 297 8/20/2021
1.7.5 17,348 5/28/2021
1.7.4 2,167 5/26/2021
1.7.3 674 5/26/2021
1.7.3-beta0005 561 5/21/2021
1.7.3-beta0004 417 5/21/2021
1.7.3-beta0003 428 5/20/2021
1.7.3-beta0002 400 5/20/2021
1.7.3-beta0001 407 5/20/2021
1.7.2 921 5/18/2021
1.7.2-beta0015 397 5/17/2021
1.7.2-beta0014 378 5/14/2021
1.7.2-beta0013 345 5/14/2021
1.7.2-beta0012 354 5/14/2021
1.7.2-beta0011 366 5/14/2021
1.7.2-beta0010 352 5/13/2021
1.7.2-beta0009 577 5/12/2021
1.7.2-beta0008 367 5/12/2021
1.7.2-beta0007 501 5/7/2021
1.7.2-beta0006 535 5/5/2021
1.7.2-beta0005 364 5/5/2021
1.7.2-beta0004 445 5/4/2021
1.7.2-beta0003 363 5/4/2021
1.7.2-beta0002 369 5/4/2021
1.7.2-beta0001 365 5/4/2021
1.7.1 1,297 4/30/2021
1.7.1-beta0002 520 4/29/2021
1.7.1-beta0001 407 4/29/2021
1.7.0 793 4/21/2021
1.7.0-beta0001 364 4/16/2021
1.6.0 698 4/12/2021
1.6.0-beta0001 927 4/9/2021
1.5.2 586 4/6/2021
1.5.2-beta0012 495 4/5/2021
1.5.2-beta0011 381 4/2/2021
1.5.2-beta0010 697 3/25/2021
1.5.2-beta0009 397 3/25/2021
1.5.2-beta0008 419 3/23/2021
1.5.2-beta0007 422 3/23/2021
1.5.2-beta0006 732 3/4/2021
1.5.2-beta0005 654 2/18/2021
1.5.2-beta0004 406 2/18/2021
1.5.2-beta0003 399 2/18/2021
1.5.2-beta0002 403 2/18/2021
1.5.2-beta0001 391 2/18/2021
1.5.1 2,766 1/26/2021
1.5.0 632 1/25/2021
1.4.19-beta0002 511 1/19/2021
1.4.19-beta0001 361 1/13/2021
1.4.18 3,872 11/3/2020
1.4.17 1,138 10/21/2020
1.4.16 703 10/19/2020
1.4.15 1,198 10/5/2020
1.4.14 664 10/5/2020
1.4.13 896 9/25/2020
1.4.12 687 9/25/2020
1.4.11 681 9/24/2020
1.4.10 663 9/24/2020
1.4.9 653 9/24/2020
1.4.8 776 9/22/2020
1.4.7 687 9/22/2020
1.4.6 947 9/11/2020
1.4.5 654 9/10/2020
1.4.4 765 9/9/2020
1.4.3 685 9/7/2020
1.4.2 787 9/4/2020
1.4.1 722 9/3/2020
1.4.0 765 8/31/2020
1.3.7 787 8/21/2020
1.3.6 699 8/19/2020
1.3.5 975 8/13/2020
1.3.4 778 8/5/2020
1.3.3 698 8/5/2020
1.3.2 680 8/4/2020
1.3.1 666 8/4/2020
1.3.0 773 7/22/2020
1.2.0 702 7/9/2020
1.1.1 717 6/26/2020
1.1.0 707 6/25/2020
1.0.2 748 6/18/2020
1.0.1 717 6/11/2020
1.0.0 2,990 6/8/2020