Rebus 8.9.2

Rebus

Latest stable: NuGet stable

Current prerelease: NuGet pre

Tests: Build status

This repository contains Rebus "core". You may also be interested in one of the many integration libraries.

For information about the commercial add-on (support, tooling, etc.) to Rebus, please visit Rebus FM's page about Rebus Pro.

What?

Rebus is a lean service bus implementation for .NET. It is what ThoughtWorks in 2010 called a "message bus without smarts" - a library that works well as the "dumb pipes" when you need asynchronous communication in your microservices that follow the "smart endpoints, dumb pipes" principle.

Rebus aims to have

  • a simple and intuitive configuration story
  • a few well-selected options
  • no doodleware
  • as few dependencies as possible (currently only JSON.NET)
  • a broad reach (targets .NET Standard 2.0, i.e. .NET Framework 4.6.1, .NET Core 2, and .NET 5 and onwards)
  • integration with external dependencies via small, dedicated projects
  • the best error messages in the world
  • a frictionless getting-up-and-running-experience

and in doing this, Rebus should try to align itself with common, proven asynchronous messaging patterns.

Oh, and Rebus is FREE as in beer 🍺 and speech 💬, and it will stay that way forever.

More information

If you want to read more, check out the official Rebus documentation wiki or check out my blog.

You can also follow me on Twitter: @mookid8000

Getting started

Rebus is a simple .NET library, and everything revolves around the RebusBus class. One way to get Rebus up and running, is to manually go

var bus = new RebusBus(...);
bus.Start(1); //< 1 worker thread

// use the bus for the duration of the application lifetime

// remember to dispose the bus when your application exits
bus.Dispose();

where ... is a bunch of dependencies that vary depending on how you want to send/receive messages etc. Another way is to use the configuration API, in which case you would go

var someContainerAdapter = new BuiltinHandlerActivator();

for the built-in container adapter, or

var someContainerAdapter = new AdapterForMyFavoriteIocContainer(myFavoriteIocContainer);

to integrate with your favorite IoC container, and then

Configure.With(someContainerAdapter)
    .Logging(l => l.Serilog())
    .Transport(t => t.UseMsmq("myInputQueue"))
    .Routing(r => r.TypeBased().MapAssemblyOf<SomeMessageType>("anotherInputQueue"))
    .Start();

// have IBus injected in application services for the duration of the application lifetime    

// let the container dispose the bus when your application exits
myFavoriteIocContainer.Dispose();

which will stuff the resulting IBus in the container as a singleton and use the container to look up message handlers. Check out the Configuration section on the official Rebus documentation wiki for more information on how to do this.

If you want to be more specific about what types you map in an assembly, such as if the assembly is shared with other code you can map all the types under a specific namespace like this:

Configure.With(someContainerAdapter)
    .(...)
    .Routing(r => r.TypeBased().MapAssemblyNamespaceOf<SomeMessageType>("namespaceInputQueue"))
    .(...);

// have IBus injected in application services for the duration of the application lifetime    

// let the container dispose the bus when your application exits
myFavoriteIocContainer.Dispose();

License

Rebus is licensed under The MIT License (MIT). Basically, this license grants you the right to use Rebus in any way you see fit. See LICENSE.md for more info.

The purpose of the license is to make it easy for everyone to use Rebus and its accompanying integration libraries. If that is not the case, please get in touch with hello@rebus.fm and then we will work something out.

Showing the top 20 packages that depend on Rebus.

Packages Downloads
Rebus.Kafka
Apache Kafka transport for Rebus. So as to interact with the Apache Kafka requires the unmanaged "librdkafka", you need to install the appropriate version of the package "librdkafka.redist". If this unmanaged "librdkafka" is not found automatically, you must load it before you can use Rebus.Kafka for the first time as follows: "Confluent.Kafka.Library.Load (pathToLibrdkafka)".
29
Rebus.Kafka
Apache Kafka transport for Rebus. So as to interact with the Apache Kafka requires the unmanaged "librdkafka", you need to install the appropriate version of the package "librdkafka.redist". If this unmanaged "librdkafka" is not found automatically, you must load it before you can use Rebus.Kafka for the first time as follows: "Confluent.Kafka.Library.Load (pathToLibrdkafka)".
30
Rebus.Kafka
Apache Kafka transport for Rebus. So as to interact with the Apache Kafka requires the unmanaged "librdkafka", you need to install the appropriate version of the package "librdkafka.redist". If this unmanaged "librdkafka" is not found automatically, you must load it before you can use Rebus.Kafka for the first time as follows: "Confluent.Kafka.Library.Load (pathToLibrdkafka)".
36
Rebus.Kafka
Apache Kafka transport for Rebus. So as to interact with the Apache Kafka requires the unmanaged “librdkafka”, you need to install the package “librdkafka.redist -Version 1.0.0-RC7 or newer”. If this unmanaged “librdkafka” is not found automatically, you must load it before you can use Rebus.Kafka for the first time as follows: "Confluent.Kafka.Library.Load (pathToLibrd)".
30
Rebus.Kafka
Apache Kafka transport for Rebus. So as to interact with the Apache Kafka requires the unmanaged “librdkafka”, you need to install the package “librdkafka.redist -Version 1.0.0-RC7 or newer”. If this unmanaged “librdkafka” is not found automatically, you must load it before you can use Rebus.Kafka for the first time as follows: "Confluent.Kafka.Library.Load (pathToLibrdkafka)".
29
Rebus.Kafka
Apache Kafka transport for Rebus. So as to interact with the Apache Kafka requires the unmanaged “librdkafka”, you need to install the package “librdkafka.redist -Version 1.0.0-RC7 or newer”. If this unmanaged “librdkafka” is not found automatically, you must load it before you can use Rebus.Kafka for the first time as follows: "Confluent.Kafka.Library.Load (pathToLibrdkafka)".
32
Rebus.PostgreSql
PostgreSQL-based persistence for Rebus
33
Rebus.PostgreSql
PostgreSql persisters for Rebus
29
Rebus.PostgreSql
PostgreSql persisters for Rebus
30
Rebus.ServiceProvider
Package Description
29
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus
29
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus
30
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus
31
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus (i.e. integration with Microsoft.Extensions.DependencyInjection) as well as integration with the generic host
29
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus (i.e. integration with Microsoft.Extensions.DependencyInjection) as well as integration with the generic host
32

.NET 6.0

.NET 7.0

.NET 8.0

.NET 9.0

.NET 10.0

.NET Standard 2.0

Version Downloads Last updated
8.9.2 31 04/17/2026
8.9.0 20 03/19/2026
8.9.0-b03 20 03/19/2026
8.9.0-b02 15 03/19/2026
8.9.0-b01 17 03/19/2026
8.8.0 23 03/19/2026
8.7.1 25 03/19/2026
8.7.0 19 03/19/2026
8.6.1 21 03/19/2026
8.6.0 19 03/19/2026
8.5.0 20 03/19/2026
8.4.4 16 03/19/2026
8.4.3 21 03/19/2026
8.4.2 22 03/19/2026
8.4.1 22 03/19/2026
8.4.0 17 03/19/2026
8.3.0 18 03/19/2026
8.2.4 19 03/19/2026
8.2.2 17 03/19/2026
8.2.0-alpha01 16 03/19/2026
8.1.0 23 03/19/2026
8.0.3 21 03/19/2026
8.0.2 18 03/19/2026
8.0.1 27 03/19/2026
8.0.0-alpha11 14 03/19/2026
8.0.0-alpha10 14 03/20/2026
8.0.0-alpha09 14 03/19/2026
8.0.0-alpha08 14 03/20/2026
8.0.0-alpha07 18 03/19/2026
8.0.0-alpha06 18 03/19/2026
8.0.0-alpha05 14 03/19/2026
8.0.0-alpha04 15 03/19/2026
8.0.0-alpha03 17 03/19/2026
8.0.0-alpha02 20 03/19/2026
8.0.0-alpha01 15 03/19/2026
7.2.1 21 03/19/2026
7.2.0 18 03/19/2026
7.1.1 24 03/19/2026
7.1.0 29 03/19/2026
7.0.0 24 03/19/2026
7.0.0-rc7 17 03/19/2026
7.0.0-rc6 17 03/19/2026
7.0.0-rc5 20 03/19/2026
7.0.0-rc4 19 03/20/2026
7.0.0-rc2 17 03/19/2026
7.0.0-rc1 23 03/19/2026
7.0.0-b06 18 03/19/2026
7.0.0-b05 19 03/19/2026
7.0.0-b04 17 03/19/2026
7.0.0-b03 19 03/19/2026
7.0.0-b02 17 03/19/2026
7.0.0-b01 18 03/19/2026
6.7.0 23 03/19/2026
6.6.5 21 03/19/2026
6.6.4 22 03/19/2026
6.6.2 20 03/19/2026
6.6.1 24 03/20/2026
6.6.0 26 03/19/2026
6.5.5 22 03/19/2026
6.5.4 27 03/19/2026
6.5.3 21 03/19/2026
6.5.2 25 03/19/2026
6.4.2-b1 20 03/19/2026
6.4.1 22 03/19/2026
6.4.0 27 03/19/2026
6.3.1 21 03/19/2026
6.3.0 16 03/20/2026
6.2.1 21 03/19/2026
6.1.0 19 03/19/2026
6.0.1 21 03/19/2026
6.0.0 27 03/19/2026
6.0.0-b21 16 03/19/2026
6.0.0-b20 16 03/20/2026
6.0.0-b19 18 03/19/2026
6.0.0-b18 16 03/19/2026
6.0.0-b17 21 03/19/2026
6.0.0-b16 16 03/19/2026
6.0.0-b15 19 03/19/2026
6.0.0-b14 19 03/19/2026
6.0.0-b12 16 03/19/2026
6.0.0-b11 23 03/19/2026
6.0.0-b10 19 03/19/2026
6.0.0-b08 17 03/19/2026
6.0.0-b07 20 03/19/2026
6.0.0-b06 17 03/19/2026
6.0.0-b05 19 03/19/2026
6.0.0-b04 21 03/19/2026
6.0.0-b03 16 03/19/2026
5.4.1 22 03/19/2026
5.4.0 19 03/19/2026
5.3.1 21 03/19/2026
5.3.0 27 03/19/2026
5.3.0-b2 15 03/19/2026
5.3.0-b1 18 03/19/2026
5.2.1 19 03/19/2026
5.2.1-b1 18 03/19/2026
5.2.0 20 03/19/2026
5.1.0 23 03/19/2026
5.0.2 25 03/19/2026
5.0.1 22 03/19/2026
5.0.0 21 03/19/2026
5.0.0-b21 26 03/19/2026
5.0.0-b20 16 03/19/2026
5.0.0-b19 20 03/19/2026
5.0.0-b18 16 03/19/2026
5.0.0-b17 26 03/19/2026
5.0.0-b16 18 03/19/2026
5.0.0-b15 18 03/19/2026
5.0.0-b14 17 03/19/2026
5.0.0-b13 16 03/19/2026
5.0.0-b12 15 03/19/2026
5.0.0-b11 22 03/19/2026
5.0.0-b10 19 03/19/2026
5.0.0-b09 18 03/19/2026
5.0.0-b08 26 03/19/2026
5.0.0-b07 17 03/19/2026
5.0.0-b06 16 03/19/2026
5.0.0-b05 18 03/20/2026
5.0.0-b04 17 03/20/2026
5.0.0-b03 22 03/19/2026
5.0.0-b02 16 03/19/2026
5.0.0-b01 21 03/19/2026
4.4.0 17 03/19/2026
4.3.0 20 03/19/2026
4.2.2 18 03/19/2026
4.2.1 20 03/19/2026
4.2.1-b1 18 03/19/2026
4.2.0 23 03/19/2026
4.2.0-b01 22 03/19/2026
4.1.0 18 03/19/2026
4.1.0-b5 18 03/19/2026
4.1.0-b4 20 03/19/2026
4.1.0-b3 19 03/19/2026
4.1.0-b2 20 03/19/2026
4.1.0-b1 18 03/19/2026
4.0.1 19 03/19/2026
4.0.0 21 03/19/2026
4.0.0-b24 28 03/19/2026
4.0.0-b23 19 03/19/2026
4.0.0-b22 15 03/19/2026
4.0.0-b20 23 03/19/2026
4.0.0-b19 22 03/19/2026
4.0.0-b18 19 03/19/2026
4.0.0-b17 18 03/19/2026
4.0.0-b16 16 03/19/2026
4.0.0-b15 17 03/19/2026
4.0.0-b14 19 03/19/2026
4.0.0-b12 19 03/19/2026
4.0.0-b11 18 03/19/2026
4.0.0-b10 22 03/19/2026
4.0.0-b09 17 03/20/2026
4.0.0-b08 20 03/19/2026
4.0.0-b07 17 03/19/2026
4.0.0-b06 21 03/19/2026
4.0.0-b05 22 03/19/2026
4.0.0-b04 22 03/19/2026
4.0.0-b03 17 03/19/2026
4.0.0-b02 26 03/19/2026
4.0.0-b01 25 03/19/2026
3.1.5 25 03/19/2026
3.1.4 21 03/19/2026
3.1.3 24 03/19/2026
3.1.2 20 03/19/2026
3.1.1 20 03/19/2026
3.1.0 26 03/19/2026
3.0.2 20 03/19/2026
3.0.1 22 03/19/2026
3.0.0 21 03/19/2026
3.0.0-beta06 19 03/19/2026
3.0.0-beta05 17 03/19/2026
3.0.0-beta04 15 03/19/2026
3.0.0-beta03 19 03/19/2026
3.0.0-beta02 18 03/19/2026
3.0.0-beta01 23 03/19/2026
2.1.6 22 03/19/2026
2.1.5 18 03/19/2026
2.1.4 20 03/19/2026
2.1.3 20 03/19/2026
2.1.1 18 03/19/2026
2.1.0 24 03/19/2026
2.0.2 27 03/19/2026
2.0.1 19 03/19/2026
2.0.0-b03 16 03/19/2026
2.0.0-b02 18 03/19/2026
2.0.0-b01 17 03/19/2026
2.0.0-a9 24 03/19/2026
2.0.0-a8 18 03/19/2026
2.0.0-a7 21 03/19/2026
2.0.0-a6 18 03/19/2026
2.0.0-a5 23 03/19/2026
2.0.0-a4 17 03/19/2026
2.0.0-a3 20 03/19/2026
2.0.0-a2 18 03/19/2026
2.0.0-a13 20 03/19/2026
2.0.0-a12 24 03/19/2026
2.0.0-a11 19 03/19/2026
2.0.0-a10 22 03/19/2026
0.99.74 24 03/19/2026
0.99.73 19 03/19/2026
0.99.72 24 03/19/2026
0.99.71 20 03/19/2026
0.99.70 27 03/19/2026
0.99.68 22 03/20/2026
0.99.67 18 03/19/2026
0.99.66 17 03/19/2026
0.99.65 27 03/19/2026
0.99.64 16 03/19/2026
0.99.63 18 03/19/2026
0.99.62 18 03/19/2026
0.99.61 20 03/19/2026
0.99.60 20 03/19/2026
0.99.59 20 03/19/2026
0.99.58 27 03/19/2026
0.99.57 26 03/19/2026
0.99.56 18 03/19/2026
0.99.55 17 03/19/2026
0.99.54 18 03/19/2026
0.99.53 20 03/19/2026
0.99.52 20 03/19/2026
0.99.51 23 03/19/2026
0.99.50 20 03/19/2026
0.99.48 20 03/19/2026
0.99.47 24 03/19/2026
0.99.46 25 03/19/2026
0.99.45 19 03/19/2026
0.99.44 19 03/19/2026
0.99.43 22 03/19/2026
0.99.42 19 03/19/2026
0.99.41 15 03/19/2026
0.99.40 21 03/19/2026
0.99.39 23 03/19/2026
0.99.38 26 03/19/2026
0.99.36 25 03/19/2026
0.99.35 19 03/19/2026
0.99.34 19 03/19/2026
0.99.33 18 03/19/2026
0.99.32 17 03/19/2026
0.99.31 21 03/19/2026
0.99.30 19 03/19/2026
0.99.29 18 03/19/2026
0.99.27 18 03/19/2026
0.99.26 26 03/19/2026
0.99.25 25 03/19/2026
0.99.24 19 03/19/2026
0.99.23 25 03/19/2026
0.99.22 20 03/20/2026
0.99.21 18 03/19/2026
0.99.20 25 03/19/2026
0.99.19 16 03/19/2026
0.99.18 18 03/19/2026
0.99.17 18 03/19/2026
0.99.16 21 03/19/2026
0.99.14 18 03/19/2026
0.99.13 21 03/19/2026
0.99.12 17 03/19/2026
0.99.11 22 03/19/2026
0.99.10 23 03/19/2026
0.99.9 19 03/19/2026
0.99.8 20 03/19/2026
0.99.7 19 03/19/2026
0.99.5 18 03/19/2026
0.99.4 28 03/19/2026
0.99.2 18 03/19/2026
0.99.1 18 03/19/2026
0.99.0 21 03/19/2026
0.98.12 23 03/19/2026
0.98.11 21 03/19/2026
0.98.10 18 03/19/2026
0.98.9 17 03/19/2026
0.98.8 22 03/19/2026
0.98.7 22 03/19/2026
0.98.6 23 03/19/2026
0.98.5 18 03/19/2026
0.98.4 16 03/19/2026
0.98.3 16 03/19/2026
0.98.2 21 03/19/2026
0.98.1 18 03/19/2026
0.98.0 22 03/19/2026
0.97.0 18 03/19/2026
0.96.0 21 03/19/2026
0.95.0 20 03/19/2026
0.92.4 21 03/19/2026
0.92.3 19 03/20/2026
0.92.2 23 03/19/2026
0.92.1 19 03/19/2026
0.92.0 19 03/19/2026
0.91.0 24 03/19/2026
0.90.9 18 03/19/2026
0.90.8 16 03/19/2026
0.90.7 20 03/19/2026
0.90.6 15 03/19/2026
0.90.5 18 03/19/2026
0.90.4 20 03/19/2026
0.90.3 23 03/19/2026
0.90.2 15 03/19/2026
0.90.1 23 03/19/2026
0.90.0 23 03/19/2026
0.84.0 19 03/19/2026
0.83.0 19 03/19/2026
0.82.1 22 03/19/2026
0.82.0 17 03/19/2026
0.81.0 24 03/19/2026
0.80.1 24 03/19/2026
0.80.0 18 03/19/2026
0.79.0 19 03/19/2026
0.78.2 22 03/19/2026
0.78.1 20 03/19/2026
0.78.0 21 03/19/2026
0.77.1 23 03/19/2026
0.77.0 18 03/19/2026
0.76.0 17 03/19/2026
0.75.2 18 03/19/2026
0.75.1 18 03/19/2026
0.75.0 17 03/19/2026
0.72.0 23 03/19/2026
0.71.4 16 03/19/2026
0.71.3 16 03/19/2026
0.71.2 25 03/19/2026
0.71.1 18 03/19/2026
0.71.0 20 03/19/2026
0.70.3 23 03/19/2026
0.70.2 19 03/19/2026
0.70.1 18 03/19/2026
0.69.0 14 03/19/2026
0.68.0 25 03/19/2026
0.67.0 25 03/19/2026
0.66.0 16 03/19/2026
0.65.0 27 03/19/2026
0.64.1 21 03/19/2026
0.64.0 27 03/19/2026
0.63.1 18 03/19/2026
0.63.0 19 03/19/2026
0.62.0 25 03/19/2026
0.61.1 24 03/19/2026
0.61.0 16 03/19/2026
0.60.1 21 03/19/2026
0.60.0 14 03/19/2026
0.59.0 25 03/19/2026
0.58.2 22 03/19/2026
0.58.1 20 03/19/2026
0.58.0 17 03/19/2026
0.57.0 20 03/19/2026
0.56.1 20 03/19/2026
0.56.0 19 03/19/2026
0.55.1 17 03/19/2026
0.55.0 21 03/19/2026
0.54.8 19 03/19/2026
0.54.7 18 03/19/2026
0.54.6 24 03/19/2026
0.54.5 18 03/19/2026
0.54.4 21 03/19/2026
0.54.3 18 03/19/2026
0.54.1 20 03/19/2026
0.54.0 19 03/20/2026
0.53.1 18 03/19/2026
0.53.0 19 03/19/2026
0.52.0 23 03/19/2026
0.51.1 19 03/19/2026
0.51.0 19 03/19/2026
0.50.1 22 03/19/2026
0.50.0 16 03/19/2026
0.49.0 26 03/19/2026
0.48.0 17 03/19/2026
0.47.0 25 03/19/2026
0.46.0 21 03/19/2026
0.45.0 20 03/19/2026
0.44.5 15 03/19/2026
0.44.4 18 03/19/2026
0.44.3 23 03/19/2026
0.44.2 18 03/19/2026
0.44.1 26 03/19/2026
0.44.0 23 03/19/2026
0.43.1 18 03/19/2026
0.43.0 19 03/19/2026
0.42.0 18 03/19/2026
0.41.0 18 03/19/2026
0.40.1 17 03/19/2026
0.40.0 21 03/19/2026
0.39.0 16 03/19/2026
0.38.1 17 03/19/2026
0.38.0 19 03/19/2026
0.37.0 18 03/19/2026
0.36.1 16 03/19/2026
0.36.0 20 03/19/2026
0.35.6 18 03/19/2026
0.35.5 20 03/19/2026
0.35.4 18 03/19/2026
0.35.3 20 03/19/2026
0.35.2 26 03/19/2026
0.35.1 19 03/19/2026
0.35.0 19 03/19/2026
0.34.7 18 03/19/2026
0.34.6 18 03/19/2026
0.34.5 25 03/19/2026
0.34.3 15 03/19/2026
0.34.2 23 03/19/2026
0.34.1 21 03/19/2026
0.34.0 15 03/19/2026
0.33.0 15 03/20/2026
0.32.5 18 03/19/2026
0.32.4 20 03/19/2026
0.32.3 18 03/19/2026
0.32.1 23 03/19/2026
0.32.0 16 03/19/2026
0.31.1 23 03/19/2026
0.31.0 19 03/19/2026
0.30.7 19 03/19/2026
0.30.4 18 03/19/2026
0.30.3 18 03/19/2026
0.30.2 19 03/19/2026
0.30.1 20 03/19/2026
0.30.0 27 03/19/2026
0.29.9 19 03/19/2026
0.29.8 19 03/19/2026
0.29.7 19 03/19/2026
0.29.6 15 03/19/2026
0.29.5 22 03/19/2026
0.29.4 19 03/19/2026
0.29.3 23 03/19/2026
0.29.2 18 03/19/2026
0.29.1 18 03/19/2026
0.29.0-alpha 18 03/19/2026
0.28.4 25 03/19/2026
0.28.3 21 03/19/2026
0.28.2 18 03/19/2026
0.28.1 27 03/19/2026
0.28.0 15 03/19/2026
0.27.1 19 03/19/2026
0.27.0 19 03/19/2026
0.26.1 21 03/19/2026
0.26.0 17 03/19/2026
0.25.9 21 03/19/2026
0.25.8 24 03/19/2026
0.25.7 19 03/19/2026
0.25.5 23 03/19/2026
0.25.3 23 03/19/2026
0.25.2 17 03/19/2026
0.25.1 17 03/19/2026
0.25.0 14 03/19/2026
0.24.9 22 03/19/2026
0.24.8 25 03/19/2026
0.24.7 17 03/19/2026
0.24.6 20 03/19/2026
0.24.5 22 03/19/2026
0.24.4 25 03/19/2026
0.24.3 26 03/19/2026
0.24.2 18 03/19/2026
0.24.1 19 03/19/2026
0.24.0 20 03/19/2026
0.23.9 22 03/19/2026
0.23.8 20 03/19/2026
0.23.7 17 03/19/2026
0.23.6 20 03/19/2026
0.23.1 15 03/19/2026
0.23.0 16 03/19/2026
0.22.8 27 03/19/2026
0.22.7 15 03/19/2026
0.22.6 18 03/19/2026
0.22.5 20 03/19/2026
0.22.4 18 03/19/2026
0.22.3 18 03/19/2026
0.22.2 19 03/19/2026
0.22.1 17 03/19/2026
0.22.0 19 03/19/2026
0.21.7 26 03/19/2026
0.21.6 19 03/19/2026
0.21.5 17 03/19/2026
0.21.4 17 03/19/2026
0.21.3 25 03/19/2026
0.21.2 18 03/19/2026
0.21.1 27 03/19/2026
0.21.0 16 03/19/2026
0.20.9 17 03/19/2026
0.20.8 24 03/19/2026
0.20.7 19 03/19/2026
0.20.6 16 03/19/2026
0.20.3 25 03/19/2026
0.20.2 18 03/19/2026
0.19.7 24 03/19/2026
0.19.6 20 03/19/2026
0.19.5 18 03/19/2026
0.19.4 17 03/19/2026
0.19.3 18 03/19/2026
0.19.2 20 03/19/2026
0.19.1 18 03/19/2026
0.18.6 19 03/19/2026
0.16.0 15 03/19/2026
0.15.9-alpha 21 03/19/2026
0.15.8-alpha 23 03/19/2026
0.15.7-alpha 17 03/19/2026
0.15.6-alpha 19 03/19/2026
0.15.5-alpha 18 03/20/2026
0.15.4-alpha 19 03/19/2026
0.15.3-alpha 16 03/20/2026
0.15.2-alpha 17 03/19/2026
0.15.1-alpha 15 03/19/2026
0.15.0-alpha 15 03/19/2026
0.14.0-alpha 18 03/19/2026
0.13.0-alpha 26 03/19/2026
0.12.9-alpha 14 03/19/2026
0.12.8-alpha 13 03/19/2026
0.12.7-alpha 23 03/19/2026
0.12.6-alpha 19 03/19/2026
0.12.5-alpha 14 03/19/2026
0.12.4-alpha 16 03/19/2026
0.12.3-alpha 18 03/19/2026
0.12.2-alpha 17 03/19/2026
0.12.1-alpha 16 03/19/2026
0.11.10-alpha 15 03/19/2026
0.11.9-alpha 20 03/19/2026
0.11.8-alpha 17 03/19/2026
0.11.7-alpha 17 03/19/2026
0.11.6-alpha 21 03/19/2026
0.11.5-alpha 18 03/19/2026
0.11.4-alpha 16 03/19/2026
0.11.3-alpha 25 03/19/2026
0.11.2-alpha 17 03/19/2026
0.11.1-alpha 21 03/19/2026
0.11.0-alpha 18 03/19/2026
0.10.9-alpha 16 03/19/2026
0.10.8-alpha 18 03/19/2026
0.10.7-alpha 20 03/19/2026
0.10.6-alpha 24 03/19/2026
0.10.5-alpha 18 03/19/2026
0.10.4-alpha 17 03/19/2026
0.10.3-alpha 13 03/19/2026
0.10.1-alpha 19 03/19/2026
0.9.1-alpha 17 03/19/2026