Stripe.net 45.13.0

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

Stripe.net

NuGet Build Status Coverage Status

The official Stripe .NET library, supporting .NET Standard 2.0+, .NET Core 2.0+, 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"];

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;

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");

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

.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

Run all tests from the src/StripeTests directory:

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:

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 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  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 (126)

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
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.4.0-beta.1 18 7/1/2025
48.3.0 277 7/1/2025
48.3.0-beta.2 117 6/26/2025
48.3.0-beta.1 1,180 5/28/2025
48.2.0 93,533 5/28/2025
48.2.0-beta.2 3,368 4/30/2025
48.2.0-beta.1 140 4/30/2025
48.1.0 153,577 4/30/2025
48.1.0-beta.4 2,812 4/17/2025
48.1.0-beta.3 1,263 4/10/2025
48.1.0-beta.2 2,077 4/2/2025
48.0.2 70,838 4/15/2025
48.0.1 6,608 4/14/2025
48.0.0 99,233 4/1/2025
47.5.0-beta.1 2,321 3/18/2025
47.4.0 479,578 2/24/2025
47.4.0-beta.1 16,915 2/7/2025
47.3.0 353,347 1/27/2025
47.3.0-beta.3 7,716 1/23/2025
47.3.0-beta.2 590 1/18/2025
47.3.0-beta.1 4,643 1/9/2025
47.2.0 352,018 12/18/2024
47.2.0-beta.3 1,667 12/12/2024
47.2.0-beta.2 586 12/5/2024
47.2.0-beta.1 17,908 11/21/2024
47.1.0 425,888 11/20/2024
47.1.0-beta.3 2,834 11/15/2024
47.1.0-beta.2 1,139 11/7/2024
47.1.0-beta.1 4,151 10/29/2024
47.0.0 392,005 10/29/2024
46.3.0-beta.1 10,815 10/18/2024
46.2.2 19,717 10/29/2024
46.2.1 164,089 10/18/2024
46.2.0 188,054 10/9/2024
46.2.0-beta.3 1,422 10/8/2024
46.1.0 70,909 10/3/2024
46.0.0 32,603 10/1/2024
45.15.0-beta.1 13,157 9/18/2024
45.14.0 465,846 9/18/2024
45.13.0 70,495 9/13/2024
45.12.0 3,068 9/13/2024
45.12.0-beta.1 1,748 9/5/2024
45.11.0 130,120 9/5/2024
45.10.0 124,456 8/29/2024
45.10.0-beta.1 3,282 8/23/2024
45.9.0 77,850 8/23/2024
45.9.0-beta.2 189 8/22/2024
45.9.0-beta.1 4,483 8/15/2024
45.8.0 112,805 8/15/2024
45.8.0-beta.1 2,371 8/12/2024
45.7.0 86,806 8/9/2024
45.7.0-beta.1 4,220 8/1/2024
45.6.0 104,145 8/1/2024
45.6.0-beta.1 5,209 7/25/2024
45.5.0 102,544 7/25/2024
45.4.0 112,310 7/18/2024
45.3.0 163,718 7/11/2024
45.3.0-beta.1 54,202 7/5/2024
45.2.0 104,961 7/5/2024
45.2.0-beta.1 3,418 6/27/2024
45.1.0 120,069 6/27/2024
45.0.0 133,502 6/24/2024
44.13.0 282,487 6/17/2024
44.13.0-beta.1 3,337 6/13/2024
44.12.0 66,801 6/13/2024
44.12.0-beta.1 414 6/6/2024
44.11.0 114,669 6/6/2024
44.11.0-beta.1 2,113 5/30/2024
44.10.0 257,971 5/30/2024
44.10.0-beta.1 6,570 5/23/2024
44.9.0 114,522 5/23/2024
44.9.0-beta.1 2,325 5/16/2024
44.8.0 93,618 5/16/2024
44.7.0 115,683 5/9/2024
44.7.0-beta.1 191 5/9/2024
44.6.0 6,624 5/9/2024
44.6.0-beta.1 1,815 5/2/2024
44.5.0 99,641 5/2/2024
44.5.0-beta.1 7,175 4/25/2024
44.4.0 124,125 4/25/2024
44.4.0-beta.1 1,153 4/18/2024
44.3.0 176,398 4/18/2024
44.2.0 45,039 4/16/2024
44.2.0-beta.1 753 4/12/2024
44.1.0 160,954 4/11/2024
44.0.0 121,536 4/10/2024
43.23.0 75,954 4/9/2024
43.23.0-beta.1 2,652 4/4/2024
43.22.0 92,170 4/4/2024
43.22.0-beta.1 34,669 3/28/2024
43.21.0 114,002 3/28/2024
43.21.0-beta.1 1,203 3/21/2024
43.20.0 219,170 3/21/2024
43.20.0-beta.1 590 3/14/2024
43.19.0 164,939 3/14/2024
43.19.0-beta.1 9,992 3/8/2024
43.18.0 115,722 3/7/2024
43.18.0-beta.1 824 2/29/2024
43.17.0 83,141 2/29/2024
43.17.0-beta.1 9,567 2/22/2024
43.16.0 88,804 2/22/2024
43.16.0-beta.1 4,863 2/16/2024
43.15.0 130,517 2/16/2024
43.15.0-beta.1 1,220 2/8/2024
43.14.0 126,885 2/8/2024
43.14.0-beta.1 1,394 2/2/2024
43.13.0 208,391 2/1/2024
43.13.0-beta.1 1,375 1/26/2024
43.12.0 131,686 1/25/2024
43.12.0-beta.1 3,546 1/18/2024
43.11.0 126,452 1/18/2024
43.11.0-beta.1 422 1/12/2024
43.10.0 76,405 1/12/2024
43.10.0-beta.1 1,533 1/4/2024
43.9.0 115,523 1/4/2024
43.9.0-beta.1 2,225 12/22/2023
43.8.0 100,540 12/22/2023
43.8.0-beta.1 1,001 12/15/2023
43.7.0 123,215 12/15/2023
43.7.0-beta.1 517 12/8/2023
43.6.0 175,072 12/7/2023
43.6.0-beta.1 605 11/30/2023
43.5.0 82,731 11/30/2023
43.5.0-beta.1 2,732 11/21/2023
43.4.0 266,187 11/21/2023
43.4.0-beta.1 2,845 11/17/2023
43.3.0 105,212 11/17/2023
43.3.0-beta.1 930 11/10/2023
43.2.0 131,290 11/9/2023
43.2.0-beta.1 472 11/2/2023
43.1.0 127,467 11/2/2023
43.1.0-beta.2 1,070 10/26/2023
43.1.0-beta.1 1,395 10/17/2023
43.0.0 325,891 10/16/2023
42.10.0 33,898 10/16/2023
42.10.0-beta.1 1,613 10/11/2023
42.9.0 71,009 10/11/2023
42.9.0-beta.1 2,149 10/5/2023
42.8.0 100,864 10/5/2023
42.8.0-beta.1 1,023 9/29/2023
42.7.0 98,872 9/28/2023
42.7.0-beta.1 8,822 9/22/2023
42.6.0 129,745 9/21/2023
42.6.0-beta.1 4,089 9/15/2023
42.5.0 89,648 9/15/2023
42.5.0-beta.1 2,548 9/7/2023
42.4.0 91,794 9/7/2023
42.4.0-beta.1 1,184 9/1/2023
42.3.0 71,905 8/31/2023
42.2.0 120,103 8/24/2023
42.1.0 67,608 8/17/2023
42.0.0 16,808 8/16/2023
42.0.0-beta.1 203 8/24/2023
41.29.0-beta.1 4,823 8/11/2023
41.28.0 245,345 8/11/2023
41.28.0-beta.1 2,166 8/3/2023
41.27.0 104,937 8/3/2023
41.27.0-beta.1 1,739 7/28/2023
41.26.0 100,792 7/27/2023
41.25.0 119,602 7/20/2023
41.25.0-beta.1 947 7/13/2023
41.24.0 101,183 7/13/2023
41.23.0 119,679 7/6/2023
41.23.0-beta.1 6,530 6/30/2023
41.22.0 93,033 6/29/2023
41.22.0-beta.1 420 6/22/2023
41.21.0 100,194 6/22/2023
41.21.0-beta.2 2,817 6/15/2023
41.21.0-beta.1 475 6/8/2023
41.20.0 196,803 6/8/2023
41.20.0-beta.1 603 6/1/2023
41.19.0 129,402 6/1/2023
41.19.0-beta.1 2,633 5/25/2023
41.18.0 309,058 5/25/2023
41.18.0-beta.1 588 5/19/2023
41.17.0 104,449 5/19/2023
41.17.0-beta.1 1,914 5/11/2023
41.16.0 2,750,406 5/11/2023
41.16.0-beta.1 836 5/5/2023
41.15.0 125,272 5/4/2023
41.15.0-beta.1 757 4/27/2023
41.14.0 155,769 4/27/2023
41.14.0-beta.3 694 4/20/2023
41.14.0-beta.2 1,531 4/13/2023
41.14.0-beta.1 1,346 4/6/2023
41.13.0 417,136 4/6/2023
41.13.0-beta.1 2,656 3/30/2023
41.12.0 140,212 3/30/2023
41.12.0-beta.1 859 3/24/2023
41.11.0 104,665 3/23/2023
41.11.0-beta.1 4,277 3/17/2023
41.10.0 97,325 3/17/2023
41.10.0-beta.1 2,293 3/9/2023
41.9.0 308,737 3/9/2023
41.9.0-beta.1 8,595 3/3/2023
41.8.0 79,761 3/2/2023
41.8.0-beta.2 966 2/24/2023
41.8.0-beta.1 1,907 2/17/2023
41.7.0 211,828 2/16/2023
41.7.0-beta.1 5,858 2/2/2023
41.6.0 277,400 2/2/2023
41.6.0-beta.2 647 1/27/2023
41.6.0-beta.1 1,301 1/19/2023
41.5.0 222,910 1/19/2023
41.5.0-beta.2 459 1/12/2023
41.5.0-beta.1 4,800 1/5/2023
41.4.0 228,782 1/5/2023
41.4.0-beta.1 1,419 12/22/2022
41.3.0 130,182 12/22/2022
41.3.0-beta.2 3,950 12/16/2022
41.3.0-beta.1 4,296 12/8/2022
41.2.0 207,561 12/6/2022
41.1.0 373,886 11/17/2022
41.0.0 37,234 11/16/2022
40.17.0-beta.1 934 11/10/2022
40.16.0 299,266 11/8/2022
40.15.0 254,614 11/3/2022
40.15.0-beta.2 618 11/2/2022
40.15.0-beta.1 4,557 10/22/2022
40.14.0 186,924 10/20/2022
40.14.0-beta.1 1,019 10/14/2022
40.13.0 223,887 10/13/2022
40.13.0-beta.1 2,298 10/7/2022
40.12.0 80,651 10/6/2022
40.12.0-beta.2 308 10/4/2022
40.12.0-beta.1 277 10/4/2022
40.11.0 103,304 9/29/2022
40.11.0-beta.1 983 9/26/2022
40.10.0 109,965 9/22/2022
40.9.0 134,424 9/15/2022
40.8.0 128,450 9/9/2022
40.7.0 83,920 9/6/2022
40.6.0 143,661 8/31/2022
40.5.0 78,546 8/26/2022
40.5.0-beta.1 671 8/26/2022
40.4.0 212,362 8/23/2022
40.4.0-beta.1 786 8/23/2022
40.3.0 158,843 8/19/2022
40.3.0-beta.1 488 8/11/2022
40.2.0 124,049 8/11/2022
40.1.0 67,608 8/9/2022
40.1.0-beta.1 334 8/3/2022
40.0.0 283,647 8/2/2022
39.126.0 551,449 7/26/2022
39.125.0 103,725 7/25/2022
39.125.0-beta.1 399 7/22/2022
39.124.0 158,403 7/18/2022
39.123.0 254,011 7/12/2022
39.123.0-beta.1 1,762 7/7/2022
39.122.0 114,442 7/7/2022
39.121.0 279,805 6/29/2022
39.120.0 99,670 6/23/2022
39.119.0 133,400 6/17/2022
39.119.0-beta.1 452 6/15/2022
39.118.0 140,753 6/9/2022
39.117.0 45,865 6/8/2022
39.116.0 102,874 6/1/2022
39.115.0 97,553 5/26/2022
39.114.0 125,281 5/23/2022
39.113.0 11,632 5/23/2022
39.112.0 36,954 5/20/2022
39.111.0 304,766 5/11/2022
39.110.0 219,484 5/5/2022
39.109.0 8,707 5/5/2022
39.108.0 29,815 5/3/2022
39.107.0 134,368 4/21/2022
39.106.0 341,376 4/20/2022
39.105.0 246,550 4/13/2022
39.104.0 183,808 4/8/2022
39.103.0 198,608 4/1/2022
39.102.0 30,090 3/30/2022
39.101.0 18,027 3/29/2022
39.100.0 67,659 3/25/2022
39.99.0 61,777 3/23/2022
39.98.0 71,377 3/18/2022
39.97.0 198,618 3/11/2022
39.96.0 92,180 3/9/2022
39.95.0 127,337 3/2/2022
39.94.0 7,714 3/2/2022
39.93.0 58,993 2/26/2022
39.92.0 36,513 2/23/2022
39.91.0 483,258 2/16/2022
39.90.0 137,967 2/6/2022
39.89.0 326,095 1/25/2022
39.88.0 94,011 1/20/2022
39.87.0 13,208 1/19/2022
39.86.0 58,807 1/13/2022
39.85.0 32,876 1/12/2022
39.84.0 275,340 12/22/2021
39.83.0 102,009 12/15/2021
39.82.0 65,858 12/9/2021
39.81.0 10,606 12/9/2021
39.80.0 545,171 11/20/2021
39.79.0 20,287 11/17/2021
39.78.1 11,215 11/16/2021
39.78.0 3,512 11/16/2021
39.77.0 45,492 11/11/2021
39.76.0 123,943 11/4/2021
39.75.1 5,756 11/4/2021
39.75.0 143,499 11/1/2021
39.74.0 254,033 10/20/2021
39.73.0 121,556 10/11/2021
39.72.0 7,752 10/11/2021
39.71.0 26,369 10/7/2021
39.70.0 74,069 9/29/2021
39.69.0 66,526 9/24/2021
39.68.0 208,098 9/16/2021
39.67.0 7,038 9/15/2021
39.66.0 128,829 9/2/2021
39.65.0 4,791 9/1/2021
39.64.0 202,019 8/27/2021
39.63.0 242,516 8/11/2021
39.62.0 165,831 7/28/2021
39.61.0 122,555 7/22/2021
39.60.0 19,429 7/21/2021
39.59.0 236,653 7/14/2021
39.58.0 61,759 7/9/2021
39.57.0 96,043 6/30/2021
39.56.1 5,472 6/30/2021
39.56.0 9,128 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 42,743 6/25/2021
39.54.0 69,427 6/16/2021
39.53.0 343,613 6/7/2021
39.52.0 32,155 6/4/2021
39.51.0 62,564 6/4/2021
39.50.0 221,755 5/26/2021
39.49.0 88,025 5/20/2021
39.48.0 170,653 5/7/2021
39.47.0 49,689 5/6/2021
39.46.0 4,115 5/5/2021
39.45.0 140,362 4/16/2021
39.44.0 156,408 4/12/2021
39.43.0 137,666 4/3/2021
39.42.0 152,717 3/31/2021
39.41.0 122,060 3/26/2021
39.40.0 176,944 3/22/2021
39.39.0 218,977 3/1/2021
39.38.0 294,825 2/23/2021
39.37.0 86,158 2/18/2021
39.36.0 14,920 2/17/2021
39.35.0 102,874 2/9/2021
39.34.0 135,963 2/3/2021
39.33.0 237,663 1/21/2021
39.32.0 137,377 1/7/2021
39.31.0 274,862 12/16/2020
39.30.0 67,132 12/11/2020
39.29.0 179,352 12/4/2020
39.28.0 208,461 11/24/2020
39.27.0 53,307 11/20/2020
39.26.0 15,079 11/19/2020
39.25.0 26,439 11/18/2020
39.24.0 9,353 11/18/2020
39.23.0 212,288 11/9/2020
39.22.0 45,245 11/4/2020
39.21.0 76,361 10/29/2020
39.20.0 25,073 10/27/2020
39.19.0 37,736 10/26/2020
39.18.0 15,586 10/23/2020
39.17.0 13,847 10/23/2020
39.16.0 121,301 10/14/2020
39.15.0 20,837 10/13/2020
39.14.0 5,138 10/12/2020
39.13.0 23,166 10/9/2020
39.12.0 25,072 10/9/2020
39.11.0 120,460 10/3/2020
39.10.0 39,621 9/30/2020
39.9.0 17,615 9/30/2020
39.8.0 17,852 9/29/2020
39.7.0 45,680 9/25/2020
39.6.0 27,559 9/23/2020
39.5.0 54,546 9/22/2020
39.4.0 111,316 9/13/2020
39.3.0 93,519 9/8/2020
39.2.0 50,191 9/3/2020
39.1.2 49,516 9/1/2020
37.35.0 445,450 8/27/2020
37.34.0 122,355 8/19/2020
37.33.0 40,902 8/18/2020
37.32.0 8,508 8/17/2020
37.31.0 25,395 8/13/2020
37.30.0 74,353 8/7/2020
37.29.0 34,604 8/6/2020
37.28.0 14,385 8/4/2020
37.27.0 77,369 7/29/2020
37.26.0 135,378 7/25/2020
37.25.0 6,126 7/25/2020
37.24.0 22,165 7/22/2020
37.23.0 9,184 7/21/2020
37.22.0 5,382 7/21/2020
37.21.0 10,605 7/21/2020
37.20.0 14,762 7/18/2020
37.19.0 6,910 7/17/2020
37.18.0 84,563 7/15/2020
37.17.0 41,553 7/13/2020
37.16.0 103,841 7/6/2020
37.15.1 37,173 7/3/2020
37.15.0 32,380 7/1/2020
37.14.0 197,183 6/25/2020
37.13.0 40,414 6/23/2020
37.12.0 35,731 6/22/2020
37.11.0 15,787 6/18/2020
37.10.0 88,574 6/11/2020
37.9.0 10,189 6/11/2020
37.8.0 211,685 6/3/2020
37.7.0 4,362 6/3/2020
37.6.0 56,741 5/29/2020
37.5.0 31,223 5/28/2020
37.4.0 150,759 5/22/2020
37.3.0 82,381 5/21/2020
37.2.0 4,382 5/20/2020
37.1.0 68,743 5/19/2020
37.0.0 68,464 5/18/2020
36.12.2 76,276 5/14/2020
36.12.1 4,108 5/14/2020
36.12.0 4,230 5/13/2020
36.11.0 77,558 5/12/2020
36.10.0 17,693 5/11/2020
36.9.0 27,526 5/8/2020
36.8.1 38,975 5/5/2020
36.8.0 30,225 5/1/2020
36.7.0 17,642 4/29/2020
36.6.0 29,907 4/24/2020
36.5.0 23,153 4/22/2020
36.4.0 4,548 4/22/2020
36.3.0 8,859 4/21/2020
36.2.0 20,941 4/18/2020
36.1.0 17,406 4/17/2020
36.0.0 12,617 4/16/2020
35.17.0 33,147 4/14/2020
35.16.0 20,921 4/13/2020
35.15.0 6,423 4/13/2020
35.14.0 15,787 4/10/2020
35.13.0 5,354 4/9/2020
35.12.1 193,270 4/8/2020
35.12.0 52,642 4/3/2020
35.11.1 222,298 3/31/2020
35.11.0 36,559 3/31/2020
35.10.0 52,921 3/26/2020
35.9.0 41,913 3/25/2020
35.8.0 7,750 3/24/2020
35.7.1 6,269 3/23/2020
35.7.0 36,791 3/20/2020
35.6.0 305,194 3/13/2020
35.5.0 7,163 3/12/2020
35.4.0 5,332 3/12/2020
35.3.0 89,862 3/5/2020
35.2.0 4,531 3/4/2020
35.1.0 7,107 3/4/2020
35.0.0 26,675 3/4/2020
34.26.0 111,826 2/24/2020
34.25.0 21,511 2/21/2020
34.24.0 9,005 2/21/2020
34.23.0 125,604 2/17/2020
34.22.0 36,823 2/13/2020
34.21.0 5,458 2/12/2020
34.20.1 10,378 2/12/2020
34.20.0 85,319 2/6/2020
34.19.0 49,459 2/3/2020
34.18.0 55,845 1/31/2020
34.17.0 58,160 1/25/2020
34.16.1 12,380 1/22/2020
34.16.0 42,765 1/17/2020
34.15.0 281,284 1/15/2020
34.14.0 7,154 1/14/2020
34.13.0 60,053 1/10/2020
34.12.0 24,558 1/6/2020
34.11.0 15,598 1/4/2020
34.10.1 9,060 1/3/2020
34.10.0 30,142 12/31/2019
34.9.0 105,821 12/24/2019
34.8.0 33,611 12/21/2019
34.7.0 10,044 12/19/2019
34.6.0 30,804 12/17/2019
34.5.0 58,911 12/13/2019
34.4.0 7,450 12/12/2019
34.3.0 30,818 12/9/2019
34.2.0 4,147 12/9/2019
34.1.0 102,125 12/4/2019
34.0.0 21,373 12/4/2019
33.9.0 46,909 12/2/2019
33.8.0 35,655 11/26/2019
33.7.0 20,676 11/25/2019
33.6.0 19,412 11/22/2019
33.5.0 8,949 11/21/2019
33.4.0 14,332 11/19/2019
33.3.0 75,006 11/8/2019
33.2.0 9,478 11/7/2019
33.1.0 13,764 11/6/2019
33.0.0 27,137 11/6/2019
32.2.0 33,590 11/4/2019
32.1.3 38,766 10/28/2019
32.1.2 8,239 10/25/2019
32.1.1 3,607 10/24/2019
32.1.0 14,808 10/24/2019
32.0.0 22,330 10/19/2019
31.2.0 5,370 10/18/2019
31.1.0 111,402 10/11/2019
31.0.0 5,410 10/10/2019
30.1.0 47,731 10/10/2019
30.0.1 5,642 10/9/2019
30.0.0 38,389 10/9/2019
29.6.0 54,505 10/3/2019
29.5.0 63,482 9/27/2019
29.4.0 21,867 9/26/2019
29.3.0 10,227 9/26/2019
29.2.1 28,300 9/23/2019
29.2.0 38,933 9/19/2019
29.1.0 163,469 9/13/2019
29.0.1 12,548 9/12/2019
29.0.0 93,126 9/10/2019
28.11.0 49,182 9/9/2019
28.10.0 92,938 9/4/2019
28.9.0 21,442 9/3/2019
28.8.0 311,560 8/30/2019
28.7.0 4,867 8/29/2019
28.6.0 174,865 8/27/2019
28.5.0 57,195 8/23/2019
28.4.0 21,532 8/21/2019
28.3.0 17,298 8/20/2019
28.2.0 160,061 8/16/2019
28.1.0 48,103 8/15/2019
28.0.0 57,897 8/14/2019
27.25.1 11,008 8/14/2019
27.24.0 60,451 8/9/2019
27.23.0 10,016 8/8/2019
27.22.0 4,113 8/8/2019
27.21.0 133,695 8/2/2019
27.20.0 30,118 8/1/2019
27.19.0 33,529 7/31/2019
27.18.0 30,565 7/26/2019
27.17.0 13,280 7/25/2019
27.16.1 117,999 7/23/2019
27.16.0 59,099 7/22/2019
27.15.0 98,131 7/19/2019
27.14.0 35,579 7/18/2019
27.13.0 44,220 7/16/2019
27.12.0 5,680 7/15/2019
27.11.0 29,014 7/11/2019
27.10.0 20,599 7/10/2019
27.9.1 37,368 7/10/2019
27.9.0 37,101 7/5/2019
27.8.1 50,435 7/3/2019
27.8.0 8,796 7/2/2019
27.7.0 4,394 7/2/2019
27.6.0 6,193 7/1/2019
27.5.0 11,173 7/1/2019
27.4.0 23,970 6/26/2019
27.3.2 55,747 6/20/2019
27.3.1 24,337 6/18/2019
27.3.0 9,825 6/17/2019
27.2.0 31,202 6/14/2019
27.1.3 10,752 6/12/2019
27.1.2 11,574 6/11/2019
27.1.1 4,100 6/10/2019
27.1.0 4,669 6/10/2019
27.0.0 14,563 6/7/2019
26.1.0 21,866 6/6/2019
26.0.0 128,118 5/24/2019
25.19.1 20,175 5/22/2019
25.19.0 37,906 5/17/2019
25.18.0 18,571 5/14/2019
25.17.0 17,268 5/10/2019
25.16.1 19,222 5/8/2019
25.16.0 12,934 5/6/2019
25.15.0 52,480 5/4/2019
25.14.0 7,026 5/3/2019
25.13.0 25,679 4/30/2019
25.12.0 25,820 4/25/2019
25.11.0 3,924 4/24/2019
25.10.0 38,034 4/23/2019
25.9.0 18,747 4/18/2019
25.8.0 66,616 4/17/2019
25.7.1 4,521 4/16/2019
25.7.0 10,928 4/15/2019
25.6.0 35,745 4/10/2019
25.5.0 3,810 4/9/2019
25.4.0 14,298 4/5/2019
25.3.0 163,802 3/29/2019
25.2.0 28,651 3/25/2019
25.1.0 15,491 3/22/2019
25.0.0 28,509 3/19/2019
24.6.0 14,750 3/19/2019
24.5.0 41,131 3/14/2019
24.4.1 26,748 3/11/2019
24.3.0 40,030 3/7/2019
24.2.0 4,976 3/6/2019
24.1.0 37,895 2/28/2019
24.0.2 170,356 2/20/2019
24.0.1 4,596 2/20/2019
23.2.0 4,291 2/19/2019
23.1.0 6,964 2/18/2019
23.0.0 16,204 2/14/2019
22.9.0 10,806 2/12/2019
22.8.1 42,856 2/4/2019
22.8.0 89,183 1/25/2019
22.7.0 34,530 1/20/2019
22.6.0 7,227 1/18/2019
22.5.0 4,743 1/17/2019
22.4.0 30,673 1/10/2019
22.3.0 40,700 1/9/2019
22.2.0 4,378 1/9/2019
22.1.0 7,185 1/8/2019
22.0.0 11,542 1/7/2019
21.9.0 30,086 1/3/2019
21.8.1 5,282 1/3/2019
21.8.0 43,070 12/27/2018
21.7.1 14,557 12/21/2018
21.7.0 254,067 11/28/2018
21.6.0 13,479 11/27/2018
21.5.0 35,914 11/26/2018
21.4.1 29,444 11/16/2018
21.4.0 9,826 11/14/2018
21.3.0 4,343 11/14/2018
21.2.0 10,747 11/12/2018
21.1.0 11,852 11/9/2018
21.0.0 8,805 11/9/2018
20.4.1 10,555 11/8/2018
20.4.0 21,602 11/5/2018
20.3.0 10,257 10/31/2018
20.2.0 18,759 10/25/2018
20.1.0 20,460 10/23/2018
20.0.0 6,760 10/22/2018
19.10.0 270,993 10/9/2018
19.9.2 40,347 9/28/2018
19.9.1 10,459 9/27/2018
19.9.0 134,426 9/26/2018
19.8.0 17,158 9/24/2018
19.7.0 98,880 9/20/2018
19.6.0 48,077 9/11/2018
19.5.0 22,114 9/6/2018
19.4.0 6,326 9/6/2018
19.3.0 19,198 9/4/2018
19.2.0 27,240 8/29/2018
19.1.0 9,401 8/28/2018
19.0.1 5,657 8/27/2018
18.0.0 28,440 8/23/2018
17.11.0 27,513 8/23/2018
17.10.0 15,514 8/21/2018
17.9.0 15,159 8/16/2018
17.8.0 322,498 8/3/2018
17.7.0 43,679 7/31/2018
17.6.0 32,826 7/27/2018
17.5.0 8,074 7/26/2018
17.4.0 17,724 7/23/2018
17.3.1 85,530 7/16/2018
17.3.0 17,316 7/13/2018
17.2.0 4,650 7/13/2018
17.1.0 6,285 7/12/2018
17.0.0 5,406 7/11/2018
16.16.1 35,254 7/11/2018
16.16.0 17,074 7/6/2018
16.14.0 31,581 6/29/2018
16.13.0 5,493 6/28/2018
16.12.0 45,169 6/20/2018
16.11.0 4,504 6/20/2018
16.10.0 94,619 6/13/2018
16.9.0 17,066 6/12/2018
16.8.0 5,416 6/12/2018
16.7.0 15,972 6/6/2018
16.6.0 4,830 6/6/2018
16.5.0 7,734 6/6/2018
16.4.0 26,616 6/1/2018
16.3.0 49,379 5/23/2018
16.1.0 114,673 5/10/2018
16.0.0 5,976 5/10/2018
15.8.0 13,484 5/8/2018
15.7.0 11,485 5/3/2018
15.6.2 31,038 4/25/2018
15.6.1 81,121 4/19/2018
15.6.0 36,120 4/18/2018
15.5.0 15,197 4/16/2018
15.3.2 196,702 4/9/2018
15.3.1 14,817 4/6/2018
15.3.0 42,423 4/4/2018
15.2.1 58,260 3/27/2018
15.2.0 5,291 3/26/2018
15.1.0 9,052 3/23/2018
15.0.0 27,130 3/21/2018
14.0.0 14,671 3/16/2018
13.5.0 30,708 3/15/2018
13.4.0 9,213 3/13/2018
13.3.1 27,881 3/5/2018
13.3.0 18,219 3/1/2018
13.2.0 9,316 2/27/2018
13.1.0 646,524 2/22/2018
13.0.1 11,417 2/19/2018
13.0.0 32,322 2/13/2018
12.1.0 246,765 1/19/2018
12.0.0 12,232 1/16/2018
11.10.0 69,643 12/26/2017
11.9.0 74,534 11/29/2017
11.8.2 17,321 11/23/2017
11.8.1 14,601 11/23/2017
11.7.1 86,378 10/31/2017
11.7.0 4,669 10/31/2017
11.6.1 22,459 10/24/2017
11.6.0 39,357 10/19/2017
11.5.0 42,100 10/17/2017
11.4.0 7,600 10/13/2017
11.3.0 6,144 10/11/2017
11.2.0 9,363 10/10/2017
11.1.0 4,490 10/10/2017
11.0.0 17,632 10/10/2017
10.4.0 250,867 8/8/2017
10.3.0 59,355 7/14/2017
10.2.0 67,140 6/28/2017
10.1.0 5,553 6/27/2017
10.0.0 57,365 6/6/2017
9.1.0 21,382 6/1/2017
9.0.0 52,560 5/13/2017
8.4.0 21,978 5/5/2017
8.3.0 7,738 5/2/2017
8.2.0 29,595 4/27/2017
8.1.1 15,128 4/19/2017
8.1.0 4,827 4/19/2017
8.0.0 12,118 4/13/2017
7.63.0 3,759 11/17/2020 7.63.0 is deprecated.
7.8.0 50,167 4/6/2017
7.7.0 10,223 4/1/2017
7.6.1 11,765 3/28/2017
7.6.0 22,985 3/17/2017
7.5.0 5,349 3/16/2017
7.4.0 13,740 3/7/2017
7.3.0 32,433 3/3/2017
7.2.0 17,369 2/28/2017
7.1.2 11,375 2/24/2017
7.1.1 6,939 2/23/2017
7.1.0 11,074 2/21/2017
7.0.5 66,473 2/21/2017
7.0.4 46,465 2/11/2017
7.0.3 45,540 1/19/2017
7.0.2 36,307 1/10/2017
7.0.1 21,048 12/25/2016
7.0.0 33,218 12/19/2016
6.13.0 14,944 12/17/2016
6.12.1 5,128 12/16/2016
6.12.0 82,695 11/29/2016
6.11.1 19,920 11/21/2016
6.11.0 11,013 11/8/2016
6.10.0 13,597 10/29/2016
6.9.0 71,732 10/18/2016
6.8.0 31,319 10/4/2016
6.7.0 16,627 9/26/2016
6.6.0 18,991 9/11/2016
6.5.0 29,063 9/1/2016
6.4.0 68,361 8/6/2016
6.3.6 23,114 7/29/2016
6.3.5 18,457 7/6/2016
6.3.4 35,183 6/25/2016
6.3.3 80,888 5/14/2016
6.3.2 41,095 4/25/2016
6.3.1 28,599 4/17/2016
6.3.0 4,736 4/17/2016
6.2.2 13,522 4/12/2016
6.2.1 7,424 4/4/2016
6.2.0 4,757 4/3/2016
6.1.1 4,644 4/1/2016
6.1.0 36,736 3/25/2016
6.0.1 38,671 3/15/2016
6.0.0 14,684 3/10/2016
5.3.0 54,369 2/14/2016
5.2.0 18,891 1/25/2016
5.1.3 11,940 1/8/2016
5.1.2 60,173 12/2/2015
5.1.1 9,032 11/29/2015
5.1.0 7,307 11/28/2015
5.0.1 49,870 11/19/2015
5.0.0 12,873 10/23/2015
4.2.1 18,467 9/13/2015
4.2.0 57,936 7/26/2015
4.1.0 11,305 7/11/2015
4.0.2 9,548 7/3/2015
4.0.1 15,057 7/2/2015
4.0.0 4,785 7/2/2015
3.0.2 11,507 6/17/2015
3.0.1 4,926 6/17/2015
3.0.0 7,278 5/28/2015
2.9.0 90,471 4/12/2015
2.8.0 30,458 3/14/2015
2.7.2 15,789 2/17/2015
2.7.1 5,395 2/17/2015
2.7.0 5,216 2/16/2015
2.6.0 5,611 2/14/2015
2.5.1 11,626 2/7/2015
2.5.0 5,467 1/31/2015
2.4.1 4,876 1/31/2015
2.4.0 5,334 1/25/2015
2.3.5 7,796 1/21/2015
2.3.4 23,898 12/4/2014
2.3.3 26,516 11/3/2014
2.3.2 5,564 10/26/2014
2.3.1 4,977 10/26/2014
2.3.0 12,476 9/4/2014
2.2.6 47,039 7/15/2014
2.2.5 9,506 6/22/2014
2.2.4 5,560 6/17/2014
2.2.3 5,439 6/13/2014
2.2.2 7,860 5/29/2014
2.2.1 5,004 5/28/2014
2.2.0 4,727 5/27/2014
2.1.2 5,476 5/14/2014
2.1.1 5,371 5/13/2014
2.1.0 7,354 4/20/2014
2.0.1 5,722 4/13/2014
2.0.0 5,747 4/5/2014
1.7.7 7,071 3/17/2014
1.7.6 19,802 1/18/2014
1.7.5 5,099 1/12/2014
1.7.4 6,528 12/25/2013
1.7.3 4,691 12/25/2013
1.7.2 4,716 12/24/2013
1.7.1 5,668 12/1/2013
1.7.0 7,452 11/3/2013
1.6.3 6,437 10/19/2013
1.6.2 8,886 8/30/2013
1.6.1 7,913 8/15/2013
1.6.0 4,645 8/10/2013
1.5.7 7,098 7/18/2013
1.5.6 5,371 6/30/2013
1.5.5 19,189 5/27/2013
1.5.4 5,541 5/7/2013
1.5.3 6,263 3/30/2013
1.5.2 4,800 3/26/2013
1.5.1 4,867 3/13/2013
1.5.0 4,870 3/4/2013
1.4.3 4,542 3/4/2013
1.4.2 4,811 3/4/2013
1.4.1 4,859 2/24/2013
1.4.0 4,882 2/12/2013
1.3.1 4,677 2/11/2013
1.3.0 4,647 2/11/2013
1.2.1 4,772 1/24/2013
1.2.0 5,483 12/2/2012
1.1.18 14,200 11/4/2012
1.1.17 5,519 9/7/2012
1.1.16 4,792 9/5/2012
1.1.15 4,595 8/27/2012
1.1.14 5,021 8/4/2012
1.1.13 11,584 6/10/2012
1.1.12 5,043 4/21/2012
1.1.11 5,043 4/8/2012
1.1.10 14,299 3/25/2012
1.1.9 4,672 3/5/2012
1.1.8 4,723 2/26/2012
1.1.7 4,671 2/26/2012
1.1.6 4,881 2/26/2012
0.5.2 23,349 11/28/2015