Stripe.net 48.1.0-beta.2

Prefix Reserved
This is a prerelease version of Stripe.net.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Stripe.net --version 48.1.0-beta.2
                    
NuGet\Install-Package Stripe.net -Version 48.1.0-beta.2
                    
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="Stripe.net" Version="48.1.0-beta.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stripe.net" Version="48.1.0-beta.2" />
                    
Directory.Packages.props
<PackageReference Include="Stripe.net" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Stripe.net --version 48.1.0-beta.2
                    
#r "nuget: Stripe.net, 48.1.0-beta.2"
                    
#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.
#addin nuget:?package=Stripe.net&version=48.1.0-beta.2&prerelease
                    
Install Stripe.net as a Cake Addin
#tool nuget:?package=Stripe.net&version=48.1.0-beta.2&prerelease
                    
Install Stripe.net as a Cake Tool

Stripe.net

NuGet Build Status Coverage Status

The official Stripe .NET library, supporting .NET Standard 2.0+, .NET Core 3.1+, and .NET Framework 4.6.1+.

Installation

Using the .NET Core command-line interface (CLI) tools:

dotnet add package Stripe.net

Using the NuGet Command Line Interface (CLI):

nuget install Stripe.net

Using the Package Manager Console:

Install-Package Stripe.net

From within Visual Studio:

  1. Open the Solution Explorer.
  2. Right-click on a project within your solution.
  3. Click on Manage NuGet Packages...
  4. Click on the Browse tab and search for "Stripe.net".
  5. Click on the Stripe.net package, select the appropriate version in the right-tab and click Install.

Documentation

For a comprehensive list of examples, check out the API documentation. See video demonstrations covering how to use the library.

Usage

Authentication

Stripe authenticates API requests using your account’s secret key, which you can find in the Stripe Dashboard. By default, secret keys can be used to perform any API request without restriction.

Use StripeConfiguration.ApiKey property to set the secret key.

StripeConfiguration.ApiKey = "sk_test_...";

Creating a resource

The Create method of the service class can be used to create a new resource:

var options = new CustomerCreateOptions
{
    Email = "customer@example.com"
};

var service = new CustomerService();
Customer customer = service.Create(options);

// Newly created customer is returned
Console.WriteLine(customer.Email);

Retrieve a resource

The Retrieve method of the service class can be used to retrieve a resource:

var service = new CustomerService();
Customer customer = service.Get("cus_1234");

Console.WriteLine(customer.Email);

Updating a resource

The Update method of the service class can be used to update a resource:

var options = new CustomerUpdateOptions
{
    Email = "updated-email@example.com"
};

var service = new CustomerService();
Customer customer = service.Update("cus_123", options);

// The updated customer is returned
Console.WriteLine(customer.Email);

Deleting a resource

The Delete method of the service class can be used to delete a resource:

var service = new CustomerService();
Customer customer = service.Delete("cus_123", options);

Listing a resource

The List method on the service class can be used to list resources page-by-page.

NOTE The List method returns only a single page, you have to manually continue the iteration using the StartingAfter parameter.

var service = new CustomerService();
var customers = service.List();

string lastId = null;

// Enumerate the first page of the list
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

customers = service.List(new CustomerListOptions()
{
    StartingAfter = lastId,
});

// Enumerate the subsequent page
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

Listing a resource with auto-pagination

The ListAutoPaging method on the service class can be used to automatically iterate over all pages.

var service = new CustomerService();
var customers = service.ListAutoPaging();

// Enumerate all pages of the list
foreach (Customer customer in customers)
{
   Console.WriteLine(customer.Email);
}

Per-request configuration

All of the service methods accept an optional RequestOptions object. This is used if you want to set an idempotency key, if you are using Stripe Connect, or if you want to pass the secret API key on each method.

var requestOptions = new RequestOptions();
requestOptions.ApiKey = "SECRET API KEY";
requestOptions.IdempotencyKey = "SOME STRING";
requestOptions.StripeAccount = "CONNECTED ACCOUNT ID";

Using a custom HttpClient

You can configure the library with your own custom HttpClient:

StripeConfiguration.StripeClient = new StripeClient(
    apiKey,
    httpClient: new SystemNetHttpClient(httpClient));

Please refer to the Advanced client usage wiki page to see more examples of using custom clients, e.g. for using a proxy server, a custom message handler, etc.

Automatic retries

The library automatically retries requests on intermittent failures like on a connection error, timeout, or on certain API responses like a status 409 Conflict. Idempotency keys are always added to requests to make any such subsequent retries safe.

By default, it will perform up to two retries. That number can be configured with StripeConfiguration.MaxNetworkRetries:

StripeConfiguration.MaxNetworkRetries = 0; // Zero retries

How to use undocumented parameters and properties

stripe-dotnet is a typed library and it supports all public properties or parameters.

Stripe sometimes has beta features which introduce new properties or parameters that are not immediately public. The library does not support these properties or parameters until they are public but there is still an approach that allows you to use them.

Parameters

To pass undocumented parameters to Stripe using stripe-dotnet you need to use the AddExtraParam() method, as shown below:

var options = new CustomerCreateOptions
{
    Email = "jenny.rosen@example.com"
}
options.AddExtraParam("secret_feature_enabled", "true");
options.AddExtraParam("secret_parameter[primary]", "primary value");
options.AddExtraParam("secret_parameter[secondary]", "secondary value");

var service = new CustomerService();
var customer = service.Create(options);
Properties

To retrieve undocumented properties from Stripe using C# you can use an option in the library to return the raw JSON object and return the property. An example of this is shown below:

var service = new CustomerService();
var customer = service.Get("cus_1234");

customer.RawJObject["secret_feature_enabled"];
customer.RawJObject["secret_parameter"]["primary"];
customer.RawJObject["secret_parameter"]["secondary"];

This is only supported on objects returned directly from the Stripe.net SDK. If you are serializing Stripe objects to JSON you will need to handle undocumented properties separately.

Writing a plugin

If you're writing a plugin that uses the library, we'd appreciate it if you identified using StripeConfiguration.AppInfo:

StripeConfiguration.AppInfo = new AppInfo
{
    Name = "MyAwesomePlugin",
    Url = "https://myawesomeplugin.info",
    Version = "1.2.34",
};

This information is passed along when the library makes calls to the Stripe API. Note that while Name is always required, Url and Version are optional.

Telemetry

By default, the library sends telemetry to Stripe regarding request latency and feature usage. These numbers help Stripe improve the overall latency of its API for all users, and improve popular features.

You can disable this behavior if you prefer:

StripeConfiguration.EnableTelemetry = false;

Serializing Stripe resources to JSON

Stripe resources returned from a Stripe .NET library method can be serialized to a JSON string, which will contain all publicly documented fields for that object (see Serialization and RawJObject below):

Newtonsoft Json.NET
using Newtonsoft.Json;

...

var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonConvert.SerializeObject(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }

If you are using .NET 6 or above, you can also use System.Text.Json to serialize the same string value:

System.Text.Json
using System.Text.Json;
...
var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonSerializer.Serialize(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }
ASP.NET

If you are using .NET 6 or have installed the [Microsoft.AspNetCore.Mvc.NewtonsoftJson][https://www.nuget.org/packages/microsoft.aspnetcore.mvc.newtonsoftjson] package, you can return Stripe objects from ASP.NET controller methods:

using System.Text.Json;

public class HomeController : Controller
{
...
    public IActionResult Index()
    {
        return Json(_client.V1.Customers.List());
      // { "data": [{"id": "cus_1234", "name": "Jenny Rosen"}, ...], "has_more": false }
    }
}
Serialization and RawJObject

The RawJObject property is ignored on serialization in both Json.NET and System.Text.Json, which means that if you serialize a SDK response to a JSON string and the deserialize it back into a Stripe object, this property may be null or empty. If you rely on RawJObject you will need to serialize those values separately.

Beta SDKs

Stripe has features in the beta phase that can be accessed via the beta version of this package. We would love for you to try these and share feedback with us before these features reach the stable phase. To install a beta version of Stripe.net use the version parameter with dotnet add package command:

dotnet add package Stripe.net --version <beta version>

Beta versions are appended with -beta.X such as 45.0.0-beta.1. Make sure to choose the version that includes support for the beta you are interested in!

Note There can be breaking changes between beta versions. Therefore we recommend pinning the package version to a specific beta version in your project file. This way you can install the same version each time without breaking changes unless you are intentionally looking for the latest beta version.

We highly recommend keeping an eye on when the beta feature you are interested in goes from beta to stable so that you can move from using a beta version of the SDK to the stable version.

If your beta feature requires a Stripe-Version header to be sent, set the StripeConfiguration.ApiVersion property with the StripeConfiguration.AddBetaVersion function:

Note The ApiVersion can only be set in beta versions of the library.

StripeConfiguration.AddBetaVersion("feature_beta", "v3");

Custom requests

If you would like to send a request to an undocumented API (for example you are in a private beta), or if you prefer to bypass the method definitions in the library and specify your request details directly, you can use the RawRequestAsync method on StripeClient.

StripeClient client = new StripeClient();
StripeResponse response = await client.RawRequestAsync(HttpMethod.Get, "/v1/accounts/acc_123");

// Optionally use Deserialize to convert the response to strongly-typed object.
Account account = client.Deserialize<Account>(response.Content)

Support

New features and bug fixes are released on the latest major version of the Stripe .NET client library. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.

Development

Contribution guidelines for this project

.NET 8 is required to build and test Stripe.net SDK, you can install it from get.dot.net.

The test suite depends on stripe-mock, so make sure to fetch and run it from a background terminal (stripe-mock's README also contains instructions for installing via Homebrew and other methods):

go install github.com/stripe/stripe-mock@latest
stripe-mock

Lastly, we use just for running common development tasks. You can also read the justfile and run those commands directly.

Run all tests from the src/StripeTests directory:

just test
# or: dotnet test src

Run some tests, filtering by name:

dotnet test src --filter FullyQualifiedName~InvoiceServiceTest

Run tests for a single target framework:

dotnet test src --framework net8.0

The library uses dotnet-format for code formatting. Code must be formatted before PRs are submitted, otherwise CI will fail. Run the formatter with:

just format
# or: dotnet format src/Stripe.net.sln

For any requests, bug or comments, please open an issue or submit a pull request.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.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 (122)

Showing the top 5 NuGet packages that depend on Stripe.net:

Package Downloads
OElite.Common

Package Description

ImmediaC.SimpleCms

ASP.NET Core based CMS

N3O.Umbraco.Payments.Stripe

TODO

Soenneker.Stripe.Client

A .NET typesafe implementation of Stripe's StripeClient

JTigerNova.Web.Lib.Service.ThirdParty

Third Party library of web service functions

GitHub repositories (24)

Showing the top 20 popular GitHub repositories that depend on Stripe.net:

Repository Stars
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
simplcommerce/SimplCommerce
A simple, cross platform, modulith ecommerce system built on .NET
exceptionless/Exceptionless
Exceptionless application
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
grandnode/grandnode2
E-commerce platform built with ASP.NET Core using MongoDB for NoSQL storage
NiclasOlofsson/MiNET
A (not so) basic Minecraft Pocket Edition server written in C#
bhrugen/Bulky_MVC
Librum-Reader/Librum-Server
The Librum server
VedAstro/VedAstro
A non-profit, open source project to make Vedic Astrology easily available to all.
patrickgod/BlazorEcommerce
Code for the online course "Make an E-Commerce Website with Blazor WebAssembly in .NET 6" on Udemy.
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
bhrugen/Bulky
bhrugen/Mango_Microservices
rahulsahay19/eCommerce-App
Ecommerce App using .Net Core 3.1 and Angular 9
OrchardCMS/OrchardCore.Commerce
The commerce module for Orchard Core.
TryCatchLearn/Skinet3.1
TryCatchLearn/Skinet-v6
Course repository for the Skinet app created on .Net 5.0 and Angular 11
TryCatchLearn/skinet
DevBetterCom/DevBetterWeb
A simple web application for devBetter
RemiBou/Toss.Blazor
Experimental project using AspNetCore Blazor
Version Downloads Last updated
48.2.0-beta.2 798 4/30/2025
48.2.0-beta.1 110 4/30/2025
48.1.0 60,825 4/30/2025
48.1.0-beta.4 1,095 4/17/2025
48.1.0-beta.3 1,169 4/10/2025
48.1.0-beta.2 1,036 4/2/2025
48.0.2 47,878 4/15/2025
48.0.1 5,083 4/14/2025
48.0.0 71,860 4/1/2025
47.5.0-beta.1 1,921 3/18/2025
47.4.0 370,613 2/24/2025
47.4.0-beta.1 12,536 2/7/2025
47.3.0 303,972 1/27/2025
47.3.0-beta.3 6,198 1/23/2025
47.3.0-beta.2 550 1/18/2025
47.3.0-beta.1 4,353 1/9/2025
47.2.0 314,900 12/18/2024
47.2.0-beta.3 1,622 12/12/2024
47.2.0-beta.2 563 12/5/2024
47.2.0-beta.1 17,091 11/21/2024
47.1.0 381,732 11/20/2024
47.1.0-beta.3 2,340 11/15/2024
47.1.0-beta.2 967 11/7/2024
47.1.0-beta.1 4,022 10/29/2024
47.0.0 353,714 10/29/2024
46.3.0-beta.1 9,572 10/18/2024
46.2.2 18,409 10/29/2024
46.2.1 151,727 10/18/2024
46.2.0 178,787 10/9/2024
46.2.0-beta.3 1,399 10/8/2024
46.1.0 67,776 10/3/2024
46.0.0 29,980 10/1/2024
45.15.0-beta.1 13,014 9/18/2024
45.14.0 392,059 9/18/2024
45.13.0 66,124 9/13/2024
45.12.0 2,840 9/13/2024
45.12.0-beta.1 1,725 9/5/2024
45.11.0 120,314 9/5/2024
45.10.0 118,347 8/29/2024
45.10.0-beta.1 3,260 8/23/2024
45.9.0 72,585 8/23/2024
45.9.0-beta.2 178 8/22/2024
45.9.0-beta.1 4,398 8/15/2024
45.8.0 105,911 8/15/2024
45.8.0-beta.1 2,288 8/12/2024
45.7.0 83,730 8/9/2024
45.7.0-beta.1 3,991 8/1/2024
45.6.0 94,240 8/1/2024
45.6.0-beta.1 4,868 7/25/2024
45.5.0 97,411 7/25/2024
45.4.0 102,784 7/18/2024
45.3.0 149,780 7/11/2024
45.3.0-beta.1 50,435 7/5/2024
45.2.0 102,579 7/5/2024
45.2.0-beta.1 3,385 6/27/2024
45.1.0 116,162 6/27/2024
45.0.0 117,106 6/24/2024
44.13.0 259,511 6/17/2024
44.13.0-beta.1 3,320 6/13/2024
44.12.0 65,602 6/13/2024
44.12.0-beta.1 403 6/6/2024
44.11.0 109,562 6/6/2024
44.11.0-beta.1 2,098 5/30/2024
44.10.0 240,452 5/30/2024
44.10.0-beta.1 6,494 5/23/2024
44.9.0 109,323 5/23/2024
44.9.0-beta.1 2,282 5/16/2024
44.8.0 90,144 5/16/2024
44.7.0 109,197 5/9/2024
44.7.0-beta.1 179 5/9/2024
44.6.0 6,457 5/9/2024
44.6.0-beta.1 1,792 5/2/2024
44.5.0 96,172 5/2/2024
44.5.0-beta.1 6,606 4/25/2024
44.4.0 119,932 4/25/2024
44.4.0-beta.1 1,117 4/18/2024
44.3.0 165,561 4/18/2024
44.2.0 43,565 4/16/2024
44.2.0-beta.1 739 4/12/2024
44.1.0 147,836 4/11/2024
44.0.0 102,085 4/10/2024
43.23.0 73,075 4/9/2024
43.23.0-beta.1 2,546 4/4/2024
43.22.0 83,304 4/4/2024
43.22.0-beta.1 34,658 3/28/2024
43.21.0 110,523 3/28/2024
43.21.0-beta.1 1,181 3/21/2024
43.20.0 214,451 3/21/2024
43.20.0-beta.1 572 3/14/2024
43.19.0 161,510 3/14/2024
43.19.0-beta.1 9,497 3/8/2024
43.18.0 110,608 3/7/2024
43.18.0-beta.1 783 2/29/2024
43.17.0 79,784 2/29/2024
43.17.0-beta.1 9,090 2/22/2024
43.16.0 85,930 2/22/2024
43.16.0-beta.1 4,847 2/16/2024
43.15.0 126,625 2/16/2024
43.15.0-beta.1 1,173 2/8/2024
43.14.0 120,183 2/8/2024
43.14.0-beta.1 1,369 2/2/2024
43.13.0 197,832 2/1/2024
43.13.0-beta.1 1,354 1/26/2024
43.12.0 126,566 1/25/2024
43.12.0-beta.1 3,527 1/18/2024
43.11.0 121,496 1/18/2024
43.11.0-beta.1 409 1/12/2024
43.10.0 75,308 1/12/2024
43.10.0-beta.1 1,518 1/4/2024
43.9.0 110,570 1/4/2024
43.9.0-beta.1 2,212 12/22/2023
43.8.0 97,386 12/22/2023
43.8.0-beta.1 994 12/15/2023
43.7.0 119,961 12/15/2023
43.7.0-beta.1 500 12/8/2023
43.6.0 170,639 12/7/2023
43.6.0-beta.1 588 11/30/2023
43.5.0 80,943 11/30/2023
43.5.0-beta.1 2,687 11/21/2023
43.4.0 257,467 11/21/2023
43.4.0-beta.1 2,721 11/17/2023
43.3.0 100,786 11/17/2023
43.3.0-beta.1 911 11/10/2023
43.2.0 127,272 11/9/2023
43.2.0-beta.1 463 11/2/2023
43.1.0 122,635 11/2/2023
43.1.0-beta.2 1,064 10/26/2023
43.1.0-beta.1 1,372 10/17/2023
43.0.0 317,216 10/16/2023
42.10.0 32,960 10/16/2023
42.10.0-beta.1 1,495 10/11/2023
42.9.0 69,982 10/11/2023
42.9.0-beta.1 2,127 10/5/2023
42.8.0 98,422 10/5/2023
42.8.0-beta.1 1,009 9/29/2023
42.7.0 96,841 9/28/2023
42.7.0-beta.1 8,051 9/22/2023
42.6.0 124,558 9/21/2023
42.6.0-beta.1 4,069 9/15/2023
42.5.0 88,959 9/15/2023
42.5.0-beta.1 2,367 9/7/2023
42.4.0 88,529 9/7/2023
42.4.0-beta.1 1,169 9/1/2023
42.3.0 70,271 8/31/2023
42.2.0 114,584 8/24/2023
42.1.0 66,107 8/17/2023
42.0.0 16,304 8/16/2023
42.0.0-beta.1 189 8/24/2023
41.29.0-beta.1 4,794 8/11/2023
41.28.0 234,611 8/11/2023
41.28.0-beta.1 2,076 8/3/2023
41.27.0 101,357 8/3/2023
41.27.0-beta.1 1,666 7/28/2023
41.26.0 98,590 7/27/2023
41.25.0 118,570 7/20/2023
41.25.0-beta.1 908 7/13/2023
41.24.0 100,408 7/13/2023
41.23.0 118,340 7/6/2023
41.23.0-beta.1 6,303 6/30/2023
41.22.0 90,597 6/29/2023
41.22.0-beta.1 406 6/22/2023
41.21.0 93,512 6/22/2023
41.21.0-beta.2 2,798 6/15/2023
41.21.0-beta.1 459 6/8/2023
41.20.0 194,783 6/8/2023
41.20.0-beta.1 575 6/1/2023
41.19.0 126,902 6/1/2023
41.19.0-beta.1 2,541 5/25/2023
41.18.0 292,399 5/25/2023
41.18.0-beta.1 575 5/19/2023
41.17.0 103,184 5/19/2023
41.17.0-beta.1 1,850 5/11/2023
41.16.0 2,429,861 5/11/2023
41.16.0-beta.1 816 5/5/2023
41.15.0 121,899 5/4/2023
41.15.0-beta.1 738 4/27/2023
41.14.0 151,864 4/27/2023
41.14.0-beta.3 679 4/20/2023
41.14.0-beta.2 1,444 4/13/2023
41.14.0-beta.1 1,329 4/6/2023
41.13.0 408,349 4/6/2023
41.13.0-beta.1 2,564 3/30/2023
41.12.0 137,253 3/30/2023
41.12.0-beta.1 843 3/24/2023
41.11.0 103,490 3/23/2023
41.11.0-beta.1 4,122 3/17/2023
41.10.0 96,082 3/17/2023
41.10.0-beta.1 2,270 3/9/2023
41.9.0 306,877 3/9/2023
41.9.0-beta.1 8,499 3/3/2023
41.8.0 79,346 3/2/2023
41.8.0-beta.2 952 2/24/2023
41.8.0-beta.1 1,872 2/17/2023
41.7.0 208,289 2/16/2023
41.7.0-beta.1 5,840 2/2/2023
41.6.0 272,555 2/2/2023
41.6.0-beta.2 614 1/27/2023
41.6.0-beta.1 1,272 1/19/2023
41.5.0 221,040 1/19/2023
41.5.0-beta.2 446 1/12/2023
41.5.0-beta.1 4,786 1/5/2023
41.4.0 224,626 1/5/2023
41.4.0-beta.1 1,406 12/22/2022
41.3.0 127,188 12/22/2022
41.3.0-beta.2 3,726 12/16/2022
41.3.0-beta.1 4,262 12/8/2022
41.2.0 203,966 12/6/2022
41.1.0 359,989 11/17/2022
41.0.0 34,723 11/16/2022
40.17.0-beta.1 895 11/10/2022
40.16.0 294,184 11/8/2022
40.15.0 250,759 11/3/2022
40.15.0-beta.2 601 11/2/2022
40.15.0-beta.1 4,545 10/22/2022
40.14.0 185,039 10/20/2022
40.14.0-beta.1 999 10/14/2022
40.13.0 216,067 10/13/2022
40.13.0-beta.1 2,282 10/7/2022
40.12.0 79,295 10/6/2022
40.12.0-beta.2 294 10/4/2022
40.12.0-beta.1 263 10/4/2022
40.11.0 101,372 9/29/2022
40.11.0-beta.1 966 9/26/2022
40.10.0 108,793 9/22/2022
40.9.0 131,050 9/15/2022
40.8.0 127,557 9/9/2022
40.7.0 83,491 9/6/2022
40.6.0 140,113 8/31/2022
40.5.0 77,784 8/26/2022
40.5.0-beta.1 659 8/26/2022
40.4.0 209,677 8/23/2022
40.4.0-beta.1 766 8/23/2022
40.3.0 158,129 8/19/2022
40.3.0-beta.1 472 8/11/2022
40.2.0 122,747 8/11/2022
40.1.0 66,172 8/9/2022
40.1.0-beta.1 321 8/3/2022
40.0.0 280,817 8/2/2022
39.126.0 536,351 7/26/2022
39.125.0 102,834 7/25/2022
39.125.0-beta.1 379 7/22/2022
39.124.0 153,873 7/18/2022
39.123.0 249,612 7/12/2022
39.123.0-beta.1 1,746 7/7/2022
39.122.0 113,224 7/7/2022
39.121.0 275,657 6/29/2022
39.120.0 96,991 6/23/2022
39.119.0 129,214 6/17/2022
39.119.0-beta.1 429 6/15/2022
39.118.0 136,670 6/9/2022
39.117.0 45,456 6/8/2022
39.116.0 101,886 6/1/2022
39.115.0 96,028 5/26/2022
39.114.0 123,194 5/23/2022
39.113.0 11,503 5/23/2022
39.112.0 36,694 5/20/2022
39.111.0 300,150 5/11/2022
39.110.0 216,398 5/5/2022
39.109.0 8,668 5/5/2022
39.108.0 29,615 5/3/2022
39.107.0 132,916 4/21/2022
39.106.0 331,797 4/20/2022
39.105.0 242,627 4/13/2022
39.104.0 182,680 4/8/2022
39.103.0 192,634 4/1/2022
39.102.0 30,016 3/30/2022
39.101.0 17,707 3/29/2022
39.100.0 66,255 3/25/2022
39.99.0 61,086 3/23/2022
39.98.0 71,049 3/18/2022
39.97.0 196,881 3/11/2022
39.96.0 91,529 3/9/2022
39.95.0 124,357 3/2/2022
39.94.0 7,687 3/2/2022
39.93.0 58,728 2/26/2022
39.92.0 36,339 2/23/2022
39.91.0 471,740 2/16/2022
39.90.0 136,229 2/6/2022
39.89.0 325,163 1/25/2022
39.88.0 92,756 1/20/2022
39.87.0 12,983 1/19/2022
39.86.0 57,927 1/13/2022
39.85.0 32,680 1/12/2022
39.84.0 270,242 12/22/2021
39.83.0 99,373 12/15/2021
39.82.0 65,367 12/9/2021
39.81.0 10,452 12/9/2021
39.80.0 537,779 11/20/2021
39.79.0 20,157 11/17/2021
39.78.1 11,167 11/16/2021
39.78.0 3,490 11/16/2021
39.77.0 45,172 11/11/2021
39.76.0 123,689 11/4/2021
39.75.1 5,732 11/4/2021
39.75.0 143,050 11/1/2021
39.74.0 253,241 10/20/2021
39.73.0 120,990 10/11/2021
39.72.0 7,687 10/11/2021
39.71.0 26,166 10/7/2021
39.70.0 73,356 9/29/2021
39.69.0 65,537 9/24/2021
39.68.0 204,679 9/16/2021
39.67.0 6,992 9/15/2021
39.66.0 128,488 9/2/2021
39.65.0 4,748 9/1/2021
39.64.0 193,534 8/27/2021
39.63.0 238,779 8/11/2021
39.62.0 163,902 7/28/2021
39.61.0 121,462 7/22/2021
39.60.0 19,178 7/21/2021
39.59.0 235,109 7/14/2021
39.58.0 60,822 7/9/2021
39.57.0 94,895 6/30/2021
39.56.1 5,428 6/30/2021
39.56.0 9,042 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 42,274 6/25/2021
39.54.0 68,694 6/16/2021
39.53.0 341,318 6/7/2021
39.52.0 31,748 6/4/2021
39.51.0 62,520 6/4/2021
39.50.0 221,286 5/26/2021
39.49.0 87,557 5/20/2021
39.48.0 167,291 5/7/2021
39.47.0 49,643 5/6/2021
39.46.0 4,087 5/5/2021
39.45.0 138,972 4/16/2021
39.44.0 153,500 4/12/2021
39.43.0 137,057 4/3/2021
39.42.0 152,452 3/31/2021
39.41.0 121,346 3/26/2021
39.40.0 172,431 3/22/2021
39.39.0 217,244 3/1/2021
39.38.0 293,409 2/23/2021
39.37.0 85,981 2/18/2021
39.36.0 14,596 2/17/2021
39.35.0 102,599 2/9/2021
39.34.0 135,059 2/3/2021
39.33.0 235,418 1/21/2021
39.32.0 135,805 1/7/2021
39.31.0 271,669 12/16/2020
39.30.0 67,085 12/11/2020
39.29.0 178,969 12/4/2020
39.28.0 206,505 11/24/2020
39.27.0 53,125 11/20/2020
39.26.0 15,044 11/19/2020
39.25.0 26,385 11/18/2020
39.24.0 9,284 11/18/2020
39.23.0 205,768 11/9/2020
39.22.0 45,141 11/4/2020
39.21.0 76,003 10/29/2020
39.20.0 24,828 10/27/2020
39.19.0 37,683 10/26/2020
39.18.0 15,529 10/23/2020
39.17.0 13,780 10/23/2020
39.16.0 121,130 10/14/2020
39.15.0 20,801 10/13/2020
39.14.0 5,105 10/12/2020
39.13.0 23,028 10/9/2020
39.12.0 24,813 10/9/2020
39.11.0 119,749 10/3/2020
39.10.0 39,357 9/30/2020
39.9.0 17,544 9/30/2020
39.8.0 17,614 9/29/2020
39.7.0 45,309 9/25/2020
39.6.0 27,376 9/23/2020
39.5.0 54,318 9/22/2020
39.4.0 110,880 9/13/2020
39.3.0 89,869 9/8/2020
39.2.0 49,917 9/3/2020
39.1.2 49,306 9/1/2020
37.35.0 435,455 8/27/2020
37.34.0 121,462 8/19/2020
37.33.0 40,407 8/18/2020
37.32.0 8,331 8/17/2020
37.31.0 25,080 8/13/2020
37.30.0 74,285 8/7/2020
37.29.0 34,413 8/6/2020
37.28.0 14,351 8/4/2020
37.27.0 77,151 7/29/2020
37.26.0 134,368 7/25/2020
37.25.0 6,104 7/25/2020
37.24.0 22,096 7/22/2020
37.23.0 9,145 7/21/2020
37.22.0 5,357 7/21/2020
37.21.0 10,573 7/21/2020
37.20.0 14,678 7/18/2020
37.19.0 6,885 7/17/2020
37.18.0 83,706 7/15/2020
37.17.0 41,064 7/13/2020
37.16.0 103,695 7/6/2020
37.15.1 37,096 7/3/2020
37.15.0 32,269 7/1/2020
37.14.0 195,726 6/25/2020
37.13.0 40,299 6/23/2020
37.12.0 35,699 6/22/2020
37.11.0 15,659 6/18/2020
37.10.0 87,912 6/11/2020
37.9.0 10,165 6/11/2020
37.8.0 207,847 6/3/2020
37.7.0 4,337 6/3/2020
37.6.0 56,589 5/29/2020
37.5.0 31,194 5/28/2020
37.4.0 147,443 5/22/2020
37.3.0 79,029 5/21/2020
37.2.0 4,354 5/20/2020
37.1.0 67,184 5/19/2020
37.0.0 68,396 5/18/2020
36.12.2 75,908 5/14/2020
36.12.1 4,075 5/14/2020
36.12.0 4,200 5/13/2020
36.11.0 76,573 5/12/2020
36.10.0 17,661 5/11/2020
36.9.0 27,495 5/8/2020
36.8.1 38,937 5/5/2020
36.8.0 29,825 5/1/2020
36.7.0 17,607 4/29/2020
36.6.0 29,853 4/24/2020
36.5.0 22,810 4/22/2020
36.4.0 4,512 4/22/2020
36.3.0 8,829 4/21/2020
36.2.0 20,908 4/18/2020
36.1.0 17,379 4/17/2020
36.0.0 12,396 4/16/2020
35.17.0 30,886 4/14/2020
35.16.0 20,866 4/13/2020
35.15.0 6,387 4/13/2020
35.14.0 15,738 4/10/2020
35.13.0 5,320 4/9/2020
35.12.1 192,648 4/8/2020
35.12.0 52,041 4/3/2020
35.11.1 221,065 3/31/2020
35.11.0 36,528 3/31/2020
35.10.0 52,430 3/26/2020
35.9.0 41,725 3/25/2020
35.8.0 7,717 3/24/2020
35.7.1 6,240 3/23/2020
35.7.0 36,230 3/20/2020
35.6.0 303,126 3/13/2020
35.5.0 7,133 3/12/2020
35.4.0 5,304 3/12/2020
35.3.0 89,193 3/5/2020
35.2.0 4,497 3/4/2020
35.1.0 7,081 3/4/2020
35.0.0 26,629 3/4/2020
34.26.0 109,790 2/24/2020
34.25.0 21,444 2/21/2020
34.24.0 8,970 2/21/2020
34.23.0 123,948 2/17/2020
34.22.0 36,463 2/13/2020
34.21.0 5,417 2/12/2020
34.20.1 10,334 2/12/2020
34.20.0 82,249 2/6/2020
34.19.0 49,403 2/3/2020
34.18.0 55,797 1/31/2020
34.17.0 57,569 1/25/2020
34.16.1 12,350 1/22/2020
34.16.0 42,237 1/17/2020
34.15.0 280,997 1/15/2020
34.14.0 7,108 1/14/2020
34.13.0 59,740 1/10/2020
34.12.0 24,458 1/6/2020
34.11.0 15,565 1/4/2020
34.10.1 9,032 1/3/2020
34.10.0 30,100 12/31/2019
34.9.0 104,386 12/24/2019
34.8.0 33,580 12/21/2019
34.7.0 10,010 12/19/2019
34.6.0 30,168 12/17/2019
34.5.0 58,755 12/13/2019
34.4.0 7,412 12/12/2019
34.3.0 30,639 12/9/2019
34.2.0 4,117 12/9/2019
34.1.0 101,880 12/4/2019
34.0.0 21,259 12/4/2019
33.9.0 46,452 12/2/2019
33.8.0 35,552 11/26/2019
33.7.0 20,478 11/25/2019
33.6.0 19,295 11/22/2019
33.5.0 8,908 11/21/2019
33.4.0 14,300 11/19/2019
33.3.0 74,677 11/8/2019
33.2.0 9,401 11/7/2019
33.1.0 13,737 11/6/2019
33.0.0 26,909 11/6/2019
32.2.0 33,550 11/4/2019
32.1.3 38,722 10/28/2019
32.1.2 8,202 10/25/2019
32.1.1 3,577 10/24/2019
32.1.0 14,766 10/24/2019
32.0.0 22,240 10/19/2019
31.2.0 5,332 10/18/2019
31.1.0 109,153 10/11/2019
31.0.0 5,379 10/10/2019
30.1.0 47,697 10/10/2019
30.0.1 5,608 10/9/2019
30.0.0 37,327 10/9/2019
29.6.0 54,293 10/3/2019
29.5.0 63,395 9/27/2019
29.4.0 21,831 9/26/2019
29.3.0 10,139 9/26/2019
29.2.1 27,563 9/23/2019
29.2.0 38,662 9/19/2019
29.1.0 162,423 9/13/2019
29.0.1 12,515 9/12/2019
29.0.0 92,463 9/10/2019
28.11.0 49,015 9/9/2019
28.10.0 92,545 9/4/2019
28.9.0 21,396 9/3/2019
28.8.0 299,398 8/30/2019
28.7.0 4,837 8/29/2019
28.6.0 173,016 8/27/2019
28.5.0 56,993 8/23/2019
28.4.0 21,495 8/21/2019
28.3.0 17,246 8/20/2019
28.2.0 159,573 8/16/2019
28.1.0 47,839 8/15/2019
28.0.0 57,392 8/14/2019
27.25.1 10,664 8/14/2019
27.24.0 59,498 8/9/2019
27.23.0 9,954 8/8/2019
27.22.0 4,082 8/8/2019
27.21.0 131,771 8/2/2019
27.20.0 29,838 8/1/2019
27.19.0 33,397 7/31/2019
27.18.0 30,477 7/26/2019
27.17.0 9,032 7/25/2019
27.16.1 117,064 7/23/2019
27.16.0 59,072 7/22/2019
27.15.0 96,550 7/19/2019
27.14.0 35,386 7/18/2019
27.13.0 42,815 7/16/2019
27.12.0 5,648 7/15/2019
27.11.0 28,896 7/11/2019
27.10.0 20,555 7/10/2019
27.9.1 37,080 7/10/2019
27.9.0 36,438 7/5/2019
27.8.1 50,288 7/3/2019
27.8.0 8,769 7/2/2019
27.7.0 4,341 7/2/2019
27.6.0 6,156 7/1/2019
27.5.0 11,140 7/1/2019
27.4.0 23,821 6/26/2019
27.3.2 54,868 6/20/2019
27.3.1 24,107 6/18/2019
27.3.0 9,758 6/17/2019
27.2.0 30,715 6/14/2019
27.1.3 10,717 6/12/2019
27.1.2 11,544 6/11/2019
27.1.1 4,071 6/10/2019
27.1.0 4,638 6/10/2019
27.0.0 14,519 6/7/2019
26.1.0 21,706 6/6/2019
26.0.0 127,565 5/24/2019
25.19.1 19,954 5/22/2019
25.19.0 37,848 5/17/2019
25.18.0 18,520 5/14/2019
25.17.0 17,226 5/10/2019
25.16.1 18,977 5/8/2019
25.16.0 12,899 5/6/2019
25.15.0 52,329 5/4/2019
25.14.0 6,997 5/3/2019
25.13.0 25,574 4/30/2019
25.12.0 25,782 4/25/2019
25.11.0 3,886 4/24/2019
25.10.0 37,974 4/23/2019
25.9.0 18,709 4/18/2019
25.8.0 66,572 4/17/2019
25.7.1 4,489 4/16/2019
25.7.0 10,896 4/15/2019
25.6.0 35,313 4/10/2019
25.5.0 3,781 4/9/2019
25.4.0 14,240 4/5/2019
25.3.0 163,073 3/29/2019
25.2.0 28,562 3/25/2019
25.1.0 15,430 3/22/2019
25.0.0 28,470 3/19/2019
24.6.0 14,722 3/19/2019
24.5.0 40,643 3/14/2019
24.4.1 26,679 3/11/2019
24.3.0 39,994 3/7/2019
24.2.0 4,943 3/6/2019
24.1.0 37,781 2/28/2019
24.0.2 168,446 2/20/2019
24.0.1 4,563 2/20/2019
23.2.0 4,257 2/19/2019
23.1.0 6,916 2/18/2019
23.0.0 16,167 2/14/2019
22.9.0 10,774 2/12/2019
22.8.1 42,724 2/4/2019
22.8.0 87,638 1/25/2019
22.7.0 34,401 1/20/2019
22.6.0 7,165 1/18/2019
22.5.0 4,689 1/17/2019
22.4.0 30,579 1/10/2019
22.3.0 40,500 1/9/2019
22.2.0 4,327 1/9/2019
22.1.0 7,131 1/8/2019
22.0.0 11,483 1/7/2019
21.9.0 30,014 1/3/2019
21.8.1 5,249 1/3/2019
21.8.0 42,812 12/27/2018
21.7.1 14,381 12/21/2018
21.7.0 249,891 11/28/2018
21.6.0 13,444 11/27/2018
21.5.0 35,260 11/26/2018
21.4.1 29,406 11/16/2018
21.4.0 9,742 11/14/2018
21.3.0 4,307 11/14/2018
21.2.0 10,704 11/12/2018
21.1.0 11,816 11/9/2018
21.0.0 8,769 11/9/2018
20.4.1 10,521 11/8/2018
20.4.0 21,490 11/5/2018
20.3.0 10,207 10/31/2018
20.2.0 18,725 10/25/2018
20.1.0 20,274 10/23/2018
20.0.0 6,704 10/22/2018
19.10.0 270,123 10/9/2018
19.9.2 40,238 9/28/2018
19.9.1 10,378 9/27/2018
19.9.0 134,385 9/26/2018
19.8.0 17,035 9/24/2018
19.7.0 98,808 9/20/2018
19.6.0 47,631 9/11/2018
19.5.0 21,994 9/6/2018
19.4.0 6,291 9/6/2018
19.3.0 19,099 9/4/2018
19.2.0 27,151 8/29/2018
19.1.0 9,363 8/28/2018
19.0.1 5,625 8/27/2018
18.0.0 27,781 8/23/2018
17.11.0 27,471 8/23/2018
17.10.0 15,479 8/21/2018
17.9.0 15,106 8/16/2018
17.8.0 317,234 8/3/2018
17.7.0 43,589 7/31/2018
17.6.0 31,707 7/27/2018
17.5.0 8,002 7/26/2018
17.4.0 17,633 7/23/2018
17.3.1 85,010 7/16/2018
17.3.0 17,046 7/13/2018
17.2.0 4,560 7/13/2018
17.1.0 6,198 7/12/2018
17.0.0 5,317 7/11/2018
16.16.1 35,085 7/11/2018
16.16.0 16,970 7/6/2018
16.14.0 31,399 6/29/2018
16.13.0 5,394 6/28/2018
16.12.0 45,004 6/20/2018
16.11.0 4,401 6/20/2018
16.10.0 92,280 6/13/2018
16.9.0 16,971 6/12/2018
16.8.0 5,323 6/12/2018
16.7.0 15,913 6/6/2018
16.6.0 4,741 6/6/2018
16.5.0 7,629 6/6/2018
16.4.0 26,518 6/1/2018
16.3.0 49,059 5/23/2018
16.1.0 112,922 5/10/2018
16.0.0 5,868 5/10/2018
15.8.0 13,365 5/8/2018
15.7.0 11,369 5/3/2018
15.6.2 30,835 4/25/2018
15.6.1 80,983 4/19/2018
15.6.0 36,032 4/18/2018
15.5.0 15,017 4/16/2018
15.3.2 192,493 4/9/2018
15.3.1 14,724 4/6/2018
15.3.0 42,308 4/4/2018
15.2.1 58,095 3/27/2018
15.2.0 5,201 3/26/2018
15.1.0 8,931 3/23/2018
15.0.0 27,025 3/21/2018
14.0.0 14,579 3/16/2018
13.5.0 29,896 3/15/2018
13.4.0 9,108 3/13/2018
13.3.1 27,559 3/5/2018
13.3.0 18,125 3/1/2018
13.2.0 9,211 2/27/2018
13.1.0 589,614 2/22/2018
13.0.1 11,350 2/19/2018
13.0.0 32,227 2/13/2018
12.1.0 242,396 1/19/2018
12.0.0 12,102 1/16/2018
11.10.0 69,078 12/26/2017
11.9.0 73,858 11/29/2017
11.8.2 17,170 11/23/2017
11.8.1 14,534 11/23/2017
11.7.1 85,746 10/31/2017
11.7.0 4,604 10/31/2017
11.6.1 22,379 10/24/2017
11.6.0 38,261 10/19/2017
11.5.0 42,000 10/17/2017
11.4.0 7,531 10/13/2017
11.3.0 6,081 10/11/2017
11.2.0 9,295 10/10/2017
11.1.0 4,426 10/10/2017
11.0.0 17,455 10/10/2017
10.4.0 249,577 8/8/2017
10.3.0 59,122 7/14/2017
10.2.0 66,823 6/28/2017
10.1.0 5,475 6/27/2017
10.0.0 56,830 6/6/2017
9.1.0 21,285 6/1/2017
9.0.0 52,419 5/13/2017
8.4.0 20,768 5/5/2017
8.3.0 7,666 5/2/2017
8.2.0 29,467 4/27/2017
8.1.1 15,063 4/19/2017
8.1.0 4,768 4/19/2017
8.0.0 12,043 4/13/2017
7.63.0 3,715 11/17/2020 7.63.0 is deprecated.
7.8.0 49,244 4/6/2017
7.7.0 10,163 4/1/2017
7.6.1 11,705 3/28/2017
7.6.0 22,920 3/17/2017
7.5.0 5,278 3/16/2017
7.4.0 13,669 3/7/2017
7.3.0 32,035 3/3/2017
7.2.0 16,981 2/28/2017
7.1.2 11,290 2/24/2017
7.1.1 6,869 2/23/2017
7.1.0 11,014 2/21/2017
7.0.5 66,398 2/21/2017
7.0.4 46,247 2/11/2017
7.0.3 45,233 1/19/2017
7.0.2 36,224 1/10/2017
7.0.1 20,973 12/25/2016
7.0.0 32,798 12/19/2016
6.13.0 14,861 12/17/2016
6.12.1 5,064 12/16/2016
6.12.0 82,459 11/29/2016
6.11.1 19,616 11/21/2016
6.11.0 10,928 11/8/2016
6.10.0 13,531 10/29/2016
6.9.0 71,531 10/18/2016
6.8.0 31,128 10/4/2016
6.7.0 16,561 9/26/2016
6.6.0 18,776 9/11/2016
6.5.0 28,963 9/1/2016
6.4.0 67,592 8/6/2016
6.3.6 23,045 7/29/2016
6.3.5 18,340 7/6/2016
6.3.4 35,097 6/25/2016
6.3.3 80,406 5/14/2016
6.3.2 41,009 4/25/2016
6.3.1 28,488 4/17/2016
6.3.0 4,672 4/17/2016
6.2.2 13,450 4/12/2016
6.2.1 7,341 4/4/2016
6.2.0 4,686 4/3/2016
6.1.1 4,577 4/1/2016
6.1.0 36,625 3/25/2016
6.0.1 38,139 3/15/2016
6.0.0 14,616 3/10/2016
5.3.0 53,661 2/14/2016
5.2.0 18,757 1/25/2016
5.1.3 11,808 1/8/2016
5.1.2 59,873 12/2/2015
5.1.1 8,914 11/29/2015
5.1.0 7,189 11/28/2015
5.0.1 47,562 11/19/2015
5.0.0 12,748 10/23/2015
4.2.1 18,280 9/13/2015
4.2.0 56,768 7/26/2015
4.1.0 11,190 7/11/2015
4.0.2 9,456 7/3/2015
4.0.1 14,837 7/2/2015
4.0.0 4,693 7/2/2015
3.0.2 11,414 6/17/2015
3.0.1 4,834 6/17/2015
3.0.0 7,187 5/28/2015
2.9.0 90,357 4/12/2015
2.8.0 30,359 3/14/2015
2.7.2 15,681 2/17/2015
2.7.1 5,298 2/17/2015
2.7.0 5,123 2/16/2015
2.6.0 5,518 2/14/2015
2.5.1 11,523 2/7/2015
2.5.0 5,372 1/31/2015
2.4.1 4,784 1/31/2015
2.4.0 5,238 1/25/2015
2.3.5 7,687 1/21/2015
2.3.4 23,745 12/4/2014
2.3.3 26,392 11/3/2014
2.3.2 5,470 10/26/2014
2.3.1 4,882 10/26/2014
2.3.0 12,372 9/4/2014
2.2.6 45,416 7/15/2014
2.2.5 9,401 6/22/2014
2.2.4 5,464 6/17/2014
2.2.3 5,344 6/13/2014
2.2.2 7,763 5/29/2014
2.2.1 4,904 5/28/2014
2.2.0 4,626 5/27/2014
2.1.2 5,373 5/14/2014
2.1.1 5,272 5/13/2014
2.1.0 7,255 4/20/2014
2.0.1 5,625 4/13/2014
2.0.0 5,643 4/5/2014
1.7.7 6,972 3/17/2014
1.7.6 19,699 1/18/2014
1.7.5 4,982 1/12/2014
1.7.4 6,427 12/25/2013
1.7.3 4,591 12/25/2013
1.7.2 4,617 12/24/2013
1.7.1 5,573 12/1/2013
1.7.0 7,345 11/3/2013
1.6.3 6,340 10/19/2013
1.6.2 8,818 8/30/2013
1.6.1 7,848 8/15/2013
1.6.0 4,579 8/10/2013
1.5.7 7,023 7/18/2013
1.5.6 5,300 6/30/2013
1.5.5 19,124 5/27/2013
1.5.4 5,472 5/7/2013
1.5.3 6,172 3/30/2013
1.5.2 4,732 3/26/2013
1.5.1 4,799 3/13/2013
1.5.0 4,802 3/4/2013
1.4.3 4,469 3/4/2013
1.4.2 4,744 3/4/2013
1.4.1 4,792 2/24/2013
1.4.0 4,818 2/12/2013
1.3.1 4,609 2/11/2013
1.3.0 4,583 2/11/2013
1.2.1 4,699 1/24/2013
1.2.0 5,412 12/2/2012
1.1.18 14,126 11/4/2012
1.1.17 5,456 9/7/2012
1.1.16 4,720 9/5/2012
1.1.15 4,524 8/27/2012
1.1.14 4,948 8/4/2012
1.1.13 11,317 6/10/2012
1.1.12 4,973 4/21/2012
1.1.11 4,962 4/8/2012
1.1.10 14,181 3/25/2012
1.1.9 4,603 3/5/2012
1.1.8 4,657 2/26/2012
1.1.7 4,605 2/26/2012
1.1.6 4,813 2/26/2012
0.5.2 22,872 11/28/2015