Rebus 8.0.0-alpha08

This is a prerelease version of Rebus.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Rebus --version 8.0.0-alpha08
                    
NuGet\Install-Package Rebus -Version 8.0.0-alpha08
                    
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="Rebus" Version="8.0.0-alpha08" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rebus" Version="8.0.0-alpha08" />
                    
Directory.Packages.props
<PackageReference Include="Rebus" />
                    
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 Rebus --version 8.0.0-alpha08
                    
#r "nuget: Rebus, 8.0.0-alpha08"
                    
#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.
#:package Rebus@8.0.0-alpha08
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rebus&version=8.0.0-alpha08&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Rebus&version=8.0.0-alpha08&prerelease
                    
Install as a Cake Tool

Rebus

alternate text is missing from this package README image

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.

Product 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.  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 was computed. 
.NET Standard netstandard2.0 is compatible.  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 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 (149)

Showing the top 5 NuGet packages that depend on Rebus:

Package Downloads
Rebus.RabbitMq

Provides a RabbitMQ transport for Rebus

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

Rebus.Serilog

Serilog-based logger integration for Rebus

Rebus.Autofac

Provides an Autofac container adapter for Rebus

Rebus.SqlServer

Microsoft SQL Server-based persistence for Rebus

GitHub repositories (10)

Showing the top 10 popular GitHub repositories that depend on Rebus:

Repository Stars
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
geffzhang/NanoFabric
基于Consul + .NET Core + Polly + Ocelot + Exceptionless + IdentityServer等开源项目的微服务开发框架
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
revoframework/Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
DataDog/dd-trace-dotnet
.NET Client Library for Datadog APM
mastreeno/Merp
An event based Micro ERP
personball/abplus
Abp Plus, Extension For https://github.com/aspnetboilerplate/aspnetboilerplate
loyldg/mytelegram
Self-hosted Telegram server-side API implemented in C#
stidsborg/Cleipnir.NET
Surviving crashes in plain C#-code
rebus-org/RebusSamples
Small sample projects
Version Downloads Last Updated
8.9.0 44,062 10/19/2025
8.9.0-b03 270 10/6/2025
8.9.0-b02 265 10/6/2025
8.9.0-b01 178 10/6/2025
8.8.0 726,173 2/28/2025
8.7.1 3,141,485 11/27/2024
8.7.0 85,697 11/15/2024
8.6.1 266,282 10/13/2024
8.6.0 142,998 9/19/2024
8.5.0 15,133 9/16/2024
8.4.4 257,180 8/30/2024
8.4.3 352,775 6/12/2024
8.4.2 3,341,772 4/10/2024
8.4.1 69,217 4/4/2024
8.4.0 32,332 4/4/2024
8.3.0 1,318 4/4/2024
8.2.4 183,926 3/21/2024
8.2.2 4,434,216 1/22/2024
8.2.0-alpha01 1,012 1/2/2024
8.1.0 424,495 12/21/2023
8.0.3 108,635 12/13/2023
8.0.2 328,610 11/21/2023
8.0.1 6,755,030 11/15/2023
8.0.0-alpha11 4,111 8/3/2023
8.0.0-alpha10 3,365 8/2/2023
8.0.0-alpha09 16,759 3/31/2023
8.0.0-alpha08 317 3/31/2023
8.0.0-alpha07 290 3/31/2023
8.0.0-alpha06 303 3/31/2023
8.0.0-alpha05 822 3/31/2023
8.0.0-alpha04 853 3/30/2023
8.0.0-alpha03 295 3/30/2023
8.0.0-alpha02 827 3/30/2023
8.0.0-alpha01 9,009 3/27/2023
7.2.1 277,453 8/23/2023
7.2.0 55,325 8/3/2023
7.1.1 4,847 8/2/2023
7.1.0 434,956 3/22/2023
7.0.0 1,091,503 12/21/2022
7.0.0-rc7 602 12/15/2022
7.0.0-rc6 589 11/17/2022
7.0.0-rc5 386 11/16/2022
7.0.0-rc4 10,597 9/3/2022
7.0.0-rc2 17,973 6/2/2022
7.0.0-rc1 6,943 5/5/2022
7.0.0-b06 1,050 4/4/2022
7.0.0-b05 6,821 2/19/2022
7.0.0-b04 1,633 2/4/2022
7.0.0-b03 387 2/4/2022
7.0.0-b02 1,103 1/14/2022
7.0.0-b01 5,269 11/26/2021
6.7.0 238,008 12/15/2022
6.6.5 2,848,741 5/5/2022
6.6.4 146,593 4/4/2022
6.6.2 1,880,471 12/23/2021
6.6.1 1,307,031 7/30/2021
6.6.0 117,160 6/3/2021
6.5.5 580,592 3/8/2021
6.5.4 1,260 3/7/2021
6.5.3 61,390 2/25/2021
6.5.2 130,331 2/23/2021
6.4.2-b1 10,624 12/8/2020
6.4.1 1,856,367 9/20/2020
6.4.0 9,418 9/18/2020
6.3.1 463,240 6/12/2020
6.3.0 49,201 6/4/2020
6.2.1 530,512 4/24/2020
6.1.0 2,094,003 3/5/2020
6.0.1 28,661 3/2/2020
6.0.0 6,409,328 1/31/2020
6.0.0-b21 1,882 12/17/2019
6.0.0-b20 800 12/8/2019
6.0.0-b19 1,037 11/4/2019
6.0.0-b18 1,789 9/24/2019
6.0.0-b17 790 9/24/2019
6.0.0-b16 31,337 9/7/2019
6.0.0-b15 2,033 9/4/2019
6.0.0-b14 4,064 9/2/2019
6.0.0-b12 3,260 8/27/2019
6.0.0-b11 3,057 8/13/2019
6.0.0-b10 1,412 8/13/2019
6.0.0-b08 2,171 6/29/2019
6.0.0-b07 1,623 5/6/2019
6.0.0-b06 6,264 4/12/2019
6.0.0-b05 1,486 4/12/2019
6.0.0-b04 2,187 4/9/2019
6.0.0-b03 1,633 3/27/2019
5.4.1 685,510 12/17/2019
5.4.0 737,651 8/13/2019
5.3.1 344,660 5/6/2019
5.3.0 48,069 3/27/2019
5.3.0-b2 2,903 3/6/2019
5.3.0-b1 1,478 3/5/2019
5.2.1 500,493 12/14/2018
5.2.1-b1 1,588 12/14/2018
5.2.0 19,865 12/3/2018
5.1.0 1,756,396 11/23/2018
5.0.2 3,182 11/19/2018
5.0.1 633,405 10/10/2018
5.0.0 724,564 10/8/2018
5.0.0-b21 2,335 10/5/2018
5.0.0-b20 1,631 10/5/2018
5.0.0-b19 2,240 9/24/2018
5.0.0-b18 3,713 9/3/2018
5.0.0-b17 1,787 8/29/2018
5.0.0-b16 1,735 8/27/2018
5.0.0-b15 9,274 8/5/2018
5.0.0-b14 6,233 6/22/2018
5.0.0-b13 2,121 6/22/2018
5.0.0-b12 2,953 5/28/2018
5.0.0-b11 2,291 5/23/2018
5.0.0-b10 2,712 5/1/2018
5.0.0-b09 2,037 4/27/2018
5.0.0-b08 2,264 3/26/2018
5.0.0-b07 2,186 3/26/2018
5.0.0-b06 2,829 3/21/2018
5.0.0-b05 4,449 2/26/2018
5.0.0-b04 2,220 2/26/2018
5.0.0-b03 2,480 2/6/2018
5.0.0-b02 6,037 1/10/2018
5.0.0-b01 3,437 1/3/2018
4.4.0 1,327 2/14/2023
4.3.0 41,608 11/23/2018
4.2.2 62,042 9/19/2018
4.2.1 896,996 12/14/2017
4.2.1-b1 2,021 12/14/2017
4.2.0 5,693 12/10/2017
4.2.0-b01 2,067 11/28/2017
4.1.0 4,277,249 10/26/2017
4.1.0-b5 2,070 9/25/2017
4.1.0-b4 2,985 9/7/2017
4.1.0-b3 2,393 9/4/2017
4.1.0-b2 2,027 8/29/2017
4.1.0-b1 2,743 8/28/2017
4.0.1 76,579 8/22/2017
4.0.0 5,756,791 8/15/2017
4.0.0-b24 2,055 8/15/2017
4.0.0-b23 2,693 8/15/2017
4.0.0-b22 2,615 8/15/2017
4.0.0-b20 51,445 8/9/2017
4.0.0-b19 11,824 7/31/2017
4.0.0-b18 1,979 7/31/2017
4.0.0-b17 3,579 7/25/2017
4.0.0-b16 3,974 6/29/2017
4.0.0-b15 2,337 6/26/2017
4.0.0-b14 4,933 6/20/2017
4.0.0-b12 3,552 6/12/2017
4.0.0-b11 3,494 5/28/2017
4.0.0-b10 10,793 5/18/2017
4.0.0-b09 6,189 5/15/2017
4.0.0-b08 2,067 5/4/2017
4.0.0-b07 2,221 5/1/2017
4.0.0-b06 6,831 4/5/2017
4.0.0-b05 10,102 3/21/2017
4.0.0-b04 3,230 3/21/2017
4.0.0-b03 2,602 3/21/2017
4.0.0-b02 2,126 3/21/2017
4.0.0-b01 10,069 3/21/2017
3.1.5 113,899 6/12/2017
3.1.4 11,926 5/28/2017
3.1.3 5,314 4/27/2017
3.1.2 60,248 3/9/2017
3.1.1 6,014 3/2/2017
3.1.0 3,642 2/28/2017
3.0.2 28,618 2/22/2017
3.0.1 19,275 1/5/2017
3.0.0 126,177 1/4/2017
3.0.0-beta06 2,622 1/4/2017
3.0.0-beta05 2,584 1/4/2017
3.0.0-beta04 3,661 12/20/2016
3.0.0-beta03 2,601 12/20/2016
3.0.0-beta02 2,641 12/20/2016
3.0.0-beta01 3,168 12/19/2016
2.1.6 9,508 11/28/2016
2.1.5 3,346 11/25/2016
2.1.4 3,451 11/24/2016
2.1.3 4,585 11/17/2016
2.1.1 3,527 11/15/2016
2.1.0 3,394 11/14/2016
2.0.2 4,686 11/7/2016
2.0.1 54,879 9/20/2016
2.0.0-b03 3,061 9/19/2016
2.0.0-b02 11,694 9/9/2016
2.0.0-b01 2,637 9/9/2016
2.0.0-a9 2,761 9/6/2016
2.0.0-a8 2,742 9/6/2016
2.0.0-a7 2,778 9/6/2016
2.0.0-a6 3,204 9/1/2016
2.0.0-a5 5,119 8/31/2016
2.0.0-a4 2,620 8/31/2016
2.0.0-a3 3,719 8/31/2016
2.0.0-a2 2,648 8/31/2016
2.0.0-a13 2,726 9/8/2016
2.0.0-a12 2,675 9/7/2016
2.0.0-a11 3,199 9/7/2016
2.0.0-a10 2,720 9/7/2016
0.99.74 19,187 8/29/2016
0.99.73 14,133 8/12/2016
0.99.72 12,025 8/4/2016
0.99.71 12,260 8/3/2016
0.99.70 12,176 7/29/2016
0.99.68 13,275 7/18/2016
0.99.67 12,895 7/1/2016
0.99.66 11,952 6/28/2016
0.99.65 11,775 6/23/2016
0.99.64 11,667 6/22/2016
0.99.63 12,256 6/21/2016
0.99.62 12,032 6/17/2016
0.99.61 11,813 6/17/2016
0.99.60 11,569 6/15/2016
0.99.59 12,383 6/3/2016
0.99.58 13,374 5/24/2016
0.99.57 12,023 5/22/2016
0.99.56 11,659 5/22/2016
0.99.55 12,366 5/16/2016
0.99.54 11,757 5/12/2016
0.99.53 11,680 5/12/2016
0.99.52 12,165 5/11/2016
0.99.51 12,049 5/9/2016
0.99.50 12,505 4/13/2016
0.99.48 12,060 4/6/2016
0.99.47 12,586 3/31/2016
0.99.46 11,234 3/30/2016
0.99.45 11,378 3/29/2016
0.99.44 11,786 3/26/2016
0.99.43 11,492 3/26/2016
0.99.42 14,854 3/22/2016
0.99.41 11,786 3/17/2016
0.99.40 11,461 3/15/2016
0.99.39 11,738 3/14/2016
0.99.38 11,675 3/9/2016
0.99.36 11,754 3/3/2016
0.99.35 11,807 2/22/2016
0.99.34 11,384 2/19/2016
0.99.33 11,953 2/12/2016
0.99.32 11,251 2/10/2016
0.99.31 11,002 2/8/2016
0.99.30 11,697 2/5/2016
0.99.29 12,675 2/2/2016
0.99.27 10,851 1/28/2016
0.99.26 10,644 1/27/2016
0.99.25 10,638 1/22/2016
0.99.24 11,371 1/18/2016
0.99.23 12,027 12/18/2015
0.99.22 10,394 12/18/2015
0.99.21 10,774 12/11/2015
0.99.20 10,348 12/10/2015
0.99.19 10,516 12/8/2015
0.99.18 10,268 12/7/2015
0.99.17 10,404 12/7/2015
0.99.16 10,750 11/30/2015
0.99.14 10,607 11/24/2015
0.99.13 10,625 11/23/2015
0.99.12 10,542 11/17/2015
0.99.11 10,016 11/17/2015
0.99.10 10,271 11/11/2015
0.99.9 14,958 11/5/2015
0.99.8 10,036 11/5/2015
0.99.7 10,170 10/29/2015
0.99.5 10,394 10/27/2015
0.99.4 10,092 10/27/2015
0.99.2 11,451 10/12/2015
0.99.1 10,127 10/8/2015
0.99.0 10,090 10/7/2015
0.98.12 10,675 9/17/2015
0.98.11 10,282 9/17/2015
0.98.10 10,079 9/16/2015
0.98.9 9,901 9/14/2015
0.98.8 10,088 9/13/2015
0.98.7 10,205 9/9/2015
0.98.6 10,257 9/7/2015
0.98.5 9,953 9/3/2015
0.98.4 9,902 9/3/2015
0.98.3 9,999 9/1/2015
0.98.2 10,175 8/27/2015
0.98.1 6,930 8/27/2015
0.98.0 9,940 8/26/2015
0.97.0 10,009 8/25/2015
0.96.0 9,972 8/24/2015
0.95.0 23,327 8/20/2015
0.92.4 10,042 8/17/2015
0.92.3 10,078 8/13/2015
0.92.2 11,258 8/12/2015
0.92.1 10,482 8/12/2015
0.92.0 10,265 8/11/2015
0.91.0 10,383 8/11/2015
0.90.9 2,779 8/10/2015
0.90.8 2,674 8/9/2015
0.90.7 2,781 8/5/2015
0.90.6 2,828 8/4/2015
0.90.5 2,777 8/4/2015
0.90.4 2,643 8/2/2015
0.90.3 2,606 8/2/2015
0.90.2 2,636 7/31/2015
0.90.1 2,625 7/29/2015
0.90.0 61,192 7/29/2015
0.84.0 138,307 5/15/2015
0.83.0 14,703 4/20/2015
0.82.1 9,093 4/16/2015
0.82.0 18,709 3/18/2015
0.81.0 9,655 3/12/2015
0.80.1 9,742 3/5/2015
0.80.0 10,558 2/19/2015
0.79.0 9,368 2/6/2015
0.78.2 8,936 2/6/2015
0.78.1 9,192 2/5/2015
0.78.0 9,555 1/29/2015
0.77.1 9,154 1/23/2015
0.77.0 9,035 1/15/2015
0.76.0 8,922 1/15/2015
0.75.2 9,514 1/3/2015
0.75.1 9,173 12/21/2014
0.75.0 12,409 12/2/2014
0.72.0 18,852 11/5/2014
0.71.4 9,437 10/29/2014
0.71.3 9,847 10/20/2014
0.71.2 16,838 9/30/2014
0.71.1 14,252 9/19/2014
0.71.0 22,424 8/7/2014
0.70.3 9,468 8/4/2014
0.70.2 9,156 7/31/2014
0.70.1 9,143 7/17/2014
0.69.0 13,138 6/17/2014
0.68.0 9,430 6/5/2014
0.67.0 10,830 5/20/2014
0.66.0 9,802 5/9/2014
0.65.0 8,999 4/27/2014
0.64.1 8,709 4/25/2014
0.64.0 8,763 4/20/2014
0.63.1 8,380 4/19/2014
0.63.0 8,997 3/24/2014
0.62.0 104,602 3/12/2014
0.61.1 8,627 3/5/2014
0.61.0 10,498 3/4/2014
0.60.1 8,543 3/3/2014
0.60.0 8,465 3/3/2014
0.59.0 8,486 2/26/2014
0.58.2 8,476 2/24/2014
0.58.1 8,420 2/24/2014
0.58.0 8,631 2/24/2014
0.57.0 9,991 2/18/2014
0.56.1 8,711 2/4/2014
0.56.0 11,316 1/24/2014
0.55.1 9,650 1/20/2014
0.55.0 9,618 1/20/2014
0.54.8 8,753 1/20/2014
0.54.7 9,495 1/20/2014
0.54.6 8,429 1/20/2014
0.54.5 8,589 1/20/2014
0.54.4 8,918 1/11/2014
0.54.3 6,787 1/8/2014
0.54.1 9,335 12/16/2013
0.54.0 8,497 12/10/2013
0.53.1 8,475 12/9/2013
0.53.0 8,782 12/5/2013
0.52.0 8,453 12/4/2013
0.51.1 8,435 12/3/2013
0.51.0 9,440 12/3/2013
0.50.1 8,601 11/15/2013
0.50.0 8,409 11/15/2013
0.49.0 8,617 11/15/2013
0.48.0 8,952 11/12/2013
0.47.0 8,829 11/6/2013
0.46.0 8,851 10/29/2013
0.45.0 12,885 10/21/2013
0.44.5 9,231 10/11/2013
0.44.4 8,684 10/7/2013
0.44.3 8,531 10/4/2013
0.44.2 8,594 10/4/2013
0.44.1 9,698 10/2/2013
0.44.0 8,598 10/2/2013
0.43.1 9,399 9/24/2013
0.43.0 8,732 9/17/2013
0.42.0 8,551 9/17/2013
0.41.0 9,483 9/10/2013
0.40.1 8,676 9/9/2013
0.40.0 8,786 9/2/2013
0.39.0 8,370 8/29/2013
0.38.1 8,556 8/28/2013
0.38.0 8,418 8/28/2013
0.37.0 8,527 8/26/2013
0.36.1 8,421 8/25/2013
0.36.0 9,623 8/25/2013
0.35.6 8,452 8/20/2013
0.35.5 8,406 8/20/2013
0.35.4 8,517 8/19/2013
0.35.3 8,559 8/17/2013
0.35.2 8,359 8/15/2013
0.35.1 8,442 8/14/2013
0.35.0 8,478 8/6/2013
0.34.7 8,262 8/5/2013
0.34.6 8,198 8/5/2013
0.34.5 8,305 8/2/2013
0.34.3 8,389 7/29/2013
0.34.2 8,245 7/29/2013
0.34.1 8,326 7/27/2013
0.34.0 8,579 7/4/2013
0.33.0 8,534 6/14/2013
0.32.5 7,647 6/2/2013
0.32.4 8,321 5/28/2013
0.32.3 8,355 5/23/2013
0.32.1 8,352 5/15/2013
0.32.0 8,322 4/23/2013
0.31.1 8,505 4/2/2013
0.31.0 8,270 4/2/2013
0.30.7 8,226 3/25/2013
0.30.4 8,583 3/7/2013
0.30.3 8,356 3/7/2013
0.30.2 8,366 3/7/2013
0.30.1 8,318 3/6/2013
0.30.0 8,175 3/5/2013
0.29.9 8,175 3/5/2013
0.29.8 8,209 3/5/2013
0.29.7 8,207 2/28/2013
0.29.6 8,252 2/20/2013
0.29.5 8,358 2/20/2013
0.29.4 8,589 2/8/2013
0.29.3 8,292 2/6/2013
0.29.2 2,664 2/6/2013
0.29.1 8,349 2/5/2013
0.29.0-alpha 5,073 1/22/2013
0.28.4 8,444 1/21/2013
0.28.3 8,396 1/8/2013
0.28.2 8,188 1/8/2013
0.28.1 8,217 12/27/2012
0.28.0 8,248 12/27/2012
0.27.1 8,370 12/4/2012
0.27.0 8,516 12/4/2012
0.26.1 8,295 12/4/2012
0.26.0 8,452 11/20/2012
0.25.9 8,511 11/20/2012
0.25.8 8,676 11/19/2012
0.25.7 8,641 11/18/2012
0.25.5 8,602 11/15/2012
0.25.3 8,546 11/13/2012
0.25.2 8,550 11/13/2012
0.25.1 8,525 11/13/2012
0.25.0 8,454 11/7/2012
0.24.9 8,440 11/7/2012
0.24.8 8,469 11/7/2012
0.24.7 8,291 11/6/2012
0.24.6 8,668 11/1/2012
0.24.5 8,705 10/30/2012
0.24.4 8,705 10/30/2012
0.24.3 8,414 10/26/2012
0.24.2 8,364 10/26/2012
0.24.1 8,587 10/26/2012
0.24.0 8,423 10/25/2012
0.23.9 8,435 10/25/2012
0.23.8 8,309 10/25/2012
0.23.7 8,465 10/25/2012
0.23.6 8,602 10/24/2012
0.23.1 8,727 10/12/2012
0.23.0 7,994 10/10/2012
0.22.8 7,979 10/10/2012
0.22.7 8,285 10/9/2012
0.22.6 8,223 10/9/2012
0.22.5 8,136 10/3/2012
0.22.4 8,144 10/2/2012
0.22.3 8,194 10/2/2012
0.22.2 8,035 9/30/2012
0.22.1 7,910 9/26/2012
0.22.0 7,763 9/26/2012
0.21.7 7,925 9/25/2012
0.21.6 7,952 9/25/2012
0.21.5 7,959 9/11/2012
0.21.4 7,988 9/10/2012
0.21.3 8,048 9/10/2012
0.21.2 8,037 9/10/2012
0.21.1 7,875 9/10/2012
0.21.0 8,071 9/7/2012
0.20.9 8,065 9/7/2012
0.20.8 8,019 9/6/2012
0.20.7 7,964 9/6/2012
0.20.6 8,016 9/6/2012
0.20.3 8,020 9/4/2012
0.20.2 8,157 9/4/2012
0.19.7 8,161 8/29/2012
0.19.6 7,927 8/28/2012
0.19.5 7,553 8/28/2012
0.19.4 7,619 8/28/2012
0.19.3 7,673 8/28/2012
0.19.2 7,811 8/28/2012
0.19.1 7,790 8/26/2012
0.18.6 7,650 8/23/2012
0.16.0 11,483 8/20/2012
0.15.9-alpha 5,111 8/14/2012
0.15.8-alpha 4,828 8/8/2012
0.15.7-alpha 4,884 8/8/2012
0.15.6-alpha 4,878 8/8/2012
0.15.5-alpha 2,794 8/8/2012
0.15.4-alpha 4,921 8/7/2012
0.15.3-alpha 4,867 8/7/2012
0.15.2-alpha 4,899 8/7/2012
0.15.1-alpha 4,987 8/2/2012
0.15.0-alpha 4,996 8/1/2012
0.14.0-alpha 4,785 7/30/2012
0.13.0-alpha 4,817 7/14/2012
0.12.9-alpha 4,916 6/18/2012
0.12.8-alpha 4,742 6/18/2012
0.12.7-alpha 4,808 6/13/2012
0.12.6-alpha 4,927 6/8/2012
0.12.5-alpha 4,858 6/5/2012
0.12.4-alpha 4,336 6/5/2012
0.12.3-alpha 4,263 6/1/2012
0.12.2-alpha 4,309 5/31/2012
0.12.1-alpha 4,254 5/30/2012
0.11.10-alpha 4,302 5/30/2012
0.11.9-alpha 4,238 5/30/2012
0.11.8-alpha 4,265 5/30/2012
0.11.7-alpha 4,344 5/30/2012
0.11.6-alpha 4,239 5/29/2012
0.11.5-alpha 4,307 5/22/2012
0.11.4-alpha 4,299 5/22/2012
0.11.3-alpha 3,618 5/15/2012
0.11.2-alpha 3,669 5/8/2012
0.11.1-alpha 3,728 5/8/2012
0.11.0-alpha 3,701 5/8/2012
0.10.9-alpha 3,769 4/10/2012
0.10.8-alpha 3,706 3/21/2012
0.10.7-alpha 3,710 3/20/2012
0.10.6-alpha 3,760 3/17/2012
0.10.5-alpha 3,498 3/16/2012
0.10.4-alpha 3,540 3/16/2012
0.10.3-alpha 3,738 3/15/2012
0.10.1-alpha 3,658 3/15/2012
0.9.1-alpha 3,412 2/25/2012