NetCord 1.0.0-alpha.375

Prefix Reserved
This is a prerelease version of NetCord.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package NetCord --version 1.0.0-alpha.375
                    
NuGet\Install-Package NetCord -Version 1.0.0-alpha.375
                    
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="NetCord" Version="1.0.0-alpha.375" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NetCord" Version="1.0.0-alpha.375" />
                    
Directory.Packages.props
<PackageReference Include="NetCord" />
                    
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 NetCord --version 1.0.0-alpha.375
                    
#r "nuget: NetCord, 1.0.0-alpha.375"
                    
#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=NetCord&version=1.0.0-alpha.375&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=NetCord&version=1.0.0-alpha.375&prerelease
                    
Install as a Cake Tool

NetCord

The modern and fully customizable C# Discord library

Table of Contents

  1. 📦 Installation
  2. 🚀 Showcase
  3. 🎨 Features
  4. 🥅 Goals
  5. 📚 Guides
  6. 📄 Documentation
  7. 🩹 Support
  8. 📜 License
  9. 🛠️ Development

1. 📦 Installation

You can install NetCord packages via NuGet package manager:

Package Description
NetCord Core package with fundamental functionality.
NetCord.Services Facilitates seamless handling of commands and interactions.
NetCord.Hosting Provides .NET Generic Host extensions for the NetCord package.
NetCord.Hosting.Services Provides .NET Generic Host extensions for the NetCord.Services package.
NetCord.Hosting.AspNetCore Provides ASP.NET Core extensions for seamless handling of HTTP interactions.

2. 🚀 Showcase

This snippet showcases a bot with a minimal API-style /square command and includes a module-based /greet command.

Minimal API-style Bot Example

The following example sets up a bot with a minimal API-style approach for the /square command, which calculates the square of a number:

var builder = Host.CreateDefaultBuilder(args)
    .UseDiscordGateway()
    .UseApplicationCommands();

var host = builder.Build()
    .AddSlashCommand("square", "Square!", (int a) => $"{a}² = {a * a}")
    .UseGatewayEventHandlers();

await host.RunAsync();

Of course, you can also use the bare-bones approach.

Module-based Command Example

Moreover, you can use a module-based approach. Here's an example of a /greet command that greets a specified user:

public class GreetingModule : ApplicationCommandModule<ApplicationCommandContext>
{
    [SlashCommand("greet", "Greet someone!")]
    public string Greet(User user) => $"{Context.User} greets {user}!";
}

3. 🎨 Features

  • Fully Customizable - Easily tailor your Discord bot with NetCord's flexible, extensible API.
  • Easy to Use - Designed to be intuitive and easy to use for C# and .NET developers.
  • Lightweight & High Performance - Optimized for efficient resource use, ideal for scalable bots.
  • Fully Asynchronous - Built for responsive, concurrent operations in your bot.
  • Native AOT Support - Enjoy faster startups and reduced memory usage with AOT compilation.
  • Immutable Caching - Default immutable caching keeps data reliable and consistent.
  • Voice Support - Includes high-quality capabilities for sending and receiving voice.
  • HTTP Interactions - Easily handle interactions over HTTP without a persistent connection.
  • Dependency-Free - Lightweight by design, with no external dependencies required.
  • Stateless REST - Efficiently manage API requests with a stateless design.
  • Complete API Coverage - Comprehensive support for the Discord API and advanced features.
  • Open Source - Free to use and contribute to, licensed under MIT.

4. 🥅 Goals

NetCord's goal is to allow .NET developers to create fully customizable Discord bots without fighting the API wrapper itself. NetCord is designed to be easy to use and fully customizable, while still being lightweight and performant.

5. 📚 Guides

6. 📄 API Documentation

7. 🩹 Support

8. 📜 License

This repository is released under the MIT License.

9. 🛠️ Development

Versioning

NetCord follows a MAJOR.MINOR.PATCH versioning scheme:

  • MAJOR versions can introduce significant, breaking API changes.
  • MINOR versions can add new features and may include limited breaking changes that are unlikely to affect most users.
  • PATCH versions contain backwards-compatible bug fixes and improvements.

Our goal is to maintain stability while allowing for necessary evolution of the API.

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on NetCord:

Package Downloads
NetCord.Services

The modern and fully customizable C# Discord library.

NetCord.Hosting

The modern and fully customizable C# Discord library.

Lavalink4NET.NetCord

High performance Lavalink wrapper for .NET | Add powerful audio playback to your NetCord-based applications with this integration for Lavalink4NET. Suitable for end users developing with NetCord.

NetCordAddons.Services

Unofficial netcord addons for better adding services using hosting.

NetCordAddons.EventHandler

Unofficial netcord addons for better handling events using hosting.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on NetCord:

Repository Stars
angelobreuer/Lavalink4NET
Lavalink4NET is a Lavalink wrapper with node clustering, caching and custom players for .NET with support for Discord.Net, DSharpPlus, Remora, and NetCord.
Version Downloads Last Updated
1.0.0-alpha.391 0 6/26/2025
1.0.0-alpha.390 35 6/23/2025
1.0.0-alpha.389 87 6/21/2025
1.0.0-alpha.388 2,203 6/17/2025
1.0.0-alpha.387 110 6/17/2025
1.0.0-alpha.386 223 6/14/2025
1.0.0-alpha.385 222 6/13/2025
1.0.0-alpha.384 650 6/8/2025
1.0.0-alpha.383 168 6/7/2025
1.0.0-alpha.382 242 6/5/2025
1.0.0-alpha.381 168 6/5/2025
1.0.0-alpha.380 738 5/28/2025
1.0.0-alpha.379 241 5/26/2025
1.0.0-alpha.378 190 5/25/2025
1.0.0-alpha.377 123 5/24/2025
1.0.0-alpha.376 270 5/24/2025
1.0.0-alpha.375 218 5/23/2025
1.0.0-alpha.374 140 5/23/2025
1.0.0-alpha.373 162 5/23/2025
1.0.0-alpha.372 134 5/23/2025
1.0.0-alpha.371 184 5/22/2025
1.0.0-alpha.370 193 5/22/2025
1.0.0-alpha.369 208 5/21/2025
1.0.0-alpha.368 175 5/21/2025
1.0.0-alpha.367 612 5/14/2025
1.0.0-alpha.366 277 5/14/2025
1.0.0-alpha.365 1,870 4/27/2025
1.0.0-alpha.364 255 4/25/2025
1.0.0-alpha.363 790 4/20/2025
1.0.0-alpha.362 965 4/19/2025
1.0.0-alpha.361 208 4/19/2025
1.0.0-alpha.360 621 4/18/2025
1.0.0-alpha.359 907 4/10/2025
1.0.0-alpha.358 313 4/10/2025
1.0.0-alpha.357 393 4/8/2025
1.0.0-alpha.356 519 4/5/2025
1.0.0-alpha.355 1,306 3/25/2025
1.0.0-alpha.354 597 3/25/2025
1.0.0-alpha.353 597 3/25/2025
1.0.0-alpha.352 615 3/20/2025
1.0.0-alpha.351 343 3/20/2025
1.0.0-alpha.350 350 3/19/2025
1.0.0-alpha.349 2,410 2/19/2025
1.0.0-alpha.348 250 2/19/2025
1.0.0-alpha.347 772 2/12/2025
1.0.0-alpha.346 279 2/11/2025
1.0.0-alpha.345 841 2/6/2025
1.0.0-alpha.344 186 2/6/2025
1.0.0-alpha.343 339 2/3/2025
1.0.0-alpha.342 691 1/26/2025
1.0.0-alpha.341 670 1/24/2025
1.0.0-alpha.340 161 1/22/2025
1.0.0-alpha.339 1,190 12/28/2024
1.0.0-alpha.338 541 12/20/2024
1.0.0-alpha.337 112 12/20/2024
1.0.0-alpha.336 158 12/18/2024
1.0.0-alpha.335 65 12/18/2024
1.0.0-alpha.334 238 12/6/2024
1.0.0-alpha.333 529 11/28/2024
1.0.0-alpha.332 92 11/27/2024
1.0.0-alpha.331 102 11/25/2024
1.0.0-alpha.330 164 11/18/2024
1.0.0-alpha.329 62 11/18/2024
1.0.0-alpha.328 59 11/18/2024
1.0.0-alpha.327 380 11/15/2024
1.0.0-alpha.326 273 10/13/2024
1.0.0-alpha.325 106 10/7/2024
1.0.0-alpha.324 99 10/1/2024
1.0.0-alpha.323 76 9/24/2024
1.0.0-alpha.322 62 9/23/2024
1.0.0-alpha.321 75 9/19/2024
1.0.0-alpha.320 93 9/14/2024
1.0.0-alpha.319 75 9/14/2024
1.0.0-alpha.318 77 9/13/2024
1.0.0-alpha.317 64 9/8/2024
1.0.0-alpha.316 86 9/4/2024
1.0.0-alpha.315 75 9/1/2024
1.0.0-alpha.314 71 8/31/2024
1.0.0-alpha.313 90 8/31/2024
1.0.0-alpha.312 74 8/30/2024
1.0.0-alpha.311 216 8/19/2024
1.0.0-alpha.310 131 8/9/2024
1.0.0-alpha.309 88 8/9/2024
1.0.0-alpha.308 78 8/8/2024
1.0.0-alpha.307 73 8/6/2024
1.0.0-alpha.306 94 7/26/2024
1.0.0-alpha.305 71 7/25/2024
1.0.0-alpha.304 61 7/25/2024
1.0.0-alpha.303 174 7/21/2024
1.0.0-alpha.302 74 7/10/2024
1.0.0-alpha.301 63 7/10/2024
1.0.0-alpha.300 62 7/9/2024
1.0.0-alpha.299 115 6/22/2024
1.0.0-alpha.298 124 6/2/2024
1.0.0-alpha.297 90 5/26/2024
1.0.0-alpha.296 73 5/26/2024
1.0.0-alpha.295 225 5/17/2024
1.0.0-alpha.294 78 5/17/2024
1.0.0-alpha.293 96 5/11/2024
1.0.0-alpha.292 141 5/5/2024
1.0.0-alpha.291 83 4/30/2024
1.0.0-alpha.290 73 4/28/2024
1.0.0-alpha.289 79 4/27/2024
1.0.0-alpha.288 81 4/27/2024
1.0.0-alpha.287 90 4/25/2024
1.0.0-alpha.286 80 4/25/2024
1.0.0-alpha.285 64 4/25/2024
1.0.0-alpha.284 82 4/25/2024
1.0.0-alpha.283 94 4/20/2024
1.0.0-alpha.282 75 4/19/2024
1.0.0-alpha.281 74 4/19/2024
1.0.0-alpha.280 157 4/6/2024
1.0.0-alpha.279 99 3/30/2024
1.0.0-alpha.278 94 3/24/2024
1.0.0-alpha.277 89 3/19/2024
1.0.0-alpha.276 116 3/15/2024
1.0.0-alpha.275 84 3/14/2024
1.0.0-alpha.274 69 3/14/2024
1.0.0-alpha.273 67 3/14/2024
1.0.0-alpha.272 92 3/9/2024
1.0.0-alpha.271 93 3/7/2024
1.0.0-alpha.270 1,077 2/29/2024
1.0.0-alpha.269 70 2/29/2024
1.0.0-alpha.268 78 2/27/2024
1.0.0-alpha.267 101 2/22/2024
1.0.0-alpha.266 91 2/21/2024
1.0.0-alpha.265 102 2/17/2024
1.0.0-alpha.264 78 2/17/2024
1.0.0-alpha.263 79 2/16/2024
1.0.0-alpha.262 91 2/15/2024
1.0.0-alpha.261 86 2/13/2024
1.0.0-alpha.260 112 2/10/2024
1.0.0-alpha.259 88 2/10/2024
1.0.0-alpha.258 85 2/6/2024
1.0.0-alpha.257 72 2/6/2024
1.0.0-alpha.256 73 2/6/2024
1.0.0-alpha.255 82 2/4/2024
1.0.0-alpha.254 69 2/4/2024
1.0.0-alpha.253 80 2/3/2024
1.0.0-alpha.252 76 2/1/2024
1.0.0-alpha.251 87 1/27/2024
1.0.0-alpha.250 74 1/27/2024
1.0.0-alpha.249 74 1/23/2024
1.0.0-alpha.248 75 1/17/2024
1.0.0-alpha.247 87 1/16/2024
1.0.0-alpha.246 78 1/15/2024
1.0.0-alpha.245 86 1/15/2024
1.0.0-alpha.244 83 1/13/2024
1.0.0-alpha.243 139 12/29/2023
1.0.0-alpha.242 109 12/24/2023
1.0.0-alpha.241 93 12/23/2023
1.0.0-alpha.240 96 12/23/2023
1.0.0-alpha.239 99 12/23/2023
1.0.0-alpha.238 92 12/19/2023
1.0.0-alpha.237 91 12/18/2023
1.0.0-alpha.236 101 12/18/2023
1.0.0-alpha.235 101 12/17/2023
1.0.0-alpha.234 101 12/17/2023
1.0.0-alpha.233 115 12/9/2023
1.0.0-alpha.232 98 12/6/2023
1.0.0-alpha.231 159 11/12/2023
1.0.0-alpha.230 90 11/11/2023
1.0.0-alpha.229 86 11/9/2023
1.0.0-alpha.228 148 10/30/2023
1.0.0-alpha.227 103 10/28/2023
1.0.0-alpha.226 97 10/27/2023
1.0.0-alpha.225 157 10/15/2023
1.0.0-alpha.224 94 10/14/2023
1.0.0-alpha.223 106 10/13/2023
1.0.0-alpha.222 113 10/10/2023
1.0.0-alpha.221 90 10/9/2023
1.0.0-alpha.220 91 10/9/2023
1.0.0-alpha.219 113 10/7/2023
1.0.0-alpha.218 87 10/5/2023
1.0.0-alpha.217 106 9/15/2023
1.0.0-alpha.216 102 9/9/2023
1.0.0-alpha.215 135 8/29/2023
1.0.0-alpha.214 124 8/24/2023
1.0.0-alpha.213 106 8/17/2023
1.0.0-alpha.212 104 8/16/2023
1.0.0-alpha.211 100 8/16/2023
1.0.0-alpha.210 106 8/10/2023
1.0.0-alpha.209 103 8/9/2023
1.0.0-alpha.208 107 8/7/2023
1.0.0-alpha.207 130 7/31/2023
1.0.0-alpha.206 121 7/28/2023
1.0.0-alpha.205 139 7/26/2023
1.0.0-alpha.204 140 7/25/2023
1.0.0-alpha.203 124 7/24/2023
1.0.0-alpha.202 123 7/24/2023
1.0.0-alpha.201 111 7/21/2023
1.0.0-alpha.200 118 6/17/2023
1.0.0-alpha.199 129 6/16/2023
1.0.0-alpha.198 113 6/14/2023
1.0.0-alpha.197 107 6/12/2023
1.0.0-alpha.196 112 6/12/2023
1.0.0-alpha.195 114 6/10/2023
1.0.0-alpha.194 107 6/9/2023
1.0.0-alpha.193 104 6/9/2023
1.0.0-alpha.192 112 5/30/2023
1.0.0-alpha.191 122 5/29/2023
1.0.0-alpha.190 111 5/27/2023
1.0.0-alpha.189 118 5/18/2023
1.0.0-alpha.188 116 5/17/2023
1.0.0-alpha.187 139 5/11/2023
1.0.0-alpha.186 122 5/7/2023
1.0.0-alpha.185 122 5/6/2023
1.0.0-alpha.184 129 5/5/2023
1.0.0-alpha.183 133 5/4/2023
1.0.0-alpha.182 122 4/26/2023
1.0.0-alpha.181 126 4/22/2023
1.0.0-alpha.180 125 4/22/2023
1.0.0-alpha.179 116 4/21/2023
1.0.0-alpha.178 114 4/21/2023
1.0.0-alpha.177 116 4/21/2023
1.0.0-alpha.176 123 4/21/2023
1.0.0-alpha.175 121 4/21/2023
1.0.0-alpha.174 121 4/20/2023
1.0.0-alpha.173 133 4/18/2023
1.0.0-alpha.172 114 4/16/2023
1.0.0-alpha.171 117 4/13/2023
1.0.0-alpha.170 150 4/5/2023
1.0.0-alpha.169 132 4/4/2023
1.0.0-alpha.168 141 4/3/2023
1.0.0-alpha.167 163 3/29/2023
1.0.0-alpha.166 140 3/27/2023
1.0.0-alpha.165 147 3/22/2023
1.0.0-alpha.164 180 3/19/2023
1.0.0-alpha.163 345 3/7/2023
1.0.0-alpha.162 203 3/2/2023
1.0.0-alpha.161 133 2/27/2023
1.0.0-alpha.160 127 2/26/2023
1.0.0-alpha.159 128 2/25/2023
1.0.0-alpha.158 132 2/22/2023
1.0.0-alpha.157 125 2/20/2023
1.0.0-alpha.156 134 2/16/2023
1.0.0-alpha.155 125 2/15/2023
1.0.0-alpha.154 121 2/15/2023
1.0.0-alpha.153 125 2/15/2023
1.0.0-alpha.152 118 2/14/2023
1.0.0-alpha.151 122 2/12/2023
1.0.0-alpha.150 135 2/12/2023
1.0.0-alpha.149 128 2/9/2023
1.0.0-alpha.148 133 2/6/2023
1.0.0-alpha.147 138 1/19/2023
1.0.0-alpha.146 143 1/19/2023
1.0.0-alpha.145 144 1/16/2023
1.0.0-alpha.144 137 1/13/2023
1.0.0-alpha.143 147 1/10/2023
1.0.0-alpha.142 141 1/10/2023
1.0.0-alpha.141 142 1/10/2023
1.0.0-alpha.140 158 1/9/2023
1.0.0-alpha.139 147 1/6/2023
1.0.0-alpha.138 140 12/31/2022
1.0.0-alpha.137 139 12/28/2022
1.0.0-alpha.136 140 12/28/2022
1.0.0-alpha.135 139 12/27/2022
1.0.0-alpha.134 130 12/26/2022
1.0.0-alpha.133 132 12/26/2022
1.0.0-alpha.132 128 12/25/2022
1.0.0-alpha.131 124 12/25/2022
1.0.0-alpha.130 137 12/23/2022
1.0.0-alpha.129 133 12/22/2022
1.0.0-alpha.128 143 12/22/2022
1.0.0-alpha.127 138 12/16/2022
1.0.0-alpha.126 123 12/11/2022
1.0.0-alpha.125 138 12/10/2022
1.0.0-alpha.124 135 12/3/2022
1.0.0-alpha.123 146 12/1/2022
1.0.0-alpha.122 116 11/27/2022
1.0.0-alpha.121 125 11/24/2022
1.0.0-alpha.120 133 11/21/2022
1.0.0-alpha.118 139 11/10/2022
1.0.0-alpha.117 123 11/8/2022
1.0.0-alpha.116 147 11/6/2022
1.0.0-alpha.115 179 11/3/2022
1.0.0-alpha.114 137 10/31/2022
1.0.0-alpha.113 137 10/31/2022
1.0.0-alpha.112 147 10/27/2022
1.0.0-alpha.111 153 10/26/2022
1.0.0-alpha.110 141 10/24/2022
1.0.0-alpha.109 128 10/23/2022
1.0.0-alpha.108 136 10/23/2022
1.0.0-alpha.107 161 10/23/2022
1.0.0-alpha.106 159 10/22/2022
1.0.0-alpha.105 163 10/19/2022
1.0.0-alpha.104 140 10/13/2022
1.0.0-alpha.103 167 10/9/2022
1.0.0-alpha.102 138 10/9/2022
1.0.0-alpha.101 144 10/9/2022
1.0.0-alpha.100 130 10/9/2022
1.0.0-alpha.99 132 10/9/2022
1.0.0-alpha.98 130 10/9/2022
1.0.0-alpha.97 142 10/8/2022
1.0.0-alpha.96 108 10/6/2022
1.0.0-alpha.95 165 9/26/2022
1.0.0-alpha.94 145 9/23/2022
1.0.0-alpha.93 166 9/22/2022
1.0.0-alpha.92 149 9/19/2022
1.0.0-alpha.91 151 9/19/2022
1.0.0-alpha.90 158 9/19/2022
1.0.0-alpha.89 153 9/18/2022
1.0.0-alpha.88 171 9/17/2022
1.0.0-alpha.87 179 9/17/2022
1.0.0-alpha.86 174 9/17/2022
1.0.0-alpha.85 154 9/17/2022
1.0.0-alpha.84 168 9/16/2022
1.0.0-alpha.83 153 9/15/2022
1.0.0-alpha.82 151 9/15/2022
1.0.0-alpha.81 153 9/15/2022
1.0.0-alpha.80 230 8/30/2022
1.0.0-alpha.79 125 8/30/2022
1.0.0-alpha.78 137 8/27/2022
1.0.0-alpha.77 187 8/26/2022
1.0.0-alpha.76 141 8/26/2022
1.0.0-alpha.75 135 8/25/2022
1.0.0-alpha.74 139 8/24/2022
1.0.0-alpha.73 129 8/23/2022
1.0.0-alpha.72 136 8/21/2022
1.0.0-alpha.71 145 8/19/2022
1.0.0-alpha.70 141 8/18/2022
1.0.0-alpha.69 140 8/16/2022
1.0.0-alpha.68 142 8/12/2022
1.0.0-alpha.67 145 8/9/2022
1.0.0-alpha.66 141 8/8/2022
1.0.0-alpha.65 149 8/7/2022
1.0.0-alpha.64 163 7/23/2022
1.0.0-alpha.62 155 7/20/2022
1.0.0-alpha.61 164 7/19/2022
1.0.0-alpha.60 175 7/15/2022
1.0.0-alpha.59 151 7/12/2022
1.0.0-alpha.58 153 7/10/2022
1.0.0-alpha.57 158 7/8/2022
1.0.0-alpha.56 143 7/8/2022
1.0.0-alpha.55 147 7/8/2022
1.0.0-alpha.54 148 6/27/2022
1.0.0-alpha.53 155 6/23/2022
1.0.0-alpha.52 153 6/21/2022
1.0.0-alpha.51 154 6/21/2022
1.0.0-alpha.50 231 6/17/2022
1.0.0-alpha.49 156 6/16/2022
1.0.0-alpha.48 146 6/16/2022
1.0.0-alpha.47 152 6/15/2022
1.0.0-alpha.46 148 6/13/2022
1.0.0-alpha.45 151 6/5/2022
1.0.0-alpha.44 146 6/4/2022
1.0.0-alpha.43 153 6/4/2022
1.0.0-alpha.42 186 4/1/2022
1.0.0-alpha.41 166 3/27/2022
1.0.0-alpha.40 173 3/26/2022
1.0.0-alpha.39 174 3/22/2022
1.0.0-alpha.38 163 3/19/2022
1.0.0-alpha.37 167 3/17/2022
1.0.0-alpha.36 174 3/16/2022
1.0.0-alpha.35 178 3/15/2022
1.0.0-alpha.34 164 3/12/2022
1.0.0-alpha.33 166 3/11/2022
1.0.0-alpha.32 159 3/8/2022
1.0.0-alpha.31 171 3/7/2022
1.0.0-alpha.30 160 3/7/2022
1.0.0-alpha.29 164 3/7/2022
1.0.0-alpha.28 176 3/3/2022
1.0.0-alpha.27 172 3/2/2022
1.0.0-alpha.26 166 2/16/2022
1.0.0-alpha.25 168 2/16/2022
1.0.0-alpha.24 160 2/15/2022
1.0.0-alpha.23 169 2/14/2022
1.0.0-alpha.22 170 2/13/2022
1.0.0-alpha.21 174 2/12/2022
1.0.0-alpha.20 171 2/12/2022
1.0.0-alpha.19 174 2/11/2022
1.0.0-alpha.18 170 2/11/2022
1.0.0-alpha.17 165 2/11/2022
1.0.0-alpha.16 174 2/10/2022
1.0.0-alpha.15 157 2/10/2022
1.0.0-alpha.14 183 2/2/2022
1.0.0-alpha.13 185 2/2/2022
1.0.0-alpha.12 177 1/24/2022
1.0.0-alpha.11 182 1/15/2022
1.0.0-alpha.10 196 1/4/2022