Stripe.net 48.4.0-beta.1

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.4.0-beta.1
                    
NuGet\Install-Package Stripe.net -Version 48.4.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.4.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.4.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.4.0-beta.1
                    
#r "nuget: Stripe.net, 48.4.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.4.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.4.0-beta.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Stripe.net&version=48.4.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 (130)

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

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
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
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.5.0-beta.1 13 7/30/2025
48.4.0 171 7/30/2025
48.4.0-beta.2 371 7/9/2025
48.4.0-beta.1 359 7/1/2025
48.3.0 53,642 7/1/2025
48.3.0-beta.2 247 6/26/2025
48.3.0-beta.1 4,213 5/28/2025
48.2.0 174,885 5/28/2025
48.2.0-beta.2 6,079 4/30/2025
48.2.0-beta.1 155 4/30/2025
48.1.0 199,868 4/30/2025
48.1.0-beta.4 3,693 4/17/2025
48.1.0-beta.3 1,337 4/10/2025
48.1.0-beta.2 4,681 4/2/2025
48.0.2 84,384 4/15/2025
48.0.1 7,619 4/14/2025
48.0.0 120,105 4/1/2025
47.5.0-beta.1 2,727 3/18/2025
47.4.0 552,143 2/24/2025
47.4.0-beta.1 19,388 2/7/2025
47.3.0 383,666 1/27/2025
47.3.0-beta.3 8,712 1/23/2025
47.3.0-beta.2 601 1/18/2025
47.3.0-beta.1 4,920 1/9/2025
47.2.0 376,130 12/18/2024
47.2.0-beta.3 1,708 12/12/2024
47.2.0-beta.2 596 12/5/2024
47.2.0-beta.1 18,020 11/21/2024
47.1.0 454,943 11/20/2024
47.1.0-beta.3 3,135 11/15/2024
47.1.0-beta.2 1,238 11/7/2024
47.1.0-beta.1 4,178 10/29/2024
47.0.0 418,987 10/29/2024
46.3.0-beta.1 11,624 10/18/2024
46.2.2 20,624 10/29/2024
46.2.1 172,936 10/18/2024
46.2.0 193,715 10/9/2024
46.2.0-beta.3 1,432 10/8/2024
46.1.0 73,142 10/3/2024
46.0.0 34,467 10/1/2024
45.15.0-beta.1 13,375 9/18/2024
45.14.0 519,773 9/18/2024
45.13.0 73,516 9/13/2024
45.12.0 3,269 9/13/2024
45.12.0-beta.1 1,763 9/5/2024
45.11.0 136,285 9/5/2024
45.10.0 128,744 8/29/2024
45.10.0-beta.1 3,302 8/23/2024
45.9.0 80,970 8/23/2024
45.9.0-beta.2 201 8/22/2024
45.9.0-beta.1 4,520 8/15/2024
45.8.0 118,165 8/15/2024
45.8.0-beta.1 2,407 8/12/2024
45.7.0 89,428 8/9/2024
45.7.0-beta.1 4,471 8/1/2024
45.6.0 111,715 8/1/2024
45.6.0-beta.1 5,409 7/25/2024
45.5.0 106,406 7/25/2024
45.4.0 118,447 7/18/2024
45.3.0 172,731 7/11/2024
45.3.0-beta.1 57,773 7/5/2024
45.2.0 106,787 7/5/2024
45.2.0-beta.1 3,428 6/27/2024
45.1.0 122,431 6/27/2024
45.0.0 144,886 6/24/2024
44.13.0 295,920 6/17/2024
44.13.0-beta.1 3,345 6/13/2024
44.12.0 68,771 6/13/2024
44.12.0-beta.1 422 6/6/2024
44.11.0 119,234 6/6/2024
44.11.0-beta.1 2,127 5/30/2024
44.10.0 270,688 5/30/2024
44.10.0-beta.1 6,668 5/23/2024
44.9.0 118,096 5/23/2024
44.9.0-beta.1 2,349 5/16/2024
44.8.0 95,707 5/16/2024
44.7.0 120,318 5/9/2024
44.7.0-beta.1 196 5/9/2024
44.6.0 6,798 5/9/2024
44.6.0-beta.1 1,836 5/2/2024
44.5.0 102,174 5/2/2024
44.5.0-beta.1 7,571 4/25/2024
44.4.0 127,680 4/25/2024
44.4.0-beta.1 1,188 4/18/2024
44.3.0 184,429 4/18/2024
44.2.0 45,885 4/16/2024
44.2.0-beta.1 760 4/12/2024
44.1.0 169,195 4/11/2024
44.0.0 137,286 4/10/2024
43.23.0 77,927 4/9/2024
43.23.0-beta.1 2,707 4/4/2024
43.22.0 97,773 4/4/2024
43.22.0-beta.1 34,676 3/28/2024
43.21.0 116,115 3/28/2024
43.21.0-beta.1 1,213 3/21/2024
43.20.0 221,957 3/21/2024
43.20.0-beta.1 597 3/14/2024
43.19.0 167,062 3/14/2024
43.19.0-beta.1 10,413 3/8/2024
43.18.0 119,569 3/7/2024
43.18.0-beta.1 1,006 2/29/2024
43.17.0 84,996 2/29/2024
43.17.0-beta.1 9,590 2/22/2024
43.16.0 90,648 2/22/2024
43.16.0-beta.1 4,872 2/16/2024
43.15.0 134,297 2/16/2024
43.15.0-beta.1 1,231 2/8/2024
43.14.0 132,538 2/8/2024
43.14.0-beta.1 1,422 2/2/2024
43.13.0 214,685 2/1/2024
43.13.0-beta.1 1,382 1/26/2024
43.12.0 135,242 1/25/2024
43.12.0-beta.1 3,553 1/18/2024
43.11.0 130,301 1/18/2024
43.11.0-beta.1 429 1/12/2024
43.10.0 77,408 1/12/2024
43.10.0-beta.1 1,542 1/4/2024
43.9.0 119,177 1/4/2024
43.9.0-beta.1 2,233 12/22/2023
43.8.0 102,275 12/22/2023
43.8.0-beta.1 1,004 12/15/2023
43.7.0 125,944 12/15/2023
43.7.0-beta.1 525 12/8/2023
43.6.0 177,856 12/7/2023
43.6.0-beta.1 627 11/30/2023
43.5.0 83,938 11/30/2023
43.5.0-beta.1 2,736 11/21/2023
43.4.0 269,223 11/21/2023
43.4.0-beta.1 2,943 11/17/2023
43.3.0 107,955 11/17/2023
43.3.0-beta.1 939 11/10/2023
43.2.0 134,764 11/9/2023
43.2.0-beta.1 478 11/2/2023
43.1.0 131,056 11/2/2023
43.1.0-beta.2 1,079 10/26/2023
43.1.0-beta.1 1,414 10/17/2023
43.0.0 331,491 10/16/2023
42.10.0 34,975 10/16/2023
42.10.0-beta.1 1,673 10/11/2023
42.9.0 71,692 10/11/2023
42.9.0-beta.1 2,156 10/5/2023
42.8.0 102,860 10/5/2023
42.8.0-beta.1 1,031 9/29/2023
42.7.0 101,040 9/28/2023
42.7.0-beta.1 9,154 9/22/2023
42.6.0 132,978 9/21/2023
42.6.0-beta.1 4,109 9/15/2023
42.5.0 90,271 9/15/2023
42.5.0-beta.1 2,664 9/7/2023
42.4.0 94,035 9/7/2023
42.4.0-beta.1 1,194 9/1/2023
42.3.0 73,345 8/31/2023
42.2.0 123,810 8/24/2023
42.1.0 68,939 8/17/2023
42.0.0 17,129 8/16/2023
42.0.0-beta.1 216 8/24/2023
41.29.0-beta.1 4,840 8/11/2023
41.28.0 252,143 8/11/2023
41.28.0-beta.1 2,195 8/3/2023
41.27.0 107,633 8/3/2023
41.27.0-beta.1 1,756 7/28/2023
41.26.0 102,498 7/27/2023
41.25.0 120,489 7/20/2023
41.25.0-beta.1 976 7/13/2023
41.24.0 101,817 7/13/2023
41.23.0 120,473 7/6/2023
41.23.0-beta.1 6,706 6/30/2023
41.22.0 94,578 6/29/2023
41.22.0-beta.1 437 6/22/2023
41.21.0 104,835 6/22/2023
41.21.0-beta.2 2,830 6/15/2023
41.21.0-beta.1 493 6/8/2023
41.20.0 197,748 6/8/2023
41.20.0-beta.1 624 6/1/2023
41.19.0 131,055 6/1/2023
41.19.0-beta.1 2,706 5/25/2023
41.18.0 318,646 5/25/2023
41.18.0-beta.1 603 5/19/2023
41.17.0 105,089 5/19/2023
41.17.0-beta.1 1,967 5/11/2023
41.16.0 3,027,527 5/11/2023
41.16.0-beta.1 849 5/5/2023
41.15.0 127,495 5/4/2023
41.15.0-beta.1 772 4/27/2023
41.14.0 159,185 4/27/2023
41.14.0-beta.3 714 4/20/2023
41.14.0-beta.2 1,600 4/13/2023
41.14.0-beta.1 1,361 4/6/2023
41.13.0 423,337 4/6/2023
41.13.0-beta.1 2,741 3/30/2023
41.12.0 141,600 3/30/2023
41.12.0-beta.1 875 3/24/2023
41.11.0 105,455 3/23/2023
41.11.0-beta.1 4,758 3/17/2023
41.10.0 98,324 3/17/2023
41.10.0-beta.1 2,307 3/9/2023
41.9.0 309,998 3/9/2023
41.9.0-beta.1 8,640 3/3/2023
41.8.0 79,938 3/2/2023
41.8.0-beta.2 985 2/24/2023
41.8.0-beta.1 1,938 2/17/2023
41.7.0 214,137 2/16/2023
41.7.0-beta.1 5,883 2/2/2023
41.6.0 281,016 2/2/2023
41.6.0-beta.2 661 1/27/2023
41.6.0-beta.1 1,323 1/19/2023
41.5.0 223,872 1/19/2023
41.5.0-beta.2 475 1/12/2023
41.5.0-beta.1 4,821 1/5/2023
41.4.0 231,480 1/5/2023
41.4.0-beta.1 1,434 12/22/2022
41.3.0 130,785 12/22/2022
41.3.0-beta.2 4,198 12/16/2022
41.3.0-beta.1 4,349 12/8/2022
41.2.0 209,831 12/6/2022
41.1.0 382,450 11/17/2022
41.0.0 42,203 11/16/2022
40.17.0-beta.1 965 11/10/2022
40.16.0 302,706 11/8/2022
40.15.0 256,622 11/3/2022
40.15.0-beta.2 631 11/2/2022
40.15.0-beta.1 4,571 10/22/2022
40.14.0 187,638 10/20/2022
40.14.0-beta.1 1,036 10/14/2022
40.13.0 229,775 10/13/2022
40.13.0-beta.1 2,315 10/7/2022
40.12.0 81,527 10/6/2022
40.12.0-beta.2 326 10/4/2022
40.12.0-beta.1 292 10/4/2022
40.11.0 104,784 9/29/2022
40.11.0-beta.1 999 9/26/2022
40.10.0 110,808 9/22/2022
40.9.0 136,587 9/15/2022
40.8.0 129,086 9/9/2022
40.7.0 84,241 9/6/2022
40.6.0 145,682 8/31/2022
40.5.0 79,139 8/26/2022
40.5.0-beta.1 689 8/26/2022
40.4.0 213,618 8/23/2022
40.4.0-beta.1 802 8/23/2022
40.3.0 159,211 8/19/2022
40.3.0-beta.1 503 8/11/2022
40.2.0 124,961 8/11/2022
40.1.0 68,734 8/9/2022
40.1.0-beta.1 350 8/3/2022
40.0.0 285,841 8/2/2022
39.126.0 560,586 7/26/2022
39.125.0 104,335 7/25/2022
39.125.0-beta.1 415 7/22/2022
39.124.0 161,965 7/18/2022
39.123.0 257,277 7/12/2022
39.123.0-beta.1 1,778 7/7/2022
39.122.0 115,122 7/7/2022
39.121.0 282,939 6/29/2022
39.120.0 101,217 6/23/2022
39.119.0 134,191 6/17/2022
39.119.0-beta.1 473 6/15/2022
39.118.0 142,698 6/9/2022
39.117.0 46,023 6/8/2022
39.116.0 103,328 6/1/2022
39.115.0 98,854 5/26/2022
39.114.0 126,578 5/23/2022
39.113.0 11,706 5/23/2022
39.112.0 37,106 5/20/2022
39.111.0 306,814 5/11/2022
39.110.0 221,551 5/5/2022
39.109.0 8,747 5/5/2022
39.108.0 29,920 5/3/2022
39.107.0 135,154 4/21/2022
39.106.0 345,470 4/20/2022
39.105.0 248,939 4/13/2022
39.104.0 184,456 4/8/2022
39.103.0 202,690 4/1/2022
39.102.0 30,372 3/30/2022
39.101.0 18,244 3/29/2022
39.100.0 68,680 3/25/2022
39.99.0 62,277 3/23/2022
39.98.0 71,457 3/18/2022
39.97.0 199,612 3/11/2022
39.96.0 92,579 3/9/2022
39.95.0 129,341 3/2/2022
39.94.0 7,754 3/2/2022
39.93.0 59,126 2/26/2022
39.92.0 36,660 2/23/2022
39.91.0 491,035 2/16/2022
39.90.0 138,999 2/6/2022
39.89.0 326,792 1/25/2022
39.88.0 94,744 1/20/2022
39.87.0 13,361 1/19/2022
39.86.0 59,495 1/13/2022
39.85.0 32,999 1/12/2022
39.84.0 278,219 12/22/2021
39.83.0 103,492 12/15/2021
39.82.0 66,134 12/9/2021
39.81.0 10,725 12/9/2021
39.80.0 550,553 11/20/2021
39.79.0 20,464 11/17/2021
39.78.1 11,252 11/16/2021
39.78.0 3,537 11/16/2021
39.77.0 45,651 11/11/2021
39.76.0 124,348 11/4/2021
39.75.1 5,776 11/4/2021
39.75.0 144,146 11/1/2021
39.74.0 254,594 10/20/2021
39.73.0 121,983 10/11/2021
39.72.0 7,810 10/11/2021
39.71.0 26,465 10/7/2021
39.70.0 74,476 9/29/2021
39.69.0 67,209 9/24/2021
39.68.0 210,434 9/16/2021
39.67.0 7,073 9/15/2021
39.66.0 129,198 9/2/2021
39.65.0 4,824 9/1/2021
39.64.0 206,416 8/27/2021
39.63.0 244,389 8/11/2021
39.62.0 166,964 7/28/2021
39.61.0 123,343 7/22/2021
39.60.0 19,456 7/21/2021
39.59.0 237,997 7/14/2021
39.58.0 62,108 7/9/2021
39.57.0 96,787 6/30/2021
39.56.1 5,525 6/30/2021
39.56.0 9,294 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 42,922 6/25/2021
39.54.0 69,781 6/16/2021
39.53.0 344,308 6/7/2021
39.52.0 32,394 6/4/2021
39.51.0 62,597 6/4/2021
39.50.0 222,084 5/26/2021
39.49.0 88,817 5/20/2021
39.48.0 172,534 5/7/2021
39.47.0 49,717 5/6/2021
39.46.0 4,130 5/5/2021
39.45.0 141,337 4/16/2021
39.44.0 158,414 4/12/2021
39.43.0 138,129 4/3/2021
39.42.0 152,888 3/31/2021
39.41.0 122,672 3/26/2021
39.40.0 179,866 3/22/2021
39.39.0 219,988 3/1/2021
39.38.0 295,591 2/23/2021
39.37.0 86,294 2/18/2021
39.36.0 14,939 2/17/2021
39.35.0 103,063 2/9/2021
39.34.0 136,345 2/3/2021
39.33.0 239,236 1/21/2021
39.32.0 138,239 1/7/2021
39.31.0 276,887 12/16/2020
39.30.0 67,148 12/11/2020
39.29.0 179,535 12/4/2020
39.28.0 210,238 11/24/2020
39.27.0 53,432 11/20/2020
39.26.0 15,093 11/19/2020
39.25.0 26,532 11/18/2020
39.24.0 9,384 11/18/2020
39.23.0 213,803 11/9/2020
39.22.0 45,283 11/4/2020
39.21.0 76,551 10/29/2020
39.20.0 25,231 10/27/2020
39.19.0 37,767 10/26/2020
39.18.0 15,613 10/23/2020
39.17.0 14,156 10/23/2020
39.16.0 121,430 10/14/2020
39.15.0 20,860 10/13/2020
39.14.0 5,158 10/12/2020
39.13.0 23,275 10/9/2020
39.12.0 25,381 10/9/2020
39.11.0 120,918 10/3/2020
39.10.0 39,779 9/30/2020
39.9.0 17,663 9/30/2020
39.8.0 17,916 9/29/2020
39.7.0 45,940 9/25/2020
39.6.0 27,639 9/23/2020
39.5.0 54,723 9/22/2020
39.4.0 111,472 9/13/2020
39.3.0 94,543 9/8/2020
39.2.0 50,374 9/3/2020
39.1.2 49,659 9/1/2020
37.35.0 451,161 8/27/2020
37.34.0 122,888 8/19/2020
37.33.0 41,009 8/18/2020
37.32.0 8,656 8/17/2020
37.31.0 25,505 8/13/2020
37.30.0 74,411 8/7/2020
37.29.0 34,679 8/6/2020
37.28.0 14,401 8/4/2020
37.27.0 77,446 7/29/2020
37.26.0 136,134 7/25/2020
37.25.0 6,144 7/25/2020
37.24.0 22,216 7/22/2020
37.23.0 9,203 7/21/2020
37.22.0 5,398 7/21/2020
37.21.0 10,621 7/21/2020
37.20.0 14,824 7/18/2020
37.19.0 6,924 7/17/2020
37.18.0 85,142 7/15/2020
37.17.0 42,058 7/13/2020
37.16.0 103,880 7/6/2020
37.15.1 37,212 7/3/2020
37.15.0 32,446 7/1/2020
37.14.0 198,204 6/25/2020
37.13.0 40,472 6/23/2020
37.12.0 35,759 6/22/2020
37.11.0 15,838 6/18/2020
37.10.0 89,203 6/11/2020
37.9.0 10,202 6/11/2020
37.8.0 215,053 6/3/2020
37.7.0 4,381 6/3/2020
37.6.0 56,796 5/29/2020
37.5.0 31,245 5/28/2020
37.4.0 152,971 5/22/2020
37.3.0 84,853 5/21/2020
37.2.0 4,401 5/20/2020
37.1.0 69,893 5/19/2020
37.0.0 68,542 5/18/2020
36.12.2 76,660 5/14/2020
36.12.1 4,121 5/14/2020
36.12.0 4,245 5/13/2020
36.11.0 78,462 5/12/2020
36.10.0 17,712 5/11/2020
36.9.0 27,552 5/8/2020
36.8.1 39,003 5/5/2020
36.8.0 30,588 5/1/2020
36.7.0 17,668 4/29/2020
36.6.0 29,937 4/24/2020
36.5.0 23,316 4/22/2020
36.4.0 4,565 4/22/2020
36.3.0 8,877 4/21/2020
36.2.0 20,965 4/18/2020
36.1.0 17,424 4/17/2020
36.0.0 12,743 4/16/2020
35.17.0 34,329 4/14/2020
35.16.0 20,939 4/13/2020
35.15.0 6,439 4/13/2020
35.14.0 15,830 4/10/2020
35.13.0 5,370 4/9/2020
35.12.1 194,093 4/8/2020
35.12.0 53,108 4/3/2020
35.11.1 223,064 3/31/2020
35.11.0 36,579 3/31/2020
35.10.0 53,280 3/26/2020
35.9.0 42,056 3/25/2020
35.8.0 7,771 3/24/2020
35.7.1 6,287 3/23/2020
35.7.0 37,072 3/20/2020
35.6.0 306,561 3/13/2020
35.5.0 7,181 3/12/2020
35.4.0 5,345 3/12/2020
35.3.0 90,329 3/5/2020
35.2.0 4,549 3/4/2020
35.1.0 7,122 3/4/2020
35.0.0 26,700 3/4/2020
34.26.0 113,160 2/24/2020
34.25.0 21,548 2/21/2020
34.24.0 9,026 2/21/2020
34.23.0 126,745 2/17/2020
34.22.0 36,948 2/13/2020
34.21.0 5,474 2/12/2020
34.20.1 10,396 2/12/2020
34.20.0 87,133 2/6/2020
34.19.0 49,518 2/3/2020
34.18.0 55,881 1/31/2020
34.17.0 58,747 1/25/2020
34.16.1 12,396 1/22/2020
34.16.0 43,002 1/17/2020
34.15.0 281,398 1/15/2020
34.14.0 7,181 1/14/2020
34.13.0 60,326 1/10/2020
34.12.0 24,600 1/6/2020
34.11.0 15,638 1/4/2020
34.10.1 9,074 1/3/2020
34.10.0 30,162 12/31/2019
34.9.0 106,768 12/24/2019
34.8.0 33,628 12/21/2019
34.7.0 10,060 12/19/2019
34.6.0 31,229 12/17/2019
34.5.0 59,020 12/13/2019
34.4.0 7,466 12/12/2019
34.3.0 30,926 12/9/2019
34.2.0 4,167 12/9/2019
34.1.0 102,301 12/4/2019
34.0.0 21,468 12/4/2019
33.9.0 47,096 12/2/2019
33.8.0 35,710 11/26/2019
33.7.0 20,812 11/25/2019
33.6.0 19,483 11/22/2019
33.5.0 8,966 11/21/2019
33.4.0 14,350 11/19/2019
33.3.0 75,299 11/8/2019
33.2.0 9,520 11/7/2019
33.1.0 13,783 11/6/2019
33.0.0 27,265 11/6/2019
32.2.0 33,611 11/4/2019
32.1.3 38,794 10/28/2019
32.1.2 8,254 10/25/2019
32.1.1 3,623 10/24/2019
32.1.0 14,824 10/24/2019
32.0.0 22,370 10/19/2019
31.2.0 5,401 10/18/2019
31.1.0 113,051 10/11/2019
31.0.0 5,431 10/10/2019
30.1.0 47,757 10/10/2019
30.0.1 5,661 10/9/2019
30.0.0 39,143 10/9/2019
29.6.0 54,625 10/3/2019
29.5.0 63,544 9/27/2019
29.4.0 21,886 9/26/2019
29.3.0 10,268 9/26/2019
29.2.1 28,685 9/23/2019
29.2.0 39,095 9/19/2019
29.1.0 163,978 9/13/2019
29.0.1 12,566 9/12/2019
29.0.0 93,517 9/10/2019
28.11.0 49,272 9/9/2019
28.10.0 93,275 9/4/2019
28.9.0 21,464 9/3/2019
28.8.0 319,095 8/30/2019
28.7.0 4,883 8/29/2019
28.6.0 176,025 8/27/2019
28.5.0 57,311 8/23/2019
28.4.0 21,549 8/21/2019
28.3.0 17,332 8/20/2019
28.2.0 160,236 8/16/2019
28.1.0 48,257 8/15/2019
28.0.0 58,070 8/14/2019
27.25.1 12,240 8/14/2019
27.24.0 61,361 8/9/2019
27.23.0 10,060 8/8/2019
27.22.0 4,132 8/8/2019
27.21.0 134,814 8/2/2019
27.20.0 30,281 8/1/2019
27.19.0 33,608 7/31/2019
27.18.0 30,605 7/26/2019
27.17.0 13,313 7/25/2019
27.16.1 118,615 7/23/2019
27.16.0 59,118 7/22/2019
27.15.0 99,242 7/19/2019
27.14.0 35,706 7/18/2019
27.13.0 44,764 7/16/2019
27.12.0 5,698 7/15/2019
27.11.0 29,094 7/11/2019
27.10.0 20,615 7/10/2019
27.9.1 37,528 7/10/2019
27.9.0 37,398 7/5/2019
27.8.1 50,486 7/3/2019
27.8.0 8,814 7/2/2019
27.7.0 4,409 7/2/2019
27.6.0 6,210 7/1/2019
27.5.0 11,190 7/1/2019
27.4.0 24,083 6/26/2019
27.3.2 56,211 6/20/2019
27.3.1 24,548 6/18/2019
27.3.0 9,873 6/17/2019
27.2.0 31,579 6/14/2019
27.1.3 10,769 6/12/2019
27.1.2 11,592 6/11/2019
27.1.1 4,114 6/10/2019
27.1.0 4,688 6/10/2019
27.0.0 14,590 6/7/2019
26.1.0 22,075 6/6/2019
26.0.0 128,405 5/24/2019
25.19.1 20,442 5/22/2019
25.19.0 37,922 5/17/2019
25.18.0 18,592 5/14/2019
25.17.0 17,297 5/10/2019
25.16.1 19,246 5/8/2019
25.16.0 12,954 5/6/2019
25.15.0 52,586 5/4/2019
25.14.0 7,047 5/3/2019
25.13.0 25,729 4/30/2019
25.12.0 25,846 4/25/2019
25.11.0 3,941 4/24/2019
25.10.0 38,099 4/23/2019
25.9.0 18,777 4/18/2019
25.8.0 66,645 4/17/2019
25.7.1 4,536 4/16/2019
25.7.0 10,949 4/15/2019
25.6.0 35,882 4/10/2019
25.5.0 3,827 4/9/2019
25.4.0 14,334 4/5/2019
25.3.0 164,254 3/29/2019
25.2.0 28,709 3/25/2019
25.1.0 15,521 3/22/2019
25.0.0 28,528 3/19/2019
24.6.0 14,767 3/19/2019
24.5.0 41,473 3/14/2019
24.4.1 26,798 3/11/2019
24.3.0 40,065 3/7/2019
24.2.0 4,991 3/6/2019
24.1.0 37,964 2/28/2019
24.0.2 171,545 2/20/2019
24.0.1 4,612 2/20/2019
23.2.0 4,318 2/19/2019
23.1.0 6,979 2/18/2019
23.0.0 16,227 2/14/2019
22.9.0 10,820 2/12/2019
22.8.1 42,941 2/4/2019
22.8.0 90,349 1/25/2019
22.7.0 34,605 1/20/2019
22.6.0 7,256 1/18/2019
22.5.0 4,772 1/17/2019
22.4.0 30,730 1/10/2019
22.3.0 40,794 1/9/2019
22.2.0 4,408 1/9/2019
22.1.0 7,215 1/8/2019
22.0.0 11,576 1/7/2019
21.9.0 30,265 1/3/2019
21.8.1 5,303 1/3/2019
21.8.0 43,170 12/27/2018
21.7.1 14,630 12/21/2018
21.7.0 257,093 11/28/2018
21.6.0 13,512 11/27/2018
21.5.0 36,454 11/26/2018
21.4.1 29,469 11/16/2018
21.4.0 9,865 11/14/2018
21.3.0 4,358 11/14/2018
21.2.0 10,765 11/12/2018
21.1.0 11,871 11/9/2018
21.0.0 8,832 11/9/2018
20.4.1 10,570 11/8/2018
20.4.0 21,693 11/5/2018
20.3.0 10,281 10/31/2018
20.2.0 18,778 10/25/2018
20.1.0 20,505 10/23/2018
20.0.0 6,796 10/22/2018
19.10.0 271,450 10/9/2018
19.9.2 40,395 9/28/2018
19.9.1 10,506 9/27/2018
19.9.0 134,449 9/26/2018
19.8.0 17,237 9/24/2018
19.7.0 98,924 9/20/2018
19.6.0 48,409 9/11/2018
19.5.0 22,248 9/6/2018
19.4.0 6,347 9/6/2018
19.3.0 19,262 9/4/2018
19.2.0 27,281 8/29/2018
19.1.0 9,421 8/28/2018
19.0.1 5,677 8/27/2018
18.0.0 28,837 8/23/2018
17.11.0 27,538 8/23/2018
17.10.0 15,533 8/21/2018
17.9.0 15,182 8/16/2018
17.8.0 326,119 8/3/2018
17.7.0 43,724 7/31/2018
17.6.0 33,482 7/27/2018
17.5.0 8,105 7/26/2018
17.4.0 17,787 7/23/2018
17.3.1 85,828 7/16/2018
17.3.0 17,585 7/13/2018
17.2.0 4,690 7/13/2018
17.1.0 6,330 7/12/2018
17.0.0 5,443 7/11/2018
16.16.1 35,361 7/11/2018
16.16.0 17,117 7/6/2018
16.14.0 31,698 6/29/2018
16.13.0 5,533 6/28/2018
16.12.0 45,249 6/20/2018
16.11.0 4,542 6/20/2018
16.10.0 96,067 6/13/2018
16.9.0 17,106 6/12/2018
16.8.0 5,457 6/12/2018
16.7.0 15,999 6/6/2018
16.6.0 4,874 6/6/2018
16.5.0 7,775 6/6/2018
16.4.0 26,702 6/1/2018
16.3.0 49,571 5/23/2018
16.1.0 115,483 5/10/2018
16.0.0 6,046 5/10/2018
15.8.0 13,570 5/8/2018
15.7.0 11,530 5/3/2018
15.6.2 31,147 4/25/2018
15.6.1 81,205 4/19/2018
15.6.0 36,165 4/18/2018
15.5.0 15,302 4/16/2018
15.3.2 199,168 4/9/2018
15.3.1 14,863 4/6/2018
15.3.0 42,484 4/4/2018
15.2.1 58,468 3/27/2018
15.2.0 5,336 3/26/2018
15.1.0 9,111 3/23/2018
15.0.0 27,180 3/21/2018
14.0.0 14,718 3/16/2018
13.5.0 31,132 3/15/2018
13.4.0 9,259 3/13/2018
13.3.1 28,080 3/5/2018
13.3.0 18,276 3/1/2018
13.2.0 9,374 2/27/2018
13.1.0 676,483 2/22/2018
13.0.1 11,446 2/19/2018
13.0.0 32,378 2/13/2018
12.1.0 248,748 1/19/2018
12.0.0 12,286 1/16/2018
11.10.0 70,107 12/26/2017
11.9.0 75,075 11/29/2017
11.8.2 17,392 11/23/2017
11.8.1 14,631 11/23/2017
11.7.1 86,783 10/31/2017
11.7.0 4,697 10/31/2017
11.6.1 22,494 10/24/2017
11.6.0 40,015 10/19/2017
11.5.0 42,158 10/17/2017
11.4.0 7,635 10/13/2017
11.3.0 6,176 10/11/2017
11.2.0 9,391 10/10/2017
11.1.0 4,517 10/10/2017
11.0.0 17,789 10/10/2017
10.4.0 251,642 8/8/2017
10.3.0 59,482 7/14/2017
10.2.0 67,281 6/28/2017
10.1.0 5,585 6/27/2017
10.0.0 57,654 6/6/2017
9.1.0 21,421 6/1/2017
9.0.0 52,643 5/13/2017
8.4.0 22,664 5/5/2017
8.3.0 7,771 5/2/2017
8.2.0 29,652 4/27/2017
8.1.1 15,198 4/19/2017
8.1.0 4,862 4/19/2017
8.0.0 12,167 4/13/2017
7.63.0 3,787 11/17/2020 7.63.0 is deprecated.
7.8.0 50,863 4/6/2017
7.7.0 10,255 4/1/2017
7.6.1 11,795 3/28/2017
7.6.0 23,023 3/17/2017
7.5.0 5,380 3/16/2017
7.4.0 13,776 3/7/2017
7.3.0 32,703 3/3/2017
7.2.0 17,530 2/28/2017
7.1.2 11,408 2/24/2017
7.1.1 6,970 2/23/2017
7.1.0 11,106 2/21/2017
7.0.5 66,501 2/21/2017
7.0.4 46,608 2/11/2017
7.0.3 45,749 1/19/2017
7.0.2 36,403 1/10/2017
7.0.1 21,097 12/25/2016
7.0.0 33,433 12/19/2016
6.13.0 14,976 12/17/2016
6.12.1 5,155 12/16/2016
6.12.0 82,837 11/29/2016
6.11.1 20,097 11/21/2016
6.11.0 11,063 11/8/2016
6.10.0 13,629 10/29/2016
6.9.0 71,846 10/18/2016
6.8.0 31,409 10/4/2016
6.7.0 16,661 9/26/2016
6.6.0 19,097 9/11/2016
6.5.0 29,107 9/1/2016
6.4.0 68,858 8/6/2016
6.3.6 23,143 7/29/2016
6.3.5 18,514 7/6/2016
6.3.4 35,220 6/25/2016
6.3.3 81,201 5/14/2016
6.3.2 41,139 4/25/2016
6.3.1 28,645 4/17/2016
6.3.0 4,767 4/17/2016
6.2.2 13,553 4/12/2016
6.2.1 7,454 4/4/2016
6.2.0 4,786 4/3/2016
6.1.1 4,676 4/1/2016
6.1.0 36,781 3/25/2016
6.0.1 39,200 3/15/2016
6.0.0 14,725 3/10/2016
5.3.0 54,943 2/14/2016
5.2.0 18,950 1/25/2016
5.1.3 12,001 1/8/2016
5.1.2 60,489 12/2/2015
5.1.1 9,087 11/29/2015
5.1.0 7,372 11/28/2015
5.0.1 51,201 11/19/2015
5.0.0 12,941 10/23/2015
4.2.1 18,561 9/13/2015
4.2.0 58,961 7/26/2015
4.1.0 11,347 7/11/2015
4.0.2 9,590 7/3/2015
4.0.1 15,177 7/2/2015
4.0.0 4,830 7/2/2015
3.0.2 11,551 6/17/2015
3.0.1 4,970 6/17/2015
3.0.0 7,326 5/28/2015
2.9.0 90,520 4/12/2015
2.8.0 30,516 3/14/2015
2.7.2 15,832 2/17/2015
2.7.1 5,438 2/17/2015
2.7.0 5,256 2/16/2015
2.6.0 5,667 2/14/2015
2.5.1 11,672 2/7/2015
2.5.0 5,509 1/31/2015
2.4.1 4,921 1/31/2015
2.4.0 5,379 1/25/2015
2.3.5 7,838 1/21/2015
2.3.4 23,981 12/4/2014
2.3.3 26,574 11/3/2014
2.3.2 5,610 10/26/2014
2.3.1 5,025 10/26/2014
2.3.0 12,523 9/4/2014
2.2.6 47,620 7/15/2014
2.2.5 9,554 6/22/2014
2.2.4 5,605 6/17/2014
2.2.3 5,482 6/13/2014
2.2.2 7,904 5/29/2014
2.2.1 5,049 5/28/2014
2.2.0 4,772 5/27/2014
2.1.2 5,523 5/14/2014
2.1.1 5,411 5/13/2014
2.1.0 7,399 4/20/2014
2.0.1 5,768 4/13/2014
2.0.0 5,791 4/5/2014
1.7.7 7,117 3/17/2014
1.7.6 19,849 1/18/2014
1.7.5 5,145 1/12/2014
1.7.4 6,574 12/25/2013
1.7.3 4,738 12/25/2013
1.7.2 4,767 12/24/2013
1.7.1 5,717 12/1/2013
1.7.0 7,499 11/3/2013
1.6.3 6,484 10/19/2013
1.6.2 8,919 8/30/2013
1.6.1 7,949 8/15/2013
1.6.0 4,686 8/10/2013
1.5.7 7,136 7/18/2013
1.5.6 5,408 6/30/2013
1.5.5 19,227 5/27/2013
1.5.4 5,578 5/7/2013
1.5.3 6,314 3/30/2013
1.5.2 4,840 3/26/2013
1.5.1 4,901 3/13/2013
1.5.0 4,905 3/4/2013
1.4.3 4,577 3/4/2013
1.4.2 4,847 3/4/2013
1.4.1 4,898 2/24/2013
1.4.0 4,918 2/12/2013
1.3.1 4,716 2/11/2013
1.3.0 4,681 2/11/2013
1.2.1 4,810 1/24/2013
1.2.0 5,519 12/2/2012
1.1.18 14,242 11/4/2012
1.1.17 5,553 9/7/2012
1.1.16 4,834 9/5/2012
1.1.15 4,631 8/27/2012
1.1.14 5,066 8/4/2012
1.1.13 11,741 6/10/2012
1.1.12 5,080 4/21/2012
1.1.11 5,080 4/8/2012
1.1.10 14,439 3/25/2012
1.1.9 4,709 3/5/2012
1.1.8 4,756 2/26/2012
1.1.7 4,704 2/26/2012
1.1.6 4,918 2/26/2012
0.5.2 23,648 11/28/2015