Rebus 8.8.0

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
Elsa.Abstractions
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application. This package provides abstractions and models that are used by Elsa.Core and other related packages. You don't need to reference this package separately if you reference any other Elsa package.
24
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
17
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus
17
Rebus.ServiceProvider
Package Description
17
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus
16
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus
15
Rebus.ServiceProvider
Package Description
15
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus
14
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
14
Elsa.Abstractions
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application. This package provides abstractions and models that are used by Elsa.Core and other related packages. You don't need to reference this package separately if you reference any other Elsa package.
13
Rebus.ServiceProvider
Provides a service provider-based container adapter for Rebus
13

.NET 6.0

.NET 7.0

.NET 8.0

.NET 9.0

.NET Standard 2.0

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