Rebus 8.9.0

dotnet add package Rebus --version 8.9.0
                    
NuGet\Install-Package Rebus -Version 8.9.0
                    
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.9.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rebus" Version="8.9.0" />
                    
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.9.0
                    
#r "nuget: Rebus, 8.9.0"
                    
#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.9.0
                    
#: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.9.0
                    
Install as a Cake Addin
#tool nuget:?package=Rebus&version=8.9.0
                    
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 is compatible.  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 is compatible.  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 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 is compatible.  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 is compatible.  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 (153)

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 567,703 10/19/2025
8.9.0-b03 301 10/6/2025
8.9.0-b02 608 10/6/2025
8.9.0-b01 205 10/6/2025
8.8.0 1,313,644 2/28/2025
8.7.1 3,386,838 11/27/2024
8.7.0 102,505 11/15/2024
8.6.1 328,249 10/13/2024
8.6.0 157,329 9/19/2024
8.5.0 23,349 9/16/2024
8.4.4 295,294 8/30/2024
8.4.3 371,700 6/12/2024
8.4.2 3,895,875 4/10/2024
8.4.1 72,131 4/4/2024
8.4.0 37,405 4/4/2024
8.3.0 2,134 4/4/2024
8.2.4 186,059 3/21/2024
8.2.2 4,673,644 1/22/2024
8.2.0-alpha01 1,027 1/2/2024
8.1.0 455,571 12/21/2023
8.0.3 109,803 12/13/2023
8.0.2 363,729 11/21/2023
8.0.1 7,564,681 11/15/2023
8.0.0-alpha11 4,142 8/3/2023
8.0.0-alpha10 3,398 8/2/2023
8.0.0-alpha09 16,992 3/31/2023
8.0.0-alpha08 349 3/31/2023
8.0.0-alpha07 321 3/31/2023
8.0.0-alpha06 337 3/31/2023
8.0.0-alpha05 856 3/31/2023
8.0.0-alpha04 879 3/30/2023
8.0.0-alpha03 323 3/30/2023
8.0.0-alpha02 857 3/30/2023
8.0.0-alpha01 9,133 3/27/2023
7.2.1 283,038 8/23/2023
7.2.0 62,531 8/3/2023
7.1.1 5,621 8/2/2023
7.1.0 445,120 3/22/2023
7.0.0 1,123,154 12/21/2022
7.0.0-rc7 640 12/15/2022
7.0.0-rc6 631 11/17/2022
7.0.0-rc5 414 11/16/2022
7.0.0-rc4 10,635 9/3/2022
7.0.0-rc2 18,207 6/2/2022
7.0.0-rc1 7,038 5/5/2022
7.0.0-b06 1,085 4/4/2022
7.0.0-b05 6,874 2/19/2022
7.0.0-b04 1,664 2/4/2022
7.0.0-b03 424 2/4/2022
7.0.0-b02 1,147 1/14/2022
7.0.0-b01 5,302 11/26/2021
6.7.0 240,863 12/15/2022
6.6.5 2,943,283 5/5/2022
6.6.4 151,389 4/4/2022
6.6.2 1,900,958 12/23/2021
6.6.1 1,351,183 7/30/2021
6.6.0 118,271 6/3/2021
6.5.5 589,035 3/8/2021
6.5.4 2,031 3/7/2021
6.5.3 63,321 2/25/2021
6.5.2 131,501 2/23/2021
6.4.2-b1 10,923 12/8/2020
6.4.1 1,913,124 9/20/2020
6.4.0 10,200 9/18/2020
6.3.1 468,119 6/12/2020
6.3.0 49,995 6/4/2020
6.2.1 549,938 4/24/2020
6.1.0 2,114,663 3/5/2020
6.0.1 29,543 3/2/2020
6.0.0 6,544,871 1/31/2020
6.0.0-b21 1,920 12/17/2019
6.0.0-b20 841 12/8/2019
6.0.0-b19 1,080 11/4/2019
6.0.0-b18 1,831 9/24/2019
6.0.0-b17 829 9/24/2019
6.0.0-b16 31,378 9/7/2019
6.0.0-b15 2,070 9/4/2019
6.0.0-b14 4,110 9/2/2019
6.0.0-b12 3,296 8/27/2019
6.0.0-b11 3,098 8/13/2019
6.0.0-b10 1,454 8/13/2019
6.0.0-b08 2,209 6/29/2019
6.0.0-b07 1,660 5/6/2019
6.0.0-b06 6,304 4/12/2019
6.0.0-b05 1,528 4/12/2019
6.0.0-b04 2,226 4/9/2019
6.0.0-b03 1,664 3/27/2019
5.4.1 687,986 12/17/2019
5.4.0 740,186 8/13/2019
5.3.1 345,687 5/6/2019
5.3.0 49,169 3/27/2019
5.3.0-b2 2,941 3/6/2019
5.3.0-b1 1,518 3/5/2019
5.2.1 502,341 12/14/2018
5.2.1-b1 1,625 12/14/2018
5.2.0 20,648 12/3/2018
5.1.0 1,758,157 11/23/2018
5.0.2 3,961 11/19/2018
5.0.1 637,230 10/10/2018
5.0.0 729,792 10/8/2018
5.0.0-b21 2,382 10/5/2018
5.0.0-b20 1,685 10/5/2018
5.0.0-b19 2,286 9/24/2018
5.0.0-b18 3,762 9/3/2018
5.0.0-b17 1,830 8/29/2018
5.0.0-b16 1,777 8/27/2018
5.0.0-b15 9,346 8/5/2018
5.0.0-b14 6,324 6/22/2018
5.0.0-b13 2,200 6/22/2018
5.0.0-b12 3,030 5/28/2018
5.0.0-b11 2,374 5/23/2018
5.0.0-b10 2,790 5/1/2018
5.0.0-b09 2,107 4/27/2018
5.0.0-b08 2,345 3/26/2018
5.0.0-b07 2,270 3/26/2018
5.0.0-b06 2,905 3/21/2018
5.0.0-b05 4,528 2/26/2018
5.0.0-b04 2,300 2/26/2018
5.0.0-b03 2,559 2/6/2018
5.0.0-b02 6,127 1/10/2018
5.0.0-b01 3,526 1/3/2018
4.4.0 2,158 2/14/2023
4.3.0 42,991 11/23/2018
4.2.2 62,891 9/19/2018
4.2.1 903,656 12/14/2017
4.2.1-b1 2,084 12/14/2017
4.2.0 6,522 12/10/2017
4.2.0-b01 2,131 11/28/2017
4.1.0 4,278,437 10/26/2017
4.1.0-b5 2,146 9/25/2017
4.1.0-b4 3,047 9/7/2017
4.1.0-b3 2,452 9/4/2017
4.1.0-b2 2,092 8/29/2017
4.1.0-b1 2,804 8/28/2017
4.0.1 77,547 8/22/2017
4.0.0 5,786,320 8/15/2017
4.0.0-b24 2,124 8/15/2017
4.0.0-b23 2,756 8/15/2017
4.0.0-b22 2,681 8/15/2017
4.0.0-b20 51,874 8/9/2017
4.0.0-b19 11,889 7/31/2017
4.0.0-b18 2,042 7/31/2017
4.0.0-b17 3,643 7/25/2017
4.0.0-b16 4,036 6/29/2017
4.0.0-b15 2,397 6/26/2017
4.0.0-b14 4,997 6/20/2017
4.0.0-b12 3,618 6/12/2017
4.0.0-b11 3,554 5/28/2017
4.0.0-b10 10,855 5/18/2017
4.0.0-b09 6,248 5/15/2017
4.0.0-b08 2,137 5/4/2017
4.0.0-b07 2,292 5/1/2017
4.0.0-b06 6,899 4/5/2017
4.0.0-b05 10,168 3/21/2017
4.0.0-b04 3,304 3/21/2017
4.0.0-b03 2,668 3/21/2017
4.0.0-b02 2,189 3/21/2017
4.0.0-b01 10,149 3/21/2017
3.1.5 117,760 6/12/2017
3.1.4 12,726 5/28/2017
3.1.3 6,117 4/27/2017
3.1.2 61,058 3/9/2017
3.1.1 6,811 3/2/2017
3.1.0 4,443 2/28/2017
3.0.2 29,413 2/22/2017
3.0.1 20,571 1/5/2017
3.0.0 129,910 1/4/2017
3.0.0-beta06 2,689 1/4/2017
3.0.0-beta05 2,649 1/4/2017
3.0.0-beta04 3,720 12/20/2016
3.0.0-beta03 2,658 12/20/2016
3.0.0-beta02 2,704 12/20/2016
3.0.0-beta01 3,220 12/19/2016
2.1.6 10,617 11/28/2016
2.1.5 4,146 11/25/2016
2.1.4 4,250 11/24/2016
2.1.3 5,396 11/17/2016
2.1.1 4,325 11/15/2016
2.1.0 4,185 11/14/2016
2.0.2 5,488 11/7/2016
2.0.1 57,798 9/20/2016
2.0.0-b03 3,119 9/19/2016
2.0.0-b02 11,758 9/9/2016
2.0.0-b01 2,703 9/9/2016
2.0.0-a9 2,821 9/6/2016
2.0.0-a8 2,806 9/6/2016
2.0.0-a7 2,844 9/6/2016
2.0.0-a6 3,265 9/1/2016
2.0.0-a5 5,191 8/31/2016
2.0.0-a4 2,683 8/31/2016
2.0.0-a3 3,787 8/31/2016
2.0.0-a2 2,713 8/31/2016
2.0.0-a13 2,794 9/8/2016
2.0.0-a12 2,743 9/7/2016
2.0.0-a11 3,264 9/7/2016
2.0.0-a10 2,787 9/7/2016
0.99.74 20,097 8/29/2016
0.99.73 14,940 8/12/2016
0.99.72 12,832 8/4/2016
0.99.71 13,060 8/3/2016
0.99.70 12,980 7/29/2016
0.99.68 14,074 7/18/2016
0.99.67 13,743 7/1/2016
0.99.66 12,750 6/28/2016
0.99.65 12,579 6/23/2016
0.99.64 12,469 6/22/2016
0.99.63 13,054 6/21/2016
0.99.62 12,835 6/17/2016
0.99.61 12,631 6/17/2016
0.99.60 12,370 6/15/2016
0.99.59 13,184 6/3/2016
0.99.58 14,192 5/24/2016
0.99.57 12,819 5/22/2016
0.99.56 12,464 5/22/2016
0.99.55 13,164 5/16/2016
0.99.54 12,561 5/12/2016
0.99.53 12,476 5/12/2016
0.99.52 12,964 5/11/2016
0.99.51 12,854 5/9/2016
0.99.50 13,302 4/13/2016
0.99.48 12,857 4/6/2016
0.99.47 13,382 3/31/2016
0.99.46 12,029 3/30/2016
0.99.45 12,180 3/29/2016
0.99.44 12,590 3/26/2016
0.99.43 12,293 3/26/2016
0.99.42 15,653 3/22/2016
0.99.41 12,584 3/17/2016
0.99.40 12,256 3/15/2016
0.99.39 12,536 3/14/2016
0.99.38 12,478 3/9/2016
0.99.36 12,551 3/3/2016
0.99.35 12,607 2/22/2016
0.99.34 12,178 2/19/2016
0.99.33 12,773 2/12/2016
0.99.32 12,052 2/10/2016
0.99.31 11,802 2/8/2016
0.99.30 12,495 2/5/2016
0.99.29 13,475 2/2/2016
0.99.27 11,650 1/28/2016
0.99.26 11,440 1/27/2016
0.99.25 11,434 1/22/2016
0.99.24 12,168 1/18/2016
0.99.23 12,834 12/18/2015
0.99.22 11,207 12/18/2015
0.99.21 11,591 12/11/2015
0.99.20 11,150 12/10/2015
0.99.19 11,321 12/8/2015
0.99.18 11,066 12/7/2015
0.99.17 11,203 12/7/2015
0.99.16 11,559 11/30/2015
0.99.14 11,410 11/24/2015
0.99.13 11,421 11/23/2015
0.99.12 11,346 11/17/2015
0.99.11 10,811 11/17/2015
0.99.10 11,077 11/11/2015
0.99.9 15,828 11/5/2015
0.99.8 10,839 11/5/2015
0.99.7 10,978 10/29/2015
0.99.5 11,194 10/27/2015
0.99.4 10,891 10/27/2015
0.99.2 12,252 10/12/2015
0.99.1 10,932 10/8/2015
0.99.0 10,894 10/7/2015
0.98.12 11,483 9/17/2015
0.98.11 11,090 9/17/2015
0.98.10 10,892 9/16/2015
0.98.9 10,691 9/14/2015
0.98.8 10,892 9/13/2015
0.98.7 11,004 9/9/2015
0.98.6 11,075 9/7/2015
0.98.5 10,749 9/3/2015
0.98.4 10,701 9/3/2015
0.98.3 10,807 9/1/2015
0.98.2 10,978 8/27/2015
0.98.1 7,732 8/27/2015
0.98.0 10,742 8/26/2015
0.97.0 10,809 8/25/2015
0.96.0 10,777 8/24/2015
0.95.0 24,132 8/20/2015
0.92.4 10,840 8/17/2015
0.92.3 10,879 8/13/2015
0.92.2 12,073 8/12/2015
0.92.1 11,293 8/12/2015
0.92.0 11,063 8/11/2015
0.91.0 11,190 8/11/2015
0.90.9 3,578 8/10/2015
0.90.8 3,468 8/9/2015
0.90.7 3,580 8/5/2015
0.90.6 3,628 8/4/2015
0.90.5 3,574 8/4/2015
0.90.4 3,439 8/2/2015
0.90.3 3,404 8/2/2015
0.90.2 3,440 7/31/2015
0.90.1 3,420 7/29/2015
0.90.0 61,999 7/29/2015
0.84.0 141,680 5/15/2015
0.83.0 16,403 4/20/2015
0.82.1 9,889 4/16/2015
0.82.0 19,511 3/18/2015
0.81.0 10,452 3/12/2015
0.80.1 10,538 3/5/2015
0.80.0 11,361 2/19/2015
0.79.0 10,162 2/6/2015
0.78.2 9,736 2/6/2015
0.78.1 9,993 2/5/2015
0.78.0 10,352 1/29/2015
0.77.1 9,980 1/23/2015
0.77.0 9,839 1/15/2015
0.76.0 9,722 1/15/2015
0.75.2 10,324 1/3/2015
0.75.1 9,967 12/21/2014
0.75.0 13,233 12/2/2014
0.72.0 19,654 11/5/2014
0.71.4 10,238 10/29/2014
0.71.3 10,665 10/20/2014
0.71.2 17,735 9/30/2014
0.71.1 15,055 9/19/2014
0.71.0 24,167 8/7/2014
0.70.3 10,263 8/4/2014
0.70.2 9,979 7/31/2014
0.70.1 9,933 7/17/2014
0.69.0 13,933 6/17/2014
0.68.0 10,225 6/5/2014
0.67.0 11,674 5/20/2014
0.66.0 10,782 5/9/2014
0.65.0 9,804 4/27/2014
0.64.1 9,508 4/25/2014
0.64.0 9,555 4/20/2014
0.63.1 9,174 4/19/2014
0.63.0 9,794 3/24/2014
0.62.0 106,323 3/12/2014
0.61.1 9,425 3/5/2014
0.61.0 11,295 3/4/2014
0.60.1 9,339 3/3/2014
0.60.0 9,269 3/3/2014
0.59.0 9,283 2/26/2014
0.58.2 9,284 2/24/2014
0.58.1 9,224 2/24/2014
0.58.0 9,432 2/24/2014
0.57.0 10,789 2/18/2014
0.56.1 9,505 2/4/2014
0.56.0 12,116 1/24/2014
0.55.1 10,457 1/20/2014
0.55.0 10,427 1/20/2014
0.54.8 9,561 1/20/2014
0.54.7 10,289 1/20/2014
0.54.6 9,222 1/20/2014
0.54.5 9,386 1/20/2014
0.54.4 9,715 1/11/2014
0.54.3 7,591 1/8/2014
0.54.1 10,143 12/16/2013
0.54.0 9,295 12/10/2013
0.53.1 9,272 12/9/2013
0.53.0 9,578 12/5/2013
0.52.0 9,246 12/4/2013
0.51.1 9,235 12/3/2013
0.51.0 10,236 12/3/2013
0.50.1 9,399 11/15/2013
0.50.0 9,207 11/15/2013
0.49.0 9,422 11/15/2013
0.48.0 9,764 11/12/2013
0.47.0 9,621 11/6/2013
0.46.0 9,663 10/29/2013
0.45.0 13,683 10/21/2013
0.44.5 10,024 10/11/2013
0.44.4 9,480 10/7/2013
0.44.3 9,324 10/4/2013
0.44.2 9,392 10/4/2013
0.44.1 10,494 10/2/2013
0.44.0 9,398 10/2/2013
0.43.1 10,193 9/24/2013
0.43.0 9,530 9/17/2013
0.42.0 9,350 9/17/2013
0.41.0 10,278 9/10/2013
0.40.1 9,475 9/9/2013
0.40.0 9,584 9/2/2013
0.39.0 9,164 8/29/2013
0.38.1 9,352 8/28/2013
0.38.0 9,212 8/28/2013
0.37.0 9,327 8/26/2013
0.36.1 9,212 8/25/2013
0.36.0 10,418 8/25/2013
0.35.6 9,249 8/20/2013
0.35.5 9,200 8/20/2013
0.35.4 9,308 8/19/2013
0.35.3 9,349 8/17/2013
0.35.2 9,158 8/15/2013
0.35.1 9,233 8/14/2013
0.35.0 9,281 8/6/2013
0.34.7 9,062 8/5/2013
0.34.6 8,997 8/5/2013
0.34.5 9,103 8/2/2013
0.34.3 9,179 7/29/2013
0.34.2 9,034 7/29/2013
0.34.1 9,121 7/27/2013
0.34.0 9,377 7/4/2013
0.33.0 9,333 6/14/2013
0.32.5 8,445 6/2/2013
0.32.4 9,114 5/28/2013
0.32.3 9,155 5/23/2013
0.32.1 9,149 5/15/2013
0.32.0 9,118 4/23/2013
0.31.1 9,312 4/2/2013
0.31.0 9,066 4/2/2013
0.30.7 9,025 3/25/2013
0.30.4 9,379 3/7/2013
0.30.3 9,159 3/7/2013
0.30.2 9,161 3/7/2013
0.30.1 9,119 3/6/2013
0.30.0 8,975 3/5/2013
0.29.9 8,973 3/5/2013
0.29.8 9,007 3/5/2013
0.29.7 9,004 2/28/2013
0.29.6 9,048 2/20/2013
0.29.5 9,152 2/20/2013
0.29.4 9,386 2/8/2013
0.29.3 9,088 2/6/2013
0.29.2 3,464 2/6/2013
0.29.1 9,154 2/5/2013
0.29.0-alpha 5,136 1/22/2013
0.28.4 9,235 1/21/2013
0.28.3 9,189 1/8/2013
0.28.2 8,986 1/8/2013
0.28.1 9,014 12/27/2012
0.28.0 9,046 12/27/2012
0.27.1 9,171 12/4/2012
0.27.0 9,320 12/4/2012
0.26.1 9,094 12/4/2012
0.26.0 9,247 11/20/2012
0.25.9 9,306 11/20/2012
0.25.8 9,473 11/19/2012
0.25.7 9,436 11/18/2012
0.25.5 9,397 11/15/2012
0.25.3 9,343 11/13/2012
0.25.2 9,353 11/13/2012
0.25.1 9,322 11/13/2012
0.25.0 9,254 11/7/2012
0.24.9 9,235 11/7/2012
0.24.8 9,271 11/7/2012
0.24.7 9,090 11/6/2012
0.24.6 9,459 11/1/2012
0.24.5 9,500 10/30/2012
0.24.4 9,501 10/30/2012
0.24.3 9,209 10/26/2012
0.24.2 9,179 10/26/2012
0.24.1 9,379 10/26/2012
0.24.0 9,212 10/25/2012
0.23.9 9,227 10/25/2012
0.23.8 9,105 10/25/2012
0.23.7 9,276 10/25/2012
0.23.6 9,399 10/24/2012
0.23.1 9,687 10/12/2012
0.23.0 8,795 10/10/2012
0.22.8 8,773 10/10/2012
0.22.7 9,082 10/9/2012
0.22.6 9,011 10/9/2012
0.22.5 8,925 10/3/2012
0.22.4 8,954 10/2/2012
0.22.3 8,992 10/2/2012
0.22.2 8,827 9/30/2012
0.22.1 8,705 9/26/2012
0.22.0 8,556 9/26/2012
0.21.7 8,720 9/25/2012
0.21.6 8,747 9/25/2012
0.21.5 8,752 9/11/2012
0.21.4 8,797 9/10/2012
0.21.3 8,849 9/10/2012
0.21.2 8,841 9/10/2012
0.21.1 8,683 9/10/2012
0.21.0 8,867 9/7/2012
0.20.9 8,861 9/7/2012
0.20.8 8,814 9/6/2012
0.20.7 8,766 9/6/2012
0.20.6 8,809 9/6/2012
0.20.3 8,814 9/4/2012
0.20.2 8,954 9/4/2012
0.19.7 8,951 8/29/2012
0.19.6 8,732 8/28/2012
0.19.5 8,362 8/28/2012
0.19.4 8,427 8/28/2012
0.19.3 8,465 8/28/2012
0.19.2 8,611 8/28/2012
0.19.1 8,588 8/26/2012
0.18.6 8,456 8/23/2012
0.16.0 12,670 8/20/2012
0.15.9-alpha 5,177 8/14/2012
0.15.8-alpha 4,894 8/8/2012
0.15.7-alpha 4,947 8/8/2012
0.15.6-alpha 4,942 8/8/2012
0.15.5-alpha 2,851 8/8/2012
0.15.4-alpha 4,978 8/7/2012
0.15.3-alpha 4,926 8/7/2012
0.15.2-alpha 4,962 8/7/2012
0.15.1-alpha 5,059 8/2/2012
0.15.0-alpha 5,050 8/1/2012
0.14.0-alpha 4,846 7/30/2012
0.13.0-alpha 4,881 7/14/2012
0.12.9-alpha 4,976 6/18/2012
0.12.8-alpha 4,801 6/18/2012
0.12.7-alpha 4,879 6/13/2012
0.12.6-alpha 4,989 6/8/2012
0.12.5-alpha 4,920 6/5/2012
0.12.4-alpha 4,404 6/5/2012
0.12.3-alpha 4,329 6/1/2012
0.12.2-alpha 4,375 5/31/2012
0.12.1-alpha 4,310 5/30/2012
0.11.10-alpha 4,361 5/30/2012
0.11.9-alpha 4,291 5/30/2012
0.11.8-alpha 4,323 5/30/2012
0.11.7-alpha 4,409 5/30/2012
0.11.6-alpha 4,304 5/29/2012
0.11.5-alpha 4,381 5/22/2012
0.11.4-alpha 4,361 5/22/2012
0.11.3-alpha 3,691 5/15/2012
0.11.2-alpha 3,731 5/8/2012
0.11.1-alpha 3,796 5/8/2012
0.11.0-alpha 3,768 5/8/2012
0.10.9-alpha 3,830 4/10/2012
0.10.8-alpha 3,762 3/21/2012
0.10.7-alpha 3,769 3/20/2012
0.10.6-alpha 3,821 3/17/2012
0.10.5-alpha 3,555 3/16/2012
0.10.4-alpha 3,608 3/16/2012
0.10.3-alpha 3,798 3/15/2012
0.10.1-alpha 3,714 3/15/2012
0.9.1-alpha 3,474 2/25/2012