CliWrap 3.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CliWrap --version 3.4.0
NuGet\Install-Package CliWrap -Version 3.4.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CliWrap" Version="3.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CliWrap --version 3.4.0
#r "nuget: CliWrap, 3.4.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CliWrap as a Cake Addin
#addin nuget:?package=CliWrap&version=3.4.0

// Install CliWrap as a Cake Tool
#tool nuget:?package=CliWrap&version=3.4.0

CliWrap

Build Coverage Version Downloads Discord Donate

Project status: active. What does it mean?

CliWrap is a library for interacting with external command line interfaces. It provides a convenient model for launching processes, redirecting input and output streams, awaiting completion, handling cancellation, and more.

💬 If you want to chat, join my Discord server.

Download

📦 NuGet: dotnet add package CliWrap

Features

  • Airtight abstraction over System.Diagnostics.Process
  • Fluent configuration interface
  • Flexible support for piping
  • Fully asynchronous and cancellation-aware API
  • Designed with strict immutability in mind
  • Provides safety against typical deadlock scenarios
  • Tested on Windows, Linux, and macOS
  • Targets .NET Standard 2.0+, .NET Core 3.0+, .NET Framework 4.6.1+
  • No external dependencies

Usage

Video guide

📺 Watch Intro to CliWrap webinar on YouTube for a deep look into the library and its features!

Intro to CliWrap

Quick overview

Similarly to a shell, CliWrap's base unit of work is a command -- an object that encodes instructions for running a process. To build a command, start by calling Cli.Wrap(...) with the executable path, and then use the provided fluent interface to configure arguments, working directory, or other options. Once the command is configured, you can run it by calling ExecuteAsync():

using CliWrap;

var result = await Cli.Wrap("path/to/exe")
    .WithArguments("--foo bar")
    .WithWorkingDirectory("work/dir/path")
    .ExecuteAsync();
    
// Result contains:
// -- result.ExitCode        (int)
// -- result.StartTime       (DateTimeOffset)
// -- result.ExitTime        (DateTimeOffset)
// -- result.RunTime         (TimeSpan)

The code above spawns a child process with the configured command line arguments and working directory, and then asynchronously waits for it to exit. After the task has completed, it resolves a CommandResult object that contains the process exit code and other related information.

⚠️ CliWrap will throw an exception if the underlying process returns a non-zero exit code, as it usually indicates an error. You can override this behavior by disabling result validation using WithValidation(CommandResultValidation.None).

By default, the process's standard input, output and error streams are routed to CliWrap's equivalent of the null device, which represents an empty source and a target that discards all data. You can change this by calling WithStandardInputPipe(...), WithStandardOutputPipe(...), or WithStandardErrorPipe(...) to configure pipes for the corresponding streams:

var stdOutBuffer = new StringBuilder();
var stdErrBuffer = new StringBuilder();

// This particular example can also be simplified with ExecuteBufferedAsync()
// Continue reading below!
var result = await Cli.Wrap("path/to/exe")
    .WithArguments("--foo bar")
    .WithWorkingDirectory("work/dir/path")
    .WithStandardOutputPipe(PipeTarget.ToStringBuilder(stdOutBuffer))
    .WithStandardErrorPipe(PipeTarget.ToStringBuilder(stdErrBuffer))
    .ExecuteAsync();
    
// Contains stdOut/stdErr buffered in-memory as string
var stdOut = stdOutBuffer.ToString(); 
var stdErr = stdErrBuffer.ToString();

In this example, the data pushed to standard output and error streams is decoded as text and written to separate StringBuilder buffers. After the command has finished executing, you can inspect the contents of these buffers to see what the process has printed to the console during its runtime.

Handling command output is a very common use case, so CliWrap offers a few high-level execution models to make these scenarios simpler. In particular, the same thing shown above can also be achieved more succinctly with the ExecuteBufferedAsync() extension method:

using CliWrap;
using CliWrap.Buffered;

// Calling `ExecuteBufferedAsync()` instead of `ExecuteAsync()`
// implicitly configures pipes that write to in-memory buffers.
var result = await Cli.Wrap("path/to/exe")
    .WithArguments("--foo bar")
    .WithWorkingDirectory("work/dir/path")
    .ExecuteBufferedAsync();

// Result contains:
// -- result.StandardOutput  (string)
// -- result.StandardError   (string)
// -- result.ExitCode        (int)
// -- result.StartTime       (DateTimeOffset)
// -- result.ExitTime        (DateTimeOffset)
// -- result.RunTime         (TimeSpan)

⚠️ Be mindful when using ExecuteBufferedAsync(). Programs can write arbitrary data (including binary) to output and error streams, which may be impractical to buffer in-memory. For more advanced scenarios, CliWrap also provides other piping options, which are covered in the Piping section.

Command configuration

The fluent interface provided by the command object allows you to configure various options related to its execution. Below list covers all available configuration methods and their usage.

💡 Command is an immutable object, meaning that all configuration methods listed here return a new instance instead of modifying the existing one.

WithArguments(...)

Sets the command line arguments that will be passed to the child process.

Default: empty.

Set arguments directly from a string:

var cmd = Cli.Wrap("git")
    .WithArguments("commit -m \"my commit\"");

Set arguments from a list (each element is treated as a separate argument; spaces are escaped automatically):

var cmd = Cli.Wrap("git")
    .WithArguments(new[] {"commit", "-m", "my commit"});

Set arguments using a builder (same as above, but also automatically converts certain values to their string representations):

var cmd = Cli.Wrap("git")
    .WithArguments(args => args
        .Add("clone")
        .Add("https://github.com/Tyrrrz/CliWrap")
        .Add("--depth")
        .Add(20)); // <- formatted to a string

💡 You can define your own extension methods for ArgumentsBuilder to simplify the process of providing arguments for specific usage scenarios. See this tweet for an example.

WithWorkingDirectory(...)

Sets the working directory of the child process.

Default: current working directory, i.e. Directory.GetCurrentDirectory().

var cmd = Cli.Wrap("git")
    .WithWorkingDirectory("c:/projects/my project/");
WithEnvironmentVariables(...)

Sets additional environment variables that will be exposed to the child process.

Default: empty.

Set environment variables from a dictionary:

var cmd = Cli.Wrap("git")
    .WithEnvironmentVariables(new Dictionary<string, string?>
    {
        ["GIT_AUTHOR_NAME"] = "John",
        ["GIT_AUTHOR_EMAIL"] = "john@email.com"
    });

Set environment variables using a builder:

var cmd = Cli.Wrap("git")
    .WithEnvironmentVariables(env => env
        .Set("GIT_AUTHOR_NAME", "John")
        .Set("GIT_AUTHOR_EMAIL", "john@email.com"));

💡 These environment variables are set on top of those inherited from the parent process. If you provide a variable with the same name as one of the inherited variables, the provided value will take precedence. Additionally, you can also remove an inherited variable by setting its value to null.

WithCredentials(...)

Sets domain, name and password of the user, under whom the child process will be started.

Default: no credentials.

Set credentials directly:

var cmd = Cli.Wrap("git")
    .WithCredentials(new Credentials(
        "some_workspace",
        "johndoe",
        "securepassword123"
    ));

Set credentials using a builder:

var cmd = Cli.Wrap("git")
    .WithCredentials(creds => creds
       .SetDomain("some_workspace")
       .SetUserName("johndoe")
       .SetPassword("securepassword123"));

⚠️ Specifying domain and password is only supported on Windows and will result in an exception on other operating systems. Specifying username, on the other hand, is supported across all platforms.

WithValidation(...)

Sets the strategy for validating the result of an execution.

The following modes are available:

  • CommandResultValidation.None -- no validation
  • CommandResultValidation.ZeroExitCode -- ensures zero exit code when the process exits

Default: CommandResultValidation.ZeroExitCode.

Disable validation:

var cmd = Cli.Wrap("git")
    .WithValidation(CommandResultValidation.None);

Enable validation:

// Ensure that exit code is zero after the process exits (otherwise throw an exception)
var cmd = Cli.Wrap("git")
    .WithValidation(CommandResultValidation.ZeroExitCode);
WithStandardInputPipe(...)

Sets the pipe source that will be used for the standard input stream of the process.

Default: PipeSource.Null.

Read more about this method in the Piping section.

WithStandardOutputPipe(...)

Sets the pipe target that will be used for the standard output stream of the process.

Default: PipeTarget.Null.

Read more about this method in the Piping section.

WithStandardErrorPipe(...)

Sets the pipe target that will be used for the standard error stream of the process.

Default: PipeTarget.Null.

Read more about this method in the Piping section.

Piping

CliWrap provides a very powerful and flexible piping model that allows you to redirect process's streams, transform input and output data, and even chain multiple commands together with minimal effort. At its core, it's based on two abstractions: PipeSource which provides data for standard input stream, and PipeTarget which reads data coming from standard output or standard error streams.

By default, command's input pipe is set to PipeSource.Null and the output and error pipes are set to PipeTarget.Null. These objects effectively represent no-op stubs that provide empty input and discard all output respectively.

You can specify your own PipeSource and PipeTarget instances by calling the corresponding configuration methods on the command:

await using var input = File.OpenRead("input.txt");
await using var output = File.Create("output.txt");

await Cli.Wrap("foo")
    .WithStandardInputPipe(PipeSource.FromStream(input))
    .WithStandardOutputPipe(PipeTarget.ToStream(output))
    .ExecuteAsync();

Alternatively, pipes can also be configured in a slightly terser way by using pipe operators:

await using var input = File.OpenRead("input.txt");
await using var output = File.Create("output.txt");

await (input | Cli.Wrap("foo") | output).ExecuteAsync();

Both PipeSource and PipeTarget have many factory methods that let you create pipe implementations for different scenarios:

  • PipeSource:
    • PipeSource.Null -- represents an empty pipe source
    • PipeSource.FromStream(...) -- pipes data from any readable stream
    • PipeSource.FromFile(...) -- pipes data from a file
    • PipeSource.FromBytes(...) -- pipes data from a byte array
    • PipeSource.FromString(...) -- pipes from a text string
    • PipeSource.FromCommand(...) -- pipes data from standard output of another command
  • PipeTarget:
    • PipeTarget.Null -- represents a pipe target that discards all data
    • PipeTarget.ToStream(...) -- pipes data into any writeable stream
    • PipeTarget.ToFile(...) -- pipes data into a file
    • PipeTarget.ToStringBuilder(...) -- pipes data as text into StringBuilder
    • PipeTarget.ToDelegate(...) -- pipes data as text, line-by-line, into Action<string> or Func<string, Task>
    • PipeTarget.Merge(...) -- merges multiple outbound pipes by replicating the same data across all of them

Below you can see some examples of what you can achieve with the help of CliWrap's piping feature.

Pipe a string into stdin
var cmd = "Hello world" | Cli.Wrap("foo");
await cmd.ExecuteAsync();
Pipe stdout as text into a StringBuilder
var stdOutBuffer = new StringBuilder();

var cmd = Cli.Wrap("foo") | stdOutBuffer;
await cmd.ExecuteAsync();
Pipe a binary HTTP stream into stdin
using var httpClient = new HttpClient();
await using var input = await httpClient.GetStreamAsync("https://example.com/image.png");

var cmd = input | Cli.Wrap("foo");
await cmd.ExecuteAsync();
Pipe stdout of one command into stdin of another
var cmd = Cli.Wrap("foo") | Cli.Wrap("bar") | Cli.Wrap("baz");
await cmd.ExecuteAsync();
Pipe stdout and stderr into parent process
await using var stdOut = Console.OpenStandardOutput();
await using var stdErr = Console.OpenStandardError();

var cmd = Cli.Wrap("foo") | (stdOut, stdErr);
await cmd.ExecuteAsync();
Pipe stdout to a delegate
var cmd = Cli.Wrap("foo") | Debug.WriteLine;
await cmd.ExecuteAsync();
Pipe stdout into a file and stderr into a StringBuilder
var buffer = new StringBuilder();

var cmd = Cli.Wrap("foo") |
    (PipeTarget.ToFile("output.txt"), PipeTarget.ToStringBuilder(buffer));

await cmd.ExecuteAsync();
Pipe stdout into multiple files simultaneously
var target = PipeTarget.Merge(
    PipeTarget.ToFile("file1.txt"),
    PipeTarget.ToFile("file2.txt"),
    PipeTarget.ToFile("file3.txt")
);

var cmd = Cli.Wrap("foo") | target;
await cmd.ExecuteAsync();
Pipe a chain of commands
var cmd =
    "Hello world" |
    Cli.Wrap("foo").WithArguments("aaa") |
    Cli.Wrap("bar").WithArguments("bbb") |
    (Console.WriteLine, Console.Error.WriteLine);

await cmd.ExecuteAsync();

Execution models

CliWrap provides a few high-level execution models, which are essentially just extension methods that offer alternative ways to reason about command execution. Under the hood, they are all built by leveraging the piping feature shown earlier.

Buffered execution

This execution model lets you run a process while buffering its standard output and error streams in-memory. The buffered data can then be accessed after the command finishes executing.

In order to execute a command with buffering, call the ExecuteBufferedAsync() extension method:

using CliWrap;
using CliWrap.Buffered;

var result = await Cli.Wrap("path/to/exe")
    .WithArguments("--foo bar")
    .ExecuteBufferedAsync();

var exitCode = result.ExitCode;
var stdOut = result.StandardOutput;
var stdErr = result.StandardError;

By default, ExecuteBufferedAsync() assumes that the underlying process uses default encoding (Console.OutputEncoding) for writing text to the console. To override this, specify the encoding explicitly by using one of the available overloads:

// Treat both stdout and stderr as UTF8-encoded text streams
var result = await Cli.Wrap("path/to/exe")
    .WithArguments("--foo bar")
    .ExecuteBufferedAsync(Encoding.UTF8);

// Treat stdout as ASCII-encoded and stderr as UTF8-encoded
var result = await Cli.Wrap("path/to/exe")
    .WithArguments("--foo bar")
    .ExecuteBufferedAsync(Encoding.ASCII, Encoding.UTF8);
Pull-based event stream

Besides executing a command as a task, CliWrap also supports an alternative model, in which the execution is represented as an event stream. This lets you start a command and react to the events it produces in real-time.

Those events are:

  • StartedCommandEvent -- received just once, when the command starts executing (contains process ID)
  • StandardOutputCommandEvent -- received every time the underlying process writes a new line to the output stream (contains the text as string)
  • StandardErrorCommandEvent -- received every time the underlying process writes a new line to the error stream (contains the text as string)
  • ExitedCommandEvent -- received just once, when the command finishes executing (contains exit code)

To execute a command as a pull-based event stream, use the ListenAsync() extension method:

using CliWrap;
using CliWrap.EventStream;

var cmd = Cli.Wrap("foo").WithArguments("bar");

await foreach (var cmdEvent in cmd.ListenAsync())
{
    switch (cmdEvent)
    {
        case StartedCommandEvent started:
            _output.WriteLine($"Process started; ID: {started.ProcessId}");
            break;
        case StandardOutputCommandEvent stdOut:
            _output.WriteLine($"Out> {stdOut.Text}");
            break;
        case StandardErrorCommandEvent stdErr:
            _output.WriteLine($"Err> {stdErr.Text}");
            break;
        case ExitedCommandEvent exited:
            _output.WriteLine($"Process exited; Code: {exited.ExitCode}");
            break;
    }
}

The ListenAsync() method starts the command and returns an object of type IAsyncEnumerable<CommandEvent>, which you can iterate using the await foreach construct introduced in C# 8. When using this execution model, back pressure is facilitated by locking the pipes between each iteration of the loop, preventing unnecessary buffering of data in-memory.

If you also need to specify custom encoding, you can use one of the available overloads:

await foreach (var cmdEvent in cmd.ListenAsync(Encoding.UTF8))
{
    // ...
}

await foreach (var cmdEvent in cmd.ListenAsync(Encoding.ASCII, Encoding.UTF8))
{
    // ...
}
Push-based event stream

Similarly to the pull-based stream, you can also execute a command as a push-based event stream instead:

using CliWrap;
using CliWrap.EventStream;
using System.Reactive;

await cmd.Observe().ForEachAsync(cmdEvent =>
{
    switch (cmdEvent)
    {
        case StartedCommandEvent started:
            _output.WriteLine($"Process started; ID: {started.ProcessId}");
            break;
        case StandardOutputCommandEvent stdOut:
            _output.WriteLine($"Out> {stdOut.Text}");
            break;
        case StandardErrorCommandEvent stdErr:
            _output.WriteLine($"Err> {stdErr.Text}");
            break;
        case ExitedCommandEvent exited:
            _output.WriteLine($"Process exited; Code: {exited.ExitCode}");
            break;
    }
});

In this case, Observe() returns a cold IObservable<CommandEvent> that represents an observable stream of command events. You can use the set of extensions provided by Rx.NET to transform, filter, throttle, or otherwise manipulate this stream.

Unlike with the pull-based event stream, this execution model does not involve any back pressure, meaning that the data is pushed to the observer at the rate it becomes available.

Likewise, if you also need to specify custom encoding, you can use one of the available overloads:

var cmdEvents = cmd.Observe(Encoding.UTF8);

// ...

var cmdEvents = cmd.Observe(Encoding.ASCII, Encoding.UTF8);

// ...
Combining execution models with custom pipes

The different execution models shown above are based on the piping model, but those two concepts are not mutually exclusive. That's because internally they all rely on PipeTarget.Merge(), which allows them to wire new pipes while still preserving those configured earlier.

This means that, for example, you can create a piped command and also execute it as an event stream:

var cmd =
    PipeSource.FromFile("input.txt") |
    Cli.Wrap("foo") |
    PipeTarget.ToFile("output.txt");

// Iterate as an event stream and pipe to file at the same time
// (pipes are combined, not overriden)
await foreach (var cmdEvent in cmd.ListenAsync())
{
    // ...
}

Timeout and cancellation

Command execution is asynchronous in nature as it involves a completely separate process. In many cases, it may be useful to implement an abortion mechanism to stop the execution before it finishes, either through a manual trigger or a timeout.

To do that, just pass the corresponding CancellationToken when calling ExecuteAsync():

using var cts = new CancellationTokenSource();

// Cancel automatically after a timeout of 10 seconds
cts.CancelAfter(TimeSpan.FromSeconds(10));

var result = await Cli.Wrap("path/to/exe").ExecuteAsync(cts.Token);

In the event that the cancellation is requested, the underlying process will get killed and the ExecuteAsync() will throw an exception of type OperationCanceledException (or its derivative, TaskCanceledException). You will need to catch this exception in your code to recover from cancellation.

Similarly to ExecuteAsync(), cancellation is also supported by ExecuteBufferedAsync(), ListenAsync(), and Observe():

// Cancellation with buffered execution
var result = await Cli.Wrap("path/to/exe").ExecuteBufferedAsync(cts.Token);

// Cancellation with pull-based event stream
await foreach (Cli.Wrap("path/to/exe").ListenAsync(cts.Token))
{
    // ...
}

// Cancellation with push-based event stream
var cmdEvents = Cli.Wrap("path/to/exe").Observe(cts.Token);

Retrieving process ID

The task returned by ExecuteAsync() and ExecuteBufferedAsync() is in fact not a regular Task<T>, but an instance of CommandTask<T>. This is a special awaitable object that contains additional information related to a command which is currently executing.

You can inspect the task while it's running to get the ID of the process that was started by the associated command:

var task = Cli.Wrap("path/to/exe")
    .WithArguments("--foo bar")
    .ExecuteAsync();

// Get the process ID (for example, for logging purposes)
var processId = task.ProcessId;

// Wait for the task to complete
await task;
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (115)

Showing the top 5 NuGet packages that depend on CliWrap:

Package Downloads
YoutubeExplode.Converter

Extension for YoutubeExplode that provides an interface to download and convert videos using FFmpeg

Pulumi.Automation The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Pulumi Automation API, the programmatic interface for driving Pulumi programs without the CLI.

Weasyprint.Wrapped

A .netstandaard wrapper for the weasyprint PDF printer. This package is standalone and does not required you to install any software on your server. It runs on windows and linux.

TinyFx

TinyFx 基础组件

ModularPipelines The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Write your pipelines in C#!

GitHub repositories (49)

Showing the top 5 popular GitHub repositories that depend on CliWrap:

Repository Stars
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
d2phap/ImageGlass
🏞 A lightweight, versatile image viewer
BililiveRecorder/BililiveRecorder
录播姬 | mikufans 生放送录制
TheJoeFin/Text-Grab
Use OCR in Windows quickly and easily with Text Grab. With optional background process and notifications.
Tyrrrz/YoutubeExplode
Abstraction layer over YouTube's internal API
Version Downloads Last updated
3.6.6 219,556 1/16/2024
3.6.5 2,076 1/15/2024
3.6.4 663,525 6/23/2023
3.6.3 104,126 5/18/2023
3.6.2 1,216 5/18/2023
3.6.1 59,334 4/27/2023
3.4.1 112,405 1/30/2022
3.4.0 54,014 1/7/2022
3.3.3 1,148,229 8/31/2021
3.3.2 1,040,211 4/1/2021
3.3.1 44,377 2/21/2021
3.3.0 31,777 12/29/2020
3.2.4 23,456 12/5/2020
3.2.3 108,883 11/4/2020
3.2.2 49,255 10/14/2020
3.2.1 3,840 10/13/2020
3.2.0 85,770 9/17/2020
3.1.1 83,628 9/6/2020
3.1.0 46,866 6/27/2020
3.0.3 3,212 6/22/2020
3.0.2 370,347 4/28/2020
3.0.1 1,648 4/26/2020
3.0.0 72,212 2/27/2020
3.0.0-alpha3 1,390 2/23/2020
3.0.0-alpha2 1,257 2/22/2020
3.0.0-alpha 1,318 2/21/2020
2.5.0 32,027 10/30/2019
2.4.0 48,325 10/3/2019
2.3.1 30,760 7/10/2019
2.3.0 6,819 5/28/2019
2.2.2 5,882 5/10/2019
2.2.1 5,428 4/1/2019
2.2.0 40,298 12/20/2018
2.1.0 6,505 10/14/2018
2.0.1 2,353 9/17/2018
2.0.0 2,282 9/12/2018
1.8.5 9,217 6/9/2018
1.8.4 4,421 3/9/2018
1.8.3 2,314 3/3/2018
1.8.2 2,558 2/2/2018
1.8.1 2,357 1/25/2018
1.8.0 2,309 1/25/2018
1.7.6-alpha 2,141 1/24/2018
1.7.5 2,630 1/21/2018
1.7.4 2,444 1/10/2018
1.7.3 2,373 12/19/2017
1.7.2 2,308 12/19/2017
1.7.1 2,191 12/5/2017
1.7.0 2,161 12/4/2017
1.6.1 2,540 11/25/2017
1.6.0 2,492 10/18/2017
1.5.3 2,485 10/7/2017
1.5.2 2,455 10/2/2017
1.5.1 2,480 9/8/2017
1.5.0 2,287 7/25/2017
1.4.0 2,218 7/25/2017
1.3.0 2,311 6/30/2017
1.2.3 2,255 6/1/2017
1.2.2 2,212 5/4/2017
1.2.1 2,206 4/27/2017
1.2.0 2,233 4/27/2017
1.1.0 2,193 4/26/2017
1.0.0 3,895 4/11/2017