Stripe.net 48.6.0-beta.1

Prefix Reserved
This is a prerelease version of Stripe.net.
dotnet add package Stripe.net --version 48.6.0-beta.1
                    
NuGet\Install-Package Stripe.net -Version 48.6.0-beta.1
                    
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.6.0-beta.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stripe.net" Version="48.6.0-beta.1" />
                    
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.6.0-beta.1
                    
#r "nuget: Stripe.net, 48.6.0-beta.1"
                    
#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.
#:package Stripe.net@48.6.0-beta.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Stripe.net&version=48.6.0-beta.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Stripe.net&version=48.6.0-beta.1&prerelease
                    
Install 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

Using StripeClient

In version 46 of the Stripe .NET SDK, we have enhanced the StripeClient class to be the entry point to access all services that had to be previously independently instantiated with global configuration. This improves discoverability during IDE auto-completion and creates a more intuitive developer experience for you.

Each client instantiation can have its own configuration so you can access Stripe API with different API keys or different configuration (like number of retries) on a per client basis and without changing a global configuration.

// StripeClient pattern (Recommended)
var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Get("cus_1234");

// Global Configuration pattern (Legacy)
StripeConfiguration.ApiKey = "sk_test_...";
var service = new CustomerService();
Customer customer = service.Get("cus_1234");

The previous global configuration pattern will continue to be supported.

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.

var client = new StripeClient("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 client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.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 client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.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 client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.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 client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.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 client = new StripeClient("sk_test_...");
var customers = client.V1.Customers.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 client = new StripeClient("sk_test_...");
var customers = client.V1.Customers.ListAutoPaging();

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

Per-request configuration

All 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 client = new StripeClient("sk_test_...");
var customer = client.V1.Customers.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 client = new StripeClient("sk_test_...");
var customer = client.V1.Customers.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.

Public Preview SDKs

Stripe has features in the public preview phase that can be accessed via versions of this package that have the -beta.X suffix like 45.1.0-beta.2. We would love for you to try these as we incrementally release new features and improve them based on your feedback.

To install, choose the version that includes support for the preview feature you are interested in by reviewing the releases page and then use it in the version parameter with dotnet add package command:

dotnet add package Stripe.net --version <replace-with-the-version-of-your-choice>

Note There can be breaking changes between two versions of the public preview SDKs without a bump in the major version. Therefore we recommend pinning the package version to a specific 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 public preview SDK.

Some preview features require a name and version to be set in the Stripe-Version header like feature_beta=v3. If your preview feature has this requirement, use the StripeConfiguration.AddBetaVersion function (available only in the public preview SDKs):

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 (133)

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 (25)

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
VedAstro/VedAstro
A non-profit, open source project to make Vedic Astrology easily available to all.
Librum-Reader/Librum-Server
The Librum server
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
patrickgod/BlazorEcommerce
Code for the online course "Make an E-Commerce Website with Blazor WebAssembly in .NET 6" on Udemy.
bhrugen/Bulky
bhrugen/Mango_Microservices
OrchardCMS/OrchardCore.Commerce
The commerce module for Orchard Core.
rahulsahay19/eCommerce-App
Ecommerce App using .Net Core 3.1 and Angular 9
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.6.0-beta.1 302 8/27/2025
48.6.0-alpha.1 156 8/27/2025
48.5.0 8,277 8/27/2025
48.5.0-beta.2 710 8/8/2025
48.5.0-beta.1 996 7/30/2025
48.4.0 104,437 7/30/2025
48.4.0-beta.2 944 7/9/2025
48.4.0-beta.1 441 7/1/2025
48.3.0 142,871 7/1/2025
48.3.0-beta.2 271 6/26/2025
48.3.0-beta.1 7,819 5/28/2025
48.2.0 220,516 5/28/2025
48.2.0-beta.2 9,429 4/30/2025
48.2.0-beta.1 163 4/30/2025
48.1.0 236,156 4/30/2025
48.1.0-beta.4 4,430 4/17/2025
48.1.0-beta.3 1,400 4/10/2025
48.1.0-beta.2 5,376 4/2/2025
48.0.2 98,392 4/15/2025
48.0.1 8,369 4/14/2025
48.0.0 142,731 4/1/2025
47.5.0-beta.1 3,270 3/18/2025
47.4.0 645,307 2/24/2025
47.4.0-beta.1 22,448 2/7/2025
47.3.0 416,657 1/27/2025
47.3.0-beta.3 9,765 1/23/2025
47.3.0-beta.2 614 1/18/2025
47.3.0-beta.1 5,136 1/9/2025
47.2.0 403,216 12/18/2024
47.2.0-beta.3 1,721 12/12/2024
47.2.0-beta.2 614 12/5/2024
47.2.0-beta.1 18,218 11/21/2024
47.1.0 485,707 11/20/2024
47.1.0-beta.3 3,472 11/15/2024
47.1.0-beta.2 1,358 11/7/2024
47.1.0-beta.1 4,225 10/29/2024
47.0.0 449,591 10/29/2024
46.3.0-beta.1 12,280 10/18/2024
46.2.2 21,501 10/29/2024
46.2.1 185,501 10/18/2024
46.2.0 200,561 10/9/2024
46.2.0-beta.3 1,439 10/8/2024
46.1.0 75,503 10/3/2024
46.0.0 38,187 10/1/2024
45.15.0-beta.1 13,762 9/18/2024
45.14.0 585,432 9/18/2024
45.13.0 77,054 9/13/2024
45.12.0 3,476 9/13/2024
45.12.0-beta.1 1,779 9/5/2024
45.11.0 139,874 9/5/2024
45.10.0 134,597 8/29/2024
45.10.0-beta.1 3,317 8/23/2024
45.9.0 84,204 8/23/2024
45.9.0-beta.2 207 8/22/2024
45.9.0-beta.1 4,581 8/15/2024
45.8.0 122,623 8/15/2024
45.8.0-beta.1 2,419 8/12/2024
45.7.0 92,551 8/9/2024
45.7.0-beta.1 4,640 8/1/2024
45.6.0 119,399 8/1/2024
45.6.0-beta.1 5,559 7/25/2024
45.5.0 109,100 7/25/2024
45.4.0 126,484 7/18/2024
45.3.0 184,933 7/11/2024
45.3.0-beta.1 62,438 7/5/2024
45.2.0 109,121 7/5/2024
45.2.0-beta.1 3,440 6/27/2024
45.1.0 125,550 6/27/2024
45.0.0 154,770 6/24/2024
44.13.0 312,374 6/17/2024
44.13.0-beta.1 3,353 6/13/2024
44.12.0 70,390 6/13/2024
44.12.0-beta.1 431 6/6/2024
44.11.0 124,686 6/6/2024
44.11.0-beta.1 2,139 5/30/2024
44.10.0 284,875 5/30/2024
44.10.0-beta.1 6,751 5/23/2024
44.9.0 121,026 5/23/2024
44.9.0-beta.1 2,374 5/16/2024
44.8.0 98,174 5/16/2024
44.7.0 124,710 5/9/2024
44.7.0-beta.1 204 5/9/2024
44.6.0 6,961 5/9/2024
44.6.0-beta.1 2,032 5/2/2024
44.5.0 105,573 5/2/2024
44.5.0-beta.1 8,018 4/25/2024
44.4.0 131,750 4/25/2024
44.4.0-beta.1 1,211 4/18/2024
44.3.0 191,891 4/18/2024
44.2.0 46,892 4/16/2024
44.2.0-beta.1 769 4/12/2024
44.1.0 177,951 4/11/2024
44.0.0 156,110 4/10/2024
43.23.0 81,005 4/9/2024
43.23.0-beta.1 2,759 4/4/2024
43.22.0 102,877 4/4/2024
43.22.0-beta.1 34,684 3/28/2024
43.21.0 119,435 3/28/2024
43.21.0-beta.1 1,223 3/21/2024
43.20.0 226,780 3/21/2024
43.20.0-beta.1 603 3/14/2024
43.19.0 169,423 3/14/2024
43.19.0-beta.1 10,921 3/8/2024
43.18.0 123,030 3/7/2024
43.18.0-beta.1 1,272 2/29/2024
43.17.0 86,970 2/29/2024
43.17.0-beta.1 9,805 2/22/2024
43.16.0 92,835 2/22/2024
43.16.0-beta.1 4,883 2/16/2024
43.15.0 138,616 2/16/2024
43.15.0-beta.1 1,249 2/8/2024
43.14.0 138,715 2/8/2024
43.14.0-beta.1 1,449 2/2/2024
43.13.0 223,115 2/1/2024
43.13.0-beta.1 1,387 1/26/2024
43.12.0 138,729 1/25/2024
43.12.0-beta.1 3,557 1/18/2024
43.11.0 133,273 1/18/2024
43.11.0-beta.1 438 1/12/2024
43.10.0 78,224 1/12/2024
43.10.0-beta.1 1,615 1/4/2024
43.9.0 123,070 1/4/2024
43.9.0-beta.1 2,238 12/22/2023
43.8.0 104,016 12/22/2023
43.8.0-beta.1 1,012 12/15/2023
43.7.0 128,086 12/15/2023
43.7.0-beta.1 529 12/8/2023
43.6.0 180,951 12/7/2023
43.6.0-beta.1 635 11/30/2023
43.5.0 85,300 11/30/2023
43.5.0-beta.1 2,769 11/21/2023
43.4.0 272,598 11/21/2023
43.4.0-beta.1 2,982 11/17/2023
43.3.0 111,230 11/17/2023
43.3.0-beta.1 944 11/10/2023
43.2.0 138,531 11/9/2023
43.2.0-beta.1 483 11/2/2023
43.1.0 135,172 11/2/2023
43.1.0-beta.2 1,088 10/26/2023
43.1.0-beta.1 1,423 10/17/2023
43.0.0 340,095 10/16/2023
42.10.0 35,718 10/16/2023
42.10.0-beta.1 1,800 10/11/2023
42.9.0 72,511 10/11/2023
42.9.0-beta.1 2,164 10/5/2023
42.8.0 104,557 10/5/2023
42.8.0-beta.1 1,037 9/29/2023
42.7.0 103,696 9/28/2023
42.7.0-beta.1 9,375 9/22/2023
42.6.0 137,175 9/21/2023
42.6.0-beta.1 4,120 9/15/2023
42.5.0 90,969 9/15/2023
42.5.0-beta.1 2,927 9/7/2023
42.4.0 96,733 9/7/2023
42.4.0-beta.1 1,207 9/1/2023
42.3.0 74,364 8/31/2023
42.2.0 127,646 8/24/2023
42.1.0 70,355 8/17/2023
42.0.0 17,944 8/16/2023
42.0.0-beta.1 229 8/24/2023
41.29.0-beta.1 4,863 8/11/2023
41.28.0 260,810 8/11/2023
41.28.0-beta.1 2,211 8/3/2023
41.27.0 110,021 8/3/2023
41.27.0-beta.1 1,776 7/28/2023
41.26.0 104,452 7/27/2023
41.25.0 121,457 7/20/2023
41.25.0-beta.1 997 7/13/2023
41.24.0 102,629 7/13/2023
41.23.0 121,516 7/6/2023
41.23.0-beta.1 6,814 6/30/2023
41.22.0 95,371 6/29/2023
41.22.0-beta.1 452 6/22/2023
41.21.0 114,166 6/22/2023
41.21.0-beta.2 2,850 6/15/2023
41.21.0-beta.1 507 6/8/2023
41.20.0 198,815 6/8/2023
41.20.0-beta.1 644 6/1/2023
41.19.0 132,203 6/1/2023
41.19.0-beta.1 2,753 5/25/2023
41.18.0 337,176 5/25/2023
41.18.0-beta.1 616 5/19/2023
41.17.0 105,648 5/19/2023
41.17.0-beta.1 1,983 5/11/2023
41.16.0 3,364,586 5/11/2023
41.16.0-beta.1 954 5/5/2023
41.15.0 130,296 5/4/2023
41.15.0-beta.1 784 4/27/2023
41.14.0 162,893 4/27/2023
41.14.0-beta.3 726 4/20/2023
41.14.0-beta.2 1,687 4/13/2023
41.14.0-beta.1 1,374 4/6/2023
41.13.0 429,684 4/6/2023
41.13.0-beta.1 2,833 3/30/2023
41.12.0 143,640 3/30/2023
41.12.0-beta.1 889 3/24/2023
41.11.0 106,451 3/23/2023
41.11.0-beta.1 5,075 3/17/2023
41.10.0 98,834 3/17/2023
41.10.0-beta.1 2,318 3/9/2023
41.9.0 311,238 3/9/2023
41.9.0-beta.1 8,678 3/3/2023
41.8.0 80,243 3/2/2023
41.8.0-beta.2 1,001 2/24/2023
41.8.0-beta.1 1,952 2/17/2023
41.7.0 216,413 2/16/2023
41.7.0-beta.1 6,008 2/2/2023
41.6.0 284,447 2/2/2023
41.6.0-beta.2 676 1/27/2023
41.6.0-beta.1 1,336 1/19/2023
41.5.0 225,228 1/19/2023
41.5.0-beta.2 486 1/12/2023
41.5.0-beta.1 4,835 1/5/2023
41.4.0 234,551 1/5/2023
41.4.0-beta.1 1,462 12/22/2022
41.3.0 131,422 12/22/2022
41.3.0-beta.2 4,741 12/16/2022
41.3.0-beta.1 4,372 12/8/2022
41.2.0 212,523 12/6/2022
41.1.0 394,277 11/17/2022
41.0.0 50,169 11/16/2022
40.17.0-beta.1 1,008 11/10/2022
40.16.0 306,137 11/8/2022
40.15.0 259,921 11/3/2022
40.15.0-beta.2 645 11/2/2022
40.15.0-beta.1 4,585 10/22/2022
40.14.0 188,432 10/20/2022
40.14.0-beta.1 1,048 10/14/2022
40.13.0 236,751 10/13/2022
40.13.0-beta.1 2,334 10/7/2022
40.12.0 82,220 10/6/2022
40.12.0-beta.2 340 10/4/2022
40.12.0-beta.1 305 10/4/2022
40.11.0 106,135 9/29/2022
40.11.0-beta.1 1,013 9/26/2022
40.10.0 112,032 9/22/2022
40.9.0 139,421 9/15/2022
40.8.0 129,848 9/9/2022
40.7.0 84,682 9/6/2022
40.6.0 148,537 8/31/2022
40.5.0 79,543 8/26/2022
40.5.0-beta.1 706 8/26/2022
40.4.0 214,701 8/23/2022
40.4.0-beta.1 814 8/23/2022
40.3.0 160,573 8/19/2022
40.3.0-beta.1 514 8/11/2022
40.2.0 126,067 8/11/2022
40.1.0 69,799 8/9/2022
40.1.0-beta.1 362 8/3/2022
40.0.0 288,388 8/2/2022
39.126.0 570,568 7/26/2022
39.125.0 104,941 7/25/2022
39.125.0-beta.1 429 7/22/2022
39.124.0 165,093 7/18/2022
39.123.0 260,486 7/12/2022
39.123.0-beta.1 1,792 7/7/2022
39.122.0 115,701 7/7/2022
39.121.0 286,557 6/29/2022
39.120.0 103,655 6/23/2022
39.119.0 134,778 6/17/2022
39.119.0-beta.1 486 6/15/2022
39.118.0 145,036 6/9/2022
39.117.0 46,190 6/8/2022
39.116.0 104,275 6/1/2022
39.115.0 100,032 5/26/2022
39.114.0 128,189 5/23/2022
39.113.0 11,806 5/23/2022
39.112.0 37,385 5/20/2022
39.111.0 309,065 5/11/2022
39.110.0 224,154 5/5/2022
39.109.0 8,823 5/5/2022
39.108.0 30,153 5/3/2022
39.107.0 136,582 4/21/2022
39.106.0 350,453 4/20/2022
39.105.0 252,063 4/13/2022
39.104.0 185,558 4/8/2022
39.103.0 208,010 4/1/2022
39.102.0 30,679 3/30/2022
39.101.0 18,391 3/29/2022
39.100.0 70,453 3/25/2022
39.99.0 62,694 3/23/2022
39.98.0 71,527 3/18/2022
39.97.0 202,068 3/11/2022
39.96.0 93,161 3/9/2022
39.95.0 132,084 3/2/2022
39.94.0 7,822 3/2/2022
39.93.0 59,268 2/26/2022
39.92.0 36,809 2/23/2022
39.91.0 500,187 2/16/2022
39.90.0 140,454 2/6/2022
39.89.0 327,534 1/25/2022
39.88.0 96,293 1/20/2022
39.87.0 13,542 1/19/2022
39.86.0 59,928 1/13/2022
39.85.0 33,134 1/12/2022
39.84.0 282,392 12/22/2021
39.83.0 105,635 12/15/2021
39.82.0 66,408 12/9/2021
39.81.0 10,917 12/9/2021
39.80.0 557,452 11/20/2021
39.79.0 20,654 11/17/2021
39.78.1 11,302 11/16/2021
39.78.0 3,577 11/16/2021
39.77.0 45,779 11/11/2021
39.76.0 124,517 11/4/2021
39.75.1 5,817 11/4/2021
39.75.0 144,446 11/1/2021
39.74.0 255,161 10/20/2021
39.73.0 122,416 10/11/2021
39.72.0 7,890 10/11/2021
39.71.0 26,600 10/7/2021
39.70.0 74,991 9/29/2021
39.69.0 68,024 9/24/2021
39.68.0 213,586 9/16/2021
39.67.0 7,136 9/15/2021
39.66.0 129,756 9/2/2021
39.65.0 4,867 9/1/2021
39.64.0 212,424 8/27/2021
39.63.0 246,372 8/11/2021
39.62.0 168,066 7/28/2021
39.61.0 124,590 7/22/2021
39.60.0 19,503 7/21/2021
39.59.0 239,593 7/14/2021
39.58.0 62,468 7/9/2021
39.57.0 97,462 6/30/2021
39.56.1 5,588 6/30/2021
39.56.0 9,448 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 43,189 6/25/2021
39.54.0 70,116 6/16/2021
39.53.0 347,813 6/7/2021
39.52.0 32,773 6/4/2021
39.51.0 62,639 6/4/2021
39.50.0 222,335 5/26/2021
39.49.0 89,891 5/20/2021
39.48.0 174,970 5/7/2021
39.47.0 49,770 5/6/2021
39.46.0 4,173 5/5/2021
39.45.0 142,309 4/16/2021
39.44.0 160,124 4/12/2021
39.43.0 138,629 4/3/2021
39.42.0 153,086 3/31/2021
39.41.0 123,082 3/26/2021
39.40.0 183,735 3/22/2021
39.39.0 221,168 3/1/2021
39.38.0 296,391 2/23/2021
39.37.0 86,602 2/18/2021
39.36.0 14,982 2/17/2021
39.35.0 103,266 2/9/2021
39.34.0 137,152 2/3/2021
39.33.0 241,553 1/21/2021
39.32.0 138,961 1/7/2021
39.31.0 279,494 12/16/2020
39.30.0 67,203 12/11/2020
39.29.0 179,806 12/4/2020
39.28.0 212,053 11/24/2020
39.27.0 53,586 11/20/2020
39.26.0 15,141 11/19/2020
39.25.0 26,595 11/18/2020
39.24.0 9,437 11/18/2020
39.23.0 215,768 11/9/2020
39.22.0 45,346 11/4/2020
39.21.0 76,954 10/29/2020
39.20.0 25,350 10/27/2020
39.19.0 37,832 10/26/2020
39.18.0 15,677 10/23/2020
39.17.0 14,226 10/23/2020
39.16.0 121,678 10/14/2020
39.15.0 20,969 10/13/2020
39.14.0 5,210 10/12/2020
39.13.0 23,525 10/9/2020
39.12.0 25,673 10/9/2020
39.11.0 121,613 10/3/2020
39.10.0 40,146 9/30/2020
39.9.0 17,765 9/30/2020
39.8.0 18,039 9/29/2020
39.7.0 46,212 9/25/2020
39.6.0 27,976 9/23/2020
39.5.0 55,098 9/22/2020
39.4.0 111,660 9/13/2020
39.3.0 95,914 9/8/2020
39.2.0 50,510 9/3/2020
39.1.2 49,885 9/1/2020
37.35.0 458,148 8/27/2020
37.34.0 123,417 8/19/2020
37.33.0 41,265 8/18/2020
37.32.0 8,791 8/17/2020
37.31.0 25,735 8/13/2020
37.30.0 74,571 8/7/2020
37.29.0 34,815 8/6/2020
37.28.0 14,448 8/4/2020
37.27.0 77,760 7/29/2020
37.26.0 136,857 7/25/2020
37.25.0 6,190 7/25/2020
37.24.0 22,366 7/22/2020
37.23.0 9,263 7/21/2020
37.22.0 5,444 7/21/2020
37.21.0 10,672 7/21/2020
37.20.0 14,897 7/18/2020
37.19.0 6,971 7/17/2020
37.18.0 85,844 7/15/2020
37.17.0 42,602 7/13/2020
37.16.0 103,999 7/6/2020
37.15.1 37,320 7/3/2020
37.15.0 32,540 7/1/2020
37.14.0 199,215 6/25/2020
37.13.0 40,624 6/23/2020
37.12.0 35,818 6/22/2020
37.11.0 15,941 6/18/2020
37.10.0 89,935 6/11/2020
37.9.0 10,249 6/11/2020
37.8.0 219,633 6/3/2020
37.7.0 4,427 6/3/2020
37.6.0 56,966 5/29/2020
37.5.0 31,358 5/28/2020
37.4.0 155,753 5/22/2020
37.3.0 87,274 5/21/2020
37.2.0 4,448 5/20/2020
37.1.0 71,115 5/19/2020
37.0.0 68,641 5/18/2020
36.12.2 77,722 5/14/2020
36.12.1 4,166 5/14/2020
36.12.0 4,289 5/13/2020
36.11.0 79,478 5/12/2020
36.10.0 17,757 5/11/2020
36.9.0 27,596 5/8/2020
36.8.1 39,055 5/5/2020
36.8.0 30,851 5/1/2020
36.7.0 17,714 4/29/2020
36.6.0 30,013 4/24/2020
36.5.0 23,557 4/22/2020
36.4.0 4,613 4/22/2020
36.3.0 8,922 4/21/2020
36.2.0 21,016 4/18/2020
36.1.0 17,469 4/17/2020
36.0.0 12,923 4/16/2020
35.17.0 35,667 4/14/2020
35.16.0 21,005 4/13/2020
35.15.0 6,484 4/13/2020
35.14.0 15,876 4/10/2020
35.13.0 5,418 4/9/2020
35.12.1 195,642 4/8/2020
35.12.0 53,513 4/3/2020
35.11.1 223,900 3/31/2020
35.11.0 36,623 3/31/2020
35.10.0 53,863 3/26/2020
35.9.0 42,509 3/25/2020
35.8.0 7,821 3/24/2020
35.7.1 6,333 3/23/2020
35.7.0 37,444 3/20/2020
35.6.0 308,227 3/13/2020
35.5.0 7,228 3/12/2020
35.4.0 5,391 3/12/2020
35.3.0 90,885 3/5/2020
35.2.0 4,594 3/4/2020
35.1.0 7,166 3/4/2020
35.0.0 26,754 3/4/2020
34.26.0 114,914 2/24/2020
34.25.0 21,627 2/21/2020
34.24.0 9,077 2/21/2020
34.23.0 127,871 2/17/2020
34.22.0 37,142 2/13/2020
34.21.0 5,519 2/12/2020
34.20.1 10,444 2/12/2020
34.20.0 89,522 2/6/2020
34.19.0 49,585 2/3/2020
34.18.0 55,969 1/31/2020
34.17.0 59,160 1/25/2020
34.16.1 12,446 1/22/2020
34.16.0 43,410 1/17/2020
34.15.0 281,872 1/15/2020
34.14.0 7,244 1/14/2020
34.13.0 60,450 1/10/2020
34.12.0 24,668 1/6/2020
34.11.0 15,693 1/4/2020
34.10.1 9,124 1/3/2020
34.10.0 30,214 12/31/2019
34.9.0 108,004 12/24/2019
34.8.0 33,680 12/21/2019
34.7.0 10,105 12/19/2019
34.6.0 31,679 12/17/2019
34.5.0 59,159 12/13/2019
34.4.0 7,516 12/12/2019
34.3.0 31,039 12/9/2019
34.2.0 4,211 12/9/2019
34.1.0 102,659 12/4/2019
34.0.0 21,614 12/4/2019
33.9.0 47,531 12/2/2019
33.8.0 35,794 11/26/2019
33.7.0 21,035 11/25/2019
33.6.0 19,557 11/22/2019
33.5.0 9,011 11/21/2019
33.4.0 14,410 11/19/2019
33.3.0 75,637 11/8/2019
33.2.0 9,589 11/7/2019
33.1.0 13,827 11/6/2019
33.0.0 27,475 11/6/2019
32.2.0 33,662 11/4/2019
32.1.3 38,853 10/28/2019
32.1.2 8,297 10/25/2019
32.1.1 3,668 10/24/2019
32.1.0 14,879 10/24/2019
32.0.0 22,433 10/19/2019
31.2.0 5,461 10/18/2019
31.1.0 114,709 10/11/2019
31.0.0 5,485 10/10/2019
30.1.0 47,803 10/10/2019
30.0.1 5,706 10/9/2019
30.0.0 40,032 10/9/2019
29.6.0 54,775 10/3/2019
29.5.0 63,619 9/27/2019
29.4.0 21,942 9/26/2019
29.3.0 10,365 9/26/2019
29.2.1 29,285 9/23/2019
29.2.0 39,378 9/19/2019
29.1.0 164,951 9/13/2019
29.0.1 12,611 9/12/2019
29.0.0 94,012 9/10/2019
28.11.0 49,391 9/9/2019
28.10.0 93,558 9/4/2019
28.9.0 21,514 9/3/2019
28.8.0 328,889 8/30/2019
28.7.0 4,928 8/29/2019
28.6.0 177,362 8/27/2019
28.5.0 57,453 8/23/2019
28.4.0 21,595 8/21/2019
28.3.0 17,384 8/20/2019
28.2.0 160,504 8/16/2019
28.1.0 48,479 8/15/2019
28.0.0 58,202 8/14/2019
27.25.1 13,807 8/14/2019
27.24.0 61,698 8/9/2019
27.23.0 10,118 8/8/2019
27.22.0 4,178 8/8/2019
27.21.0 136,320 8/2/2019
27.20.0 30,630 8/1/2019
27.19.0 33,759 7/31/2019
27.18.0 30,702 7/26/2019
27.17.0 13,364 7/25/2019
27.16.1 118,969 7/23/2019
27.16.0 59,164 7/22/2019
27.15.0 100,772 7/19/2019
27.14.0 35,866 7/18/2019
27.13.0 45,341 7/16/2019
27.12.0 5,744 7/15/2019
27.11.0 29,185 7/11/2019
27.10.0 20,660 7/10/2019
27.9.1 37,755 7/10/2019
27.9.0 37,463 7/5/2019
27.8.1 50,623 7/3/2019
27.8.0 8,858 7/2/2019
27.7.0 4,452 7/2/2019
27.6.0 6,258 7/1/2019
27.5.0 11,237 7/1/2019
27.4.0 24,259 6/26/2019
27.3.2 56,755 6/20/2019
27.3.1 24,756 6/18/2019
27.3.0 9,953 6/17/2019
27.2.0 32,044 6/14/2019
27.1.3 10,814 6/12/2019
27.1.2 11,641 6/11/2019
27.1.1 4,161 6/10/2019
27.1.0 4,744 6/10/2019
27.0.0 14,661 6/7/2019
26.1.0 22,312 6/6/2019
26.0.0 128,651 5/24/2019
25.19.1 20,647 5/22/2019
25.19.0 37,989 5/17/2019
25.18.0 18,660 5/14/2019
25.17.0 17,351 5/10/2019
25.16.1 19,346 5/8/2019
25.16.0 12,999 5/6/2019
25.15.0 52,683 5/4/2019
25.14.0 7,090 5/3/2019
25.13.0 25,852 4/30/2019
25.12.0 25,900 4/25/2019
25.11.0 3,987 4/24/2019
25.10.0 38,176 4/23/2019
25.9.0 18,823 4/18/2019
25.8.0 66,693 4/17/2019
25.7.1 4,580 4/16/2019
25.7.0 10,993 4/15/2019
25.6.0 36,185 4/10/2019
25.5.0 3,872 4/9/2019
25.4.0 14,407 4/5/2019
25.3.0 164,728 3/29/2019
25.2.0 28,819 3/25/2019
25.1.0 15,573 3/22/2019
25.0.0 28,586 3/19/2019
24.6.0 14,825 3/19/2019
24.5.0 41,857 3/14/2019
24.4.1 26,856 3/11/2019
24.3.0 40,130 3/7/2019
24.2.0 5,038 3/6/2019
24.1.0 38,115 2/28/2019
24.0.2 173,621 2/20/2019
24.0.1 4,657 2/20/2019
23.2.0 4,362 2/19/2019
23.1.0 7,026 2/18/2019
23.0.0 16,273 2/14/2019
22.9.0 10,864 2/12/2019
22.8.1 43,050 2/4/2019
22.8.0 91,769 1/25/2019
22.7.0 34,685 1/20/2019
22.6.0 7,312 1/18/2019
22.5.0 4,826 1/17/2019
22.4.0 30,785 1/10/2019
22.3.0 40,962 1/9/2019
22.2.0 4,464 1/9/2019
22.1.0 7,270 1/8/2019
22.0.0 11,637 1/7/2019
21.9.0 30,429 1/3/2019
21.8.1 5,359 1/3/2019
21.8.0 43,485 12/27/2018
21.7.1 14,739 12/21/2018
21.7.0 260,480 11/28/2018
21.6.0 13,569 11/27/2018
21.5.0 37,074 11/26/2018
21.4.1 29,519 11/16/2018
21.4.0 9,927 11/14/2018
21.3.0 4,402 11/14/2018
21.2.0 10,813 11/12/2018
21.1.0 11,916 11/9/2018
21.0.0 8,877 11/9/2018
20.4.1 10,618 11/8/2018
20.4.0 21,874 11/5/2018
20.3.0 10,335 10/31/2018
20.2.0 18,827 10/25/2018
20.1.0 20,722 10/23/2018
20.0.0 6,875 10/22/2018
19.10.0 271,908 10/9/2018
19.9.2 40,486 9/28/2018
19.9.1 10,567 9/27/2018
19.9.0 134,501 9/26/2018
19.8.0 17,382 9/24/2018
19.7.0 98,993 9/20/2018
19.6.0 48,807 9/11/2018
19.5.0 22,371 9/6/2018
19.4.0 6,396 9/6/2018
19.3.0 19,326 9/4/2018
19.2.0 27,350 8/29/2018
19.1.0 9,468 8/28/2018
19.0.1 5,730 8/27/2018
18.0.0 29,317 8/23/2018
17.11.0 27,591 8/23/2018
17.10.0 15,591 8/21/2018
17.9.0 15,232 8/16/2018
17.8.0 331,413 8/3/2018
17.7.0 43,790 7/31/2018
17.6.0 34,014 7/27/2018
17.5.0 8,168 7/26/2018
17.4.0 17,866 7/23/2018
17.3.1 86,158 7/16/2018
17.3.0 18,246 7/13/2018
17.2.0 4,760 7/13/2018
17.1.0 6,398 7/12/2018
17.0.0 5,511 7/11/2018
16.16.1 35,491 7/11/2018
16.16.0 17,217 7/6/2018
16.14.0 31,836 6/29/2018
16.13.0 5,602 6/28/2018
16.12.0 45,528 6/20/2018
16.11.0 4,611 6/20/2018
16.10.0 99,380 6/13/2018
16.9.0 17,200 6/12/2018
16.8.0 5,528 6/12/2018
16.7.0 16,055 6/6/2018
16.6.0 4,941 6/6/2018
16.5.0 7,851 6/6/2018
16.4.0 26,814 6/1/2018
16.3.0 49,876 5/23/2018
16.1.0 116,276 5/10/2018
16.0.0 6,145 5/10/2018
15.8.0 13,695 5/8/2018
15.7.0 11,613 5/3/2018
15.6.2 31,336 4/25/2018
15.6.1 81,300 4/19/2018
15.6.0 36,238 4/18/2018
15.5.0 15,446 4/16/2018
15.3.2 202,981 4/9/2018
15.3.1 14,930 4/6/2018
15.3.0 42,574 4/4/2018
15.2.1 58,573 3/27/2018
15.2.0 5,406 3/26/2018
15.1.0 9,190 3/23/2018
15.0.0 27,255 3/21/2018
14.0.0 14,788 3/16/2018
13.5.0 31,672 3/15/2018
13.4.0 9,329 3/13/2018
13.3.1 28,441 3/5/2018
13.3.0 18,360 3/1/2018
13.2.0 9,458 2/27/2018
13.1.0 718,125 2/22/2018
13.0.1 11,501 2/19/2018
13.0.0 32,457 2/13/2018
12.1.0 251,268 1/19/2018
12.0.0 12,382 1/16/2018
11.10.0 70,533 12/26/2017
11.9.0 75,532 11/29/2017
11.8.2 17,502 11/23/2017
11.8.1 14,688 11/23/2017
11.7.1 87,344 10/31/2017
11.7.0 4,755 10/31/2017
11.6.1 22,552 10/24/2017
11.6.0 40,650 10/19/2017
11.5.0 42,325 10/17/2017
11.4.0 7,693 10/13/2017
11.3.0 6,234 10/11/2017
11.2.0 9,451 10/10/2017
11.1.0 4,578 10/10/2017
11.0.0 17,940 10/10/2017
10.4.0 252,875 8/8/2017
10.3.0 59,572 7/14/2017
10.2.0 67,440 6/28/2017
10.1.0 5,642 6/27/2017
10.0.0 58,123 6/6/2017
9.1.0 21,491 6/1/2017
9.0.0 52,771 5/13/2017
8.4.0 23,336 5/5/2017
8.3.0 7,840 5/2/2017
8.2.0 29,739 4/27/2017
8.1.1 15,280 4/19/2017
8.1.0 4,922 4/19/2017
8.0.0 12,231 4/13/2017
7.63.0 3,845 11/17/2020 7.63.0 is deprecated.
7.8.0 51,713 4/6/2017
7.7.0 10,313 4/1/2017
7.6.1 11,853 3/28/2017
7.6.0 23,089 3/17/2017
7.5.0 5,437 3/16/2017
7.4.0 13,843 3/7/2017
7.3.0 33,099 3/3/2017
7.2.0 17,755 2/28/2017
7.1.2 11,469 2/24/2017
7.1.1 7,027 2/23/2017
7.1.0 11,164 2/21/2017
7.0.5 66,558 2/21/2017
7.0.4 46,839 2/11/2017
7.0.3 45,918 1/19/2017
7.0.2 36,541 1/10/2017
7.0.1 21,163 12/25/2016
7.0.0 33,752 12/19/2016
6.13.0 15,038 12/17/2016
6.12.1 5,211 12/16/2016
6.12.0 83,020 11/29/2016
6.11.1 20,332 11/21/2016
6.11.0 11,130 11/8/2016
6.10.0 13,689 10/29/2016
6.9.0 71,953 10/18/2016
6.8.0 31,518 10/4/2016
6.7.0 16,721 9/26/2016
6.6.0 19,255 9/11/2016
6.5.0 29,187 9/1/2016
6.4.0 69,330 8/6/2016
6.3.6 23,200 7/29/2016
6.3.5 18,652 7/6/2016
6.3.4 35,289 6/25/2016
6.3.3 81,532 5/14/2016
6.3.2 41,201 4/25/2016
6.3.1 28,717 4/17/2016
6.3.0 4,837 4/17/2016
6.2.2 13,609 4/12/2016
6.2.1 7,515 4/4/2016
6.2.0 4,843 4/3/2016
6.1.1 4,734 4/1/2016
6.1.0 36,862 3/25/2016
6.0.1 39,703 3/15/2016
6.0.0 14,787 3/10/2016
5.3.0 55,425 2/14/2016
5.2.0 19,032 1/25/2016
5.1.3 12,086 1/8/2016
5.1.2 60,765 12/2/2015
5.1.1 9,171 11/29/2015
5.1.0 7,453 11/28/2015
5.0.1 53,009 11/19/2015
5.0.0 13,028 10/23/2015
4.2.1 18,693 9/13/2015
4.2.0 60,238 7/26/2015
4.1.0 11,422 7/11/2015
4.0.2 9,663 7/3/2015
4.0.1 15,316 7/2/2015
4.0.0 4,905 7/2/2015
3.0.2 11,630 6/17/2015
3.0.1 5,043 6/17/2015
3.0.0 7,398 5/28/2015
2.9.0 90,604 4/12/2015
2.8.0 30,591 3/14/2015
2.7.2 15,914 2/17/2015
2.7.1 5,512 2/17/2015
2.7.0 5,330 2/16/2015
2.6.0 5,742 2/14/2015
2.5.1 11,749 2/7/2015
2.5.0 5,588 1/31/2015
2.4.1 4,992 1/31/2015
2.4.0 5,450 1/25/2015
2.3.5 7,911 1/21/2015
2.3.4 24,139 12/4/2014
2.3.3 26,667 11/3/2014
2.3.2 5,684 10/26/2014
2.3.1 5,100 10/26/2014
2.3.0 12,597 9/4/2014
2.2.6 48,788 7/15/2014
2.2.5 9,632 6/22/2014
2.2.4 5,678 6/17/2014
2.2.3 5,554 6/13/2014
2.2.2 7,976 5/29/2014
2.2.1 5,125 5/28/2014
2.2.0 4,844 5/27/2014
2.1.2 5,596 5/14/2014
2.1.1 5,482 5/13/2014
2.1.0 7,472 4/20/2014
2.0.1 5,841 4/13/2014
2.0.0 5,863 4/5/2014
1.7.7 7,189 3/17/2014
1.7.6 19,936 1/18/2014
1.7.5 5,218 1/12/2014
1.7.4 6,647 12/25/2013
1.7.3 4,811 12/25/2013
1.7.2 4,838 12/24/2013
1.7.1 5,791 12/1/2013
1.7.0 7,576 11/3/2013
1.6.3 6,557 10/19/2013
1.6.2 8,981 8/30/2013
1.6.1 8,013 8/15/2013
1.6.0 4,746 8/10/2013
1.5.7 7,200 7/18/2013
1.5.6 5,472 6/30/2013
1.5.5 19,289 5/27/2013
1.5.4 5,640 5/7/2013
1.5.3 6,397 3/30/2013
1.5.2 4,904 3/26/2013
1.5.1 4,966 3/13/2013
1.5.0 4,968 3/4/2013
1.4.3 4,640 3/4/2013
1.4.2 4,909 3/4/2013
1.4.1 4,958 2/24/2013
1.4.0 4,978 2/12/2013
1.3.1 4,777 2/11/2013
1.3.0 4,744 2/11/2013
1.2.1 4,872 1/24/2013
1.2.0 5,594 12/2/2012
1.1.18 14,307 11/4/2012
1.1.17 5,615 9/7/2012
1.1.16 4,896 9/5/2012
1.1.15 4,694 8/27/2012
1.1.14 5,128 8/4/2012
1.1.13 12,137 6/10/2012
1.1.12 5,143 4/21/2012
1.1.11 5,143 4/8/2012
1.1.10 14,597 3/25/2012
1.1.9 4,772 3/5/2012
1.1.8 4,817 2/26/2012
1.1.7 4,766 2/26/2012
1.1.6 4,982 2/26/2012
0.5.2 24,109 11/28/2015