KubernetesClient 1.2.0
See the version list below for details.
dotnet add package KubernetesClient --version 1.2.0
NuGet\Install-Package KubernetesClient -Version 1.2.0
<PackageReference Include="KubernetesClient" Version="1.2.0" />
<PackageVersion Include="KubernetesClient" Version="1.2.0" />
<PackageReference Include="KubernetesClient" />
paket add KubernetesClient --version 1.2.0
#r "nuget: KubernetesClient, 1.2.0"
#addin nuget:?package=KubernetesClient&version=1.2.0
#tool nuget:?package=KubernetesClient&version=1.2.0
Kubernetes C# Client
Usage
dotnet add package KubernetesClient
Generating the Client Code
Prerequisites
You'll need a Linux machine with Docker.
The generated code works on all platforms supported by .NET or .NET Core.
Check out the generator project into some other directory
(henceforth $GEN_DIR
)
cd $GEN_DIR/..
git clone https://github.com/kubernetes-client/gen
Generating code
# Where REPO_DIR points to the root of the csharp repository
cd ${REPO_DIR}/csharp/src
${GEN_DIR}/openapi/csharp.sh generated ../csharp.settings
Usage
Running the Examples
git clone git@github.com:kubernetes-client/csharp.git
cd csharp\examples\simple
dotnet run
Known issues
While preferred way of connecting to a remote cluster from local machine is:
var config = KubernetesClientConfiguration.BuildConfigFromConfigFile();
var client = new Kubernetes(config);
Not all auth providers are supported at moment #91, but you still can connect to cluster by starting proxy:
$ kubectl proxy
Starting to serve on 127.0.0.1:8001
and changing config:
var config = new KubernetesClientConfiguration { Host = "http://127.0.0.1:8001" };
Notice that this is a workaround and is not recommended for production use
Testing
The project uses XUnit as unit testing framework.
To run the tests
cd csharp\tests
dotnet restore
dotnet test
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. 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. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.4 is compatible. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net461 was computed. 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 | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 2.1
- Fractions (>= 3.0.1)
- Microsoft.AspNetCore.JsonPatch (>= 1.1.2)
- Microsoft.AspNetCore.WebUtilities (>= 1.1.2)
- Microsoft.Rest.ClientRuntime (>= 2.3.10)
- Newtonsoft.Json (>= 10.0.2)
- Portable.BouncyCastle (>= 1.8.1.3)
- System.ValueTuple (>= 4.4.0)
- YamlDotNet.Signed (>= 4.2.3)
-
.NETStandard 1.4
- Fractions (>= 3.0.1)
- Microsoft.AspNetCore.JsonPatch (>= 1.1.2)
- Microsoft.AspNetCore.WebUtilities (>= 1.1.2)
- Microsoft.Rest.ClientRuntime (>= 2.3.10)
- NETStandard.Library (>= 1.6.1)
- Newtonsoft.Json (>= 10.0.2)
- Portable.BouncyCastle (>= 1.8.1.3)
- System.Net.WebSockets.Client (>= 4.3.2)
- System.ValueTuple (>= 4.4.0)
- YamlDotNet.Signed (>= 4.2.3)
NuGet packages (152)
Showing the top 5 NuGet packages that depend on KubernetesClient:
Package | Downloads |
---|---|
AspNetCore.HealthChecks.UI
HealthChecks.UI is a ASP.NET Core UI viewer of ASP.NET Core HealthChecks. For more information see https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks |
|
Microsoft.ApplicationInsights.Kubernetes
Kubernetes support for .NET Core |
|
Microsoft.Orleans.Hosting.Kubernetes
Microsoft Orleans hosting support for Kubernetes |
|
Aspire.Hosting
Core abstractions for the .NET Aspire application model. |
|
Aspire.Hosting.AppHost
Core library and MSBuild logic for .NET Aspire AppHost projects. |
GitHub repositories (31)
Showing the top 20 popular GitHub repositories that depend on KubernetesClient:
Repository | Stars |
---|---|
dotnet/orleans
Cloud Native application framework for .NET
|
|
dotnet/yarp
A toolkit for developing high-performance HTTP reverse proxy applications.
|
|
dotnetcore/CAP
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern
|
|
dotnet/tye
Tye is a tool that makes developing, testing, and deploying microservices and distributed applications easier. Project Tye includes a local orchestrator to make developing microservices easier and the ability to deploy microservices to Kubernetes with minimal configuration.
|
|
dotnet/aspire
Tools, templates, and packages to accelerate building observable, production-ready apps
|
|
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
|
|
testcontainers/testcontainers-dotnet
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
|
|
asynkron/protoactor-dotnet
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
|
|
GZTimeWalker/GZCTF
The GZ::CTF project, an open source CTF platform.
|
|
Soluto/kamus
An open source, git-ops, zero-trust secret encryption and decryption solution for Kubernetes applications
|
|
prom3theu5/aspirational-manifests
Handle deployments of .NET Aspire AppHost Projects
|
|
microsoft/RockPaperScissorsLizardSpock
Rock, Paper, Scissors, Lizard, Spock - Sample Application
|
|
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
|
|
sixeyed/kiamol
Learn Kubernetes in a Month of Lunches
|
|
serverlessworkflow/synapse
Serverless Workflow Management System (WFMS)
|
|
buehler/dotnet-operator-sdk
KubeOps is a kubernetes operator sdk in dotnet. Strongly inspired by kubebuilder.
|
|
sd797994/Oxygen-Dapr.EshopSample
|
|
netcorepal/netcorepal-cloud-framework
一个基于ASP.NET Core实现的整洁领域驱动设计落地战术框架。 A tactical framework for Clean Domain-Driven Design based on ASP.NET Core.
|
|
Raiffeisen-DGTL/ViennaNET
Framework for quickly creating enterprise microservices on .NET https://habr.com/ru/company/raiffeisenbank/blog/494830/
|
|
Azure/Bridge-To-Kubernetes
Bridge To Kubernetes (B2K) is development tool to debug microservices, pods which redirects traffic to your local development machine and vice versa.
|
Version | Downloads | Last updated |
---|---|---|
16.0.7 | 37,454 | 4/29/2025 |
16.0.2 | 684,707 | 1/21/2025 |
16.0.1 | 17,344 | 1/16/2025 |
15.0.1 | 3,664,056 | 9/11/2024 |
14.0.12 | 202,279 | 9/8/2024 |
14.0.9 | 928,394 | 8/12/2024 |
14.0.2 | 3,145,602 | 5/14/2024 |
13.0.37 | 376,041 | 4/25/2024 |
13.0.26 | 814,781 | 3/9/2024 |
13.0.11 | 723,835 | 1/30/2024 |
13.0.1 | 259,459 | 1/9/2024 |
12.1.1 | 6,812,557 | 9/26/2023 |
12.0.16 | 615,686 | 8/31/2023 |
11.0.44 | 2,609,492 | 7/19/2023 |
11.0.36 | 187,904 | 6/30/2023 |
11.0.21 | 318,645 | 5/19/2023 |
11.0.9 | 170,253 | 5/1/2023 |
10.1.19 | 467,140 | 4/4/2023 |
10.1.4 | 311,010 | 3/5/2023 |
10.0.31 | 551,107 | 2/12/2023 |
10.0.27 | 76,303 | 2/2/2023 |
10.0.16 | 5,533,830 | 1/6/2023 |
10.0.1 | 118,931 | 12/16/2022 |
9.1.3 | 475,579 | 12/6/2022 |
9.0.38 | 632,243 | 10/24/2022 |
9.0.37 | 15,968 | 10/21/2022 |
9.0.28 | 223,509 | 9/27/2022 |
9.0.25 | 7,775 | 9/21/2022 |
8.0.68 | 619,185 | 8/22/2022 |
8.0.12 | 932,882 | 6/29/2022 |
8.0.8 | 166,464 | 6/3/2022 |
8.0.6 | 32,487 | 5/24/2022 |
8.0.4 | 215,960 | 5/12/2022 |
7.2.19 | 2,063,445 | 4/22/2022 |
7.2.15 | 165,074 | 4/19/2022 |
7.2.10 | 373,101 | 4/5/2022 |
7.2.8 | 1,024 | 4/4/2022 |
7.2.7 | 1,038 | 4/4/2022 |
7.1.9 | 130,095 | 3/23/2022 |
7.1.3-g341580fb9b | 50,455 | 2/26/2022 |
7.0.15 | 255,622 | 2/23/2022 |
7.0.14 | 17,208 | 2/20/2022 |
7.0.13 | 81,360 | 2/17/2022 |
7.0.12 | 8,619 | 2/15/2022 |
7.0.11 | 36,063 | 2/8/2022 |
7.0.10 | 13,755 | 2/1/2022 |
7.0.9 | 7,915 | 1/31/2022 |
7.0.8 | 238,159 | 1/26/2022 |
7.0.7 | 155,566 | 1/24/2022 |
7.0.6 | 1,531 | 1/23/2022 |
7.0.5 | 510,071 | 1/11/2022 |
7.0.4 | 124,357 | 12/23/2021 |
7.0.3 | 7,717 | 12/19/2021 |
7.0.2 | 736 | 12/19/2021 |
7.0.1 | 76,410 | 12/13/2021 |
6.0.26 | 503,690 | 12/3/2021 |
6.0.25 | 153,579 | 11/16/2021 |
6.0.24 | 22,811 | 11/12/2021 |
6.0.23 | 2,006,581 | 11/3/2021 |
6.0.22 | 2,497 | 11/2/2021 |
6.0.21 | 46,649 | 10/26/2021 |
6.0.20 | 4,428 | 10/24/2021 |
6.0.19 | 402,222 | 10/20/2021 |
6.0.18 | 803 | 10/20/2021 |
6.0.17 | 806 | 10/20/2021 |
6.0.16 | 817 | 10/20/2021 |
6.0.15 | 14,509 | 10/14/2021 |
6.0.14 | 23,213 | 10/14/2021 |
6.0.13 | 24,381 | 10/11/2021 |
6.0.12 | 1,642 | 10/11/2021 |
6.0.11 | 93,479 | 9/29/2021 |
6.0.10 | 3,761 | 9/29/2021 |
6.0.9 | 2,141 | 9/29/2021 |
6.0.8 | 47,303 | 9/25/2021 |
6.0.7 | 21,214 | 9/21/2021 |
6.0.6 | 8,418 | 9/17/2021 |
6.0.5 | 1,209 | 9/17/2021 |
6.0.4 | 921 | 9/17/2021 |
6.0.3 | 9,370 | 9/14/2021 |
6.0.2 | 927 | 9/14/2021 |
6.0.1 | 265,367 | 8/15/2021 |
5.0.20 | 1,590,989 | 8/10/2021 |
5.0.19 | 5,666 | 8/9/2021 |
5.0.18 | 917 | 8/9/2021 |
5.0.17 | 21,260 | 8/4/2021 |
5.0.16 | 966 | 8/4/2021 |
5.0.15 | 1,428,394 | 7/22/2021 |
5.0.13 | 271,899 | 6/27/2021 |
5.0.12 | 67,542 | 6/21/2021 |
5.0.11 | 11,898 | 6/14/2021 |
5.0.10 | 99,096 | 5/26/2021 |
5.0.9 | 5,481 | 5/24/2021 |
5.0.8 | 26,056 | 5/21/2021 |
5.0.7 | 969 | 5/21/2021 |
5.0.6 | 5,987 | 5/19/2021 |
5.0.5 | 55,491 | 5/14/2021 |
5.0.4 | 145,034 | 4/28/2021 |
5.0.3 | 11,122 | 4/24/2021 |
5.0.2 | 16,202 | 4/20/2021 |
5.0.1 | 83,255 | 4/9/2021 |
4.0.26 | 13,294,095 | 4/9/2021 |
4.0.25 | 5,686 | 4/8/2021 |
4.0.24 | 1,054 | 4/8/2021 |
4.0.23 | 41,438 | 4/5/2021 |
4.0.22 | 76,223 | 4/2/2021 |
4.0.21 | 150,334 | 3/24/2021 |
4.0.20 | 43,945 | 3/18/2021 |
4.0.19 | 7,138 | 3/12/2021 |
4.0.16 | 150,810 | 3/2/2021 |
4.0.15 | 6,999 | 2/27/2021 |
4.0.14 | 178,530 | 2/25/2021 |
4.0.13 | 10,631 | 2/19/2021 |
4.0.12 | 17,907 | 2/18/2021 |
4.0.11 | 20,365 | 2/17/2021 |
4.0.10 | 542,350 | 2/1/2021 |
4.0.9 | 29,647 | 1/28/2021 |
4.0.8 | 941 | 1/27/2021 |
4.0.7 | 1,470 | 1/27/2021 |
4.0.5 | 69,507 | 1/19/2021 |
4.0.4 | 203,673 | 1/8/2021 |
4.0.3 | 247,963 | 12/19/2020 |
4.0.2 | 3,577 | 12/17/2020 |
4.0.1 | 23,371 | 12/14/2020 |
3.0.16 | 533,766 | 11/25/2020 |
3.0.15 | 870 | 11/25/2020 |
3.0.14 | 64,307 | 11/23/2020 |
3.0.13 | 1,168 | 11/22/2020 |
3.0.12 | 3,839,546 | 11/19/2020 |
3.0.11 | 2,360 | 11/18/2020 |
3.0.8 | 8,985 | 11/13/2020 |
3.0.7 | 36,868 | 11/1/2020 |
3.0.6 | 937 | 11/1/2020 |
3.0.5 | 28,860 | 10/30/2020 |
3.0.4 | 7,383 | 10/28/2020 |
3.0.3 | 1,430 | 10/28/2020 |
3.0.2 | 1,577 | 10/27/2020 |
3.0.1 | 90,251 | 10/27/2020 |
2.0.34 | 53,074 | 10/23/2020 |
2.0.33 | 125,952 | 9/28/2020 |
2.0.32 | 2,431 | 9/25/2020 |
2.0.31 | 990 | 9/25/2020 |
2.0.30 | 49,226 | 9/19/2020 |
2.0.29 | 3,683,310 | 8/10/2020 |
2.0.28 | 12,231 | 8/8/2020 |
2.0.27 | 35,877 | 8/3/2020 |
2.0.26 | 434,256 | 6/28/2020 |
2.0.25 | 404,887 | 5/29/2020 |
2.0.22 | 23,881 | 5/18/2020 |
2.0.21 | 45,877 | 5/11/2020 |
2.0.20 | 866 | 5/11/2020 |
2.0.19 | 896 | 5/11/2020 |
2.0.18 | 14,232 | 5/4/2020 |
2.0.17 | 9,280 | 4/28/2020 |
2.0.16 | 203,838 | 4/23/2020 |
2.0.15 | 1,512 | 4/22/2020 |
2.0.14 | 916 | 4/22/2020 |
2.0.13 | 864 | 4/22/2020 |
2.0.12 | 1,010 | 4/22/2020 |
2.0.11 | 951 | 4/22/2020 |
2.0.10 | 2,718 | 4/20/2020 |
2.0.9 | 1,170 | 4/20/2020 |
2.0.8 | 906 | 4/20/2020 |
2.0.7 | 896 | 4/20/2020 |
2.0.6 | 12,850 | 4/17/2020 |
2.0.5 | 1,243 | 4/17/2020 |
2.0.3 | 2,897 | 4/16/2020 |
2.0.2 | 273,113 | 4/15/2020 |
2.0.1 | 559,874 | 4/11/2020 |
1.6.35 | 220,424 | 4/9/2020 |
1.6.34 | 874 | 4/9/2020 |
1.6.33 | 25,233 | 4/6/2020 |
1.6.32 | 1,023 | 4/6/2020 |
1.6.31 | 1,150 | 4/6/2020 |
1.6.30 | 27,001 | 4/3/2020 |
1.6.29 | 72,891 | 4/1/2020 |
1.6.28 | 8,403 | 3/25/2020 |
1.6.27 | 25,297 | 3/23/2020 |
1.6.25 | 932 | 3/23/2020 |
1.6.24 | 10,743 | 3/19/2020 |
1.6.23 | 116,360 | 3/17/2020 |
1.6.22 | 932 | 3/17/2020 |
1.6.21 | 6,617 | 3/14/2020 |
1.6.20 | 3,935 | 3/11/2020 |
1.6.20-gc8de0ca263 | 624 | 3/10/2020 |
1.6.19-g7749ae07c8 | 636 | 3/10/2020 |
1.6.18-g0468a66de4 | 1,324 | 3/9/2020 |
1.6.17-g435ab5cd15 | 1,007 | 3/9/2020 |
1.6.16-gb07e78afa4 | 685 | 3/5/2020 |
1.6.15-ge11cc58e56 | 27,796 | 2/14/2020 |
1.6.14-gba9755b626 | 724 | 2/9/2020 |
1.6.13-gfa515869e2 | 823 | 1/23/2020 |
1.6.12 | 96,841 | 1/21/2020 |
1.6.11 | 54,341 | 1/10/2020 |
1.6.10 | 3,289,335 | 1/7/2020 |
1.6.9 | 1,123 | 1/6/2020 |
1.6.8 | 53,394 | 12/21/2019 |
1.6.7 | 2,423 | 12/20/2019 |
1.6.6 | 28,684 | 12/6/2019 |
1.6.5 | 65,996 | 11/22/2019 |
1.6.4 | 23,131 | 11/9/2019 |
1.6.3 | 555,991 | 10/22/2019 |
1.6.2 | 1,081 | 10/22/2019 |
1.6.1 | 72,868 | 10/2/2019 |
1.5.28 | 21,471 | 9/30/2019 |
1.5.27 | 1,010 | 9/30/2019 |
1.5.26 | 31,111 | 9/24/2019 |
1.5.25 | 280,596 | 7/25/2019 |
1.5.19 | 198,023 | 5/12/2019 |
1.5.18 | 65,244 | 4/1/2019 |
1.5.17 | 31,137 | 3/28/2019 |
1.5.16 | 4,875 | 3/26/2019 |
1.5.14 | 1,920 | 3/25/2019 |
1.5.13 | 2,026 | 3/24/2019 |
1.5.12 | 2,028 | 3/23/2019 |
1.5.11 | 1,679 | 3/23/2019 |
1.5.10 | 1,846 | 3/23/2019 |
1.5.9 | 1,918 | 3/22/2019 |
1.5.8 | 1,750 | 3/22/2019 |
1.5.7 | 1,793 | 3/22/2019 |
1.5.6 | 1,736 | 3/21/2019 |
1.5.5 | 2,929 | 3/20/2019 |
1.5.4 | 3,079 | 3/20/2019 |
1.5.3 | 1,567 | 3/20/2019 |
1.5.2 | 1,861 | 3/20/2019 |
1.5.1-g60ffd20a7c | 7,241 | 3/12/2019 |
1.4.14-g5422eb0bcc | 1,666 | 2/27/2019 |
1.4.13-g948d78c1bd | 1,252 | 2/27/2019 |
1.4.12-ge95e01c6e9 | 3,026 | 2/19/2019 |
1.4.11-g406df57f9d | 1,326 | 2/15/2019 |
1.4.9-g9f1669b0cb | 1,921 | 2/12/2019 |
1.4.8-g9bbe42201f | 1,379 | 2/7/2019 |
1.4.7-g4d193e4c1c | 1,312 | 2/6/2019 |
1.4.5-g588807fb44 | 1,382 | 1/29/2019 |
1.4.4-g972699bc71 | 2,040 | 1/24/2019 |
1.4.3-g29b066286f | 1,255 | 1/24/2019 |
1.4.2-g05273b7db7 | 58,556 | 12/24/2018 |
1.4.1-g7e907d7c6f | 1,216 | 3/12/2019 |
1.4.1-g1600e44b00 | 1,368 | 12/12/2018 |
1.3.9-gb7f79c924f | 1,421 | 12/12/2018 |
1.3.8-g6bc54a68c4 | 1,327 | 12/11/2018 |
1.3.7-g7c9cc88d38 | 15,260 | 10/27/2018 |
1.3.6-g355d4a3927 | 1,391 | 10/27/2018 |
1.3.5-g0b1669d5a5 | 1,362 | 10/27/2018 |
1.3.4-gaa1c880301 | 1,384 | 10/27/2018 |
1.3.3-g25523d1985 | 1,449 | 10/26/2018 |
1.3.2-g99dc2f7aaf | 1,424 | 10/26/2018 |
1.3.1-gdf3381607a | 2,434 | 10/3/2018 |
1.2.8-g9372e3291f | 1,909 | 9/27/2018 |
1.2.7-g09a8c8773a | 2,693 | 9/13/2018 |
1.2.6-g3cee7fbd93 | 1,600 | 9/10/2018 |
1.2.5-g397a582ff0 | 1,508 | 8/19/2018 |
1.2.4-g722d4e09d3 | 1,615 | 8/7/2018 |
1.2.3-g3551f03258 | 13,220 | 7/19/2018 |
1.2.2-gac99f43c84 | 2,318 | 7/17/2018 |
1.2.1-gaec5c99162 | 1,672 | 7/14/2018 |
1.2.0 | 264,098 | 7/14/2018 |
1.1.14-gdae6d62cba | 1,705 | 7/9/2018 |
1.1.13-g8c3152af97 | 1,721 | 7/9/2018 |
1.1.12-gd01446718d | 1,702 | 7/9/2018 |
1.1.11-g3f69820739 | 3,322 | 7/2/2018 |
1.1.10-gbb11e5f5ce | 1,553 | 7/2/2018 |
1.1.0-gf488d54ce7 | 1,755 | 6/11/2018 |
1.1.0-gc1543b527e | 1,689 | 6/25/2018 |
1.1.0-gbc1cb6205c | 1,678 | 6/27/2018 |
1.1.0-ga358cb9afd | 1,674 | 6/7/2018 |
1.1.0-g7723604b7e | 1,716 | 6/25/2018 |
1.1.0-g6eb5555145 | 1,663 | 6/13/2018 |
1.1.0-g6e0aec994e | 1,769 | 6/2/2018 |
1.1.0-g49bb82b15d | 1,587 | 7/2/2018 |
1.0.0 | 25,954 | 5/26/2018 |
1.0.0-ge6c1177471 | 1,524 | 5/26/2018 |
1.0.0-g9253eeb2eb | 1,756 | 5/30/2018 |
1.0.0-g86abfc1b7c | 1,687 | 6/1/2018 |
0.8.0-beta-g307c77bf04 | 1,711 | 5/23/2018 |
0.8.0-beta | 1,574 | 5/21/2018 |
0.7.0-beta-g6728505e34 | 1,629 | 5/23/2018 |
0.7.0-beta | 4,924 | 4/20/2018 |
0.6.0-beta | 5,481 | 3/22/2018 |
0.5.0-beta | 1,682 | 3/18/2018 |
0.4.0-beta | 7,881 | 2/2/2018 |
0.3.0-beta | 2,937 | 11/21/2017 |
0.2.0-beta | 1,851 | 10/21/2017 |
0.1.0-beta | 1,907 | 9/13/2017 |