Rebus 8.9.0-b01

This is a prerelease version of Rebus.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Rebus --version 8.9.0-b01
                    
NuGet\Install-Package Rebus -Version 8.9.0-b01
                    
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-b01" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rebus" Version="8.9.0-b01" />
                    
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-b01
                    
#r "nuget: Rebus, 8.9.0-b01"
                    
#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-b01
                    
#: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-b01&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Rebus&version=8.9.0-b01&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 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 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 (148)

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.Log4net

Log4net-based logging integration 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
MyTelegram is telegram server side api implementation written in c#
stidsborg/Cleipnir.NET
Surviving crashes in plain C#-code
rebus-org/RebusSamples
Small sample projects
Version Downloads Last Updated
8.9.0-b03 246 10/6/2025
8.9.0-b02 190 10/6/2025
8.9.0-b01 162 10/6/2025
8.8.0 568,566 2/28/2025
8.7.1 2,898,579 11/27/2024
8.7.0 76,754 11/15/2024
8.6.1 240,014 10/13/2024
8.6.0 136,963 9/19/2024
8.5.0 12,984 9/16/2024
8.4.4 235,341 8/30/2024
8.4.3 341,980 6/12/2024
8.4.2 3,140,834 4/10/2024
8.4.1 67,735 4/4/2024
8.4.0 29,987 4/4/2024
8.3.0 1,262 4/4/2024
8.2.4 182,729 3/21/2024
8.2.2 4,256,393 1/22/2024
8.2.0-alpha01 1,001 1/2/2024
8.1.0 409,079 12/21/2023
8.0.3 108,343 12/13/2023
8.0.2 310,325 11/21/2023
8.0.1 6,442,025 11/15/2023
8.0.0-alpha11 4,093 8/3/2023
8.0.0-alpha10 3,354 8/2/2023
8.0.0-alpha09 16,611 3/31/2023
8.0.0-alpha08 304 3/31/2023
8.0.0-alpha07 275 3/31/2023
8.0.0-alpha06 286 3/31/2023
8.0.0-alpha05 804 3/31/2023
8.0.0-alpha04 842 3/30/2023
8.0.0-alpha03 276 3/30/2023
8.0.0-alpha02 809 3/30/2023
8.0.0-alpha01 8,937 3/27/2023
7.2.1 273,916 8/23/2023
7.2.0 51,934 8/3/2023
7.1.1 4,831 8/2/2023
7.1.0 431,474 3/22/2023
7.0.0 1,077,838 12/21/2022
7.0.0-rc7 565 12/15/2022
7.0.0-rc6 571 11/17/2022
7.0.0-rc5 370 11/16/2022
7.0.0-rc4 10,585 9/3/2022
7.0.0-rc2 17,630 6/2/2022
7.0.0-rc1 6,853 5/5/2022
7.0.0-b06 1,037 4/4/2022
7.0.0-b05 6,754 2/19/2022
7.0.0-b04 1,610 2/4/2022
7.0.0-b03 366 2/4/2022
7.0.0-b02 1,084 1/14/2022
7.0.0-b01 5,241 11/26/2021
6.7.0 236,690 12/15/2022
6.6.5 2,800,235 5/5/2022
6.6.4 143,917 4/4/2022
6.6.2 1,868,934 12/23/2021
6.6.1 1,284,863 7/30/2021
6.6.0 116,922 6/3/2021
6.5.5 576,077 3/8/2021
6.5.4 1,236 3/7/2021
6.5.3 60,200 2/25/2021
6.5.2 129,846 2/23/2021
6.4.2-b1 10,599 12/8/2020
6.4.1 1,822,732 9/20/2020
6.4.0 9,334 9/18/2020
6.3.1 459,555 6/12/2020
6.3.0 49,164 6/4/2020
6.2.1 517,609 4/24/2020
6.1.0 2,078,977 3/5/2020
6.0.1 28,587 3/2/2020
6.0.0 6,330,283 1/31/2020
6.0.0-b21 1,859 12/17/2019
6.0.0-b20 776 12/8/2019
6.0.0-b19 1,008 11/4/2019
6.0.0-b18 1,762 9/24/2019
6.0.0-b17 766 9/24/2019
6.0.0-b16 31,308 9/7/2019
6.0.0-b15 2,010 9/4/2019
6.0.0-b14 4,038 9/2/2019
6.0.0-b12 3,237 8/27/2019
6.0.0-b11 3,034 8/13/2019
6.0.0-b10 1,386 8/13/2019
6.0.0-b08 2,146 6/29/2019
6.0.0-b07 1,594 5/6/2019
6.0.0-b06 6,240 4/12/2019
6.0.0-b05 1,459 4/12/2019
6.0.0-b04 2,162 4/9/2019
6.0.0-b03 1,608 3/27/2019
5.4.1 681,665 12/17/2019
5.4.0 734,572 8/13/2019
5.3.1 344,348 5/6/2019
5.3.0 47,853 3/27/2019
5.3.0-b2 2,880 3/6/2019
5.3.0-b1 1,452 3/5/2019
5.2.1 497,542 12/14/2018
5.2.1-b1 1,564 12/14/2018
5.2.0 19,844 12/3/2018
5.1.0 1,755,874 11/23/2018
5.0.2 3,159 11/19/2018
5.0.1 631,173 10/10/2018
5.0.0 722,143 10/8/2018
5.0.0-b21 2,310 10/5/2018
5.0.0-b20 1,606 10/5/2018
5.0.0-b19 2,216 9/24/2018
5.0.0-b18 3,689 9/3/2018
5.0.0-b17 1,762 8/29/2018
5.0.0-b16 1,711 8/27/2018
5.0.0-b15 9,236 8/5/2018
5.0.0-b14 6,122 6/22/2018
5.0.0-b13 2,069 6/22/2018
5.0.0-b12 2,889 5/28/2018
5.0.0-b11 2,233 5/23/2018
5.0.0-b10 2,659 5/1/2018
5.0.0-b09 1,998 4/27/2018
5.0.0-b08 2,213 3/26/2018
5.0.0-b07 2,133 3/26/2018
5.0.0-b06 2,774 3/21/2018
5.0.0-b05 4,389 2/26/2018
5.0.0-b04 2,170 2/26/2018
5.0.0-b03 2,428 2/6/2018
5.0.0-b02 5,984 1/10/2018
5.0.0-b01 3,387 1/3/2018
4.4.0 1,287 2/14/2023
4.3.0 41,226 11/23/2018
4.2.2 61,648 9/19/2018
4.2.1 892,859 12/14/2017
4.2.1-b1 1,979 12/14/2017
4.2.0 5,640 12/10/2017
4.2.0-b01 2,030 11/28/2017
4.1.0 4,277,057 10/26/2017
4.1.0-b5 2,031 9/25/2017
4.1.0-b4 2,950 9/7/2017
4.1.0-b3 2,356 9/4/2017
4.1.0-b2 1,986 8/29/2017
4.1.0-b1 2,691 8/28/2017
4.0.1 76,088 8/22/2017
4.0.0 5,743,581 8/15/2017
4.0.0-b24 2,013 8/15/2017
4.0.0-b23 2,655 8/15/2017
4.0.0-b22 2,574 8/15/2017
4.0.0-b20 51,346 8/9/2017
4.0.0-b19 11,788 7/31/2017
4.0.0-b18 1,942 7/31/2017
4.0.0-b17 3,544 7/25/2017
4.0.0-b16 3,934 6/29/2017
4.0.0-b15 2,300 6/26/2017
4.0.0-b14 4,895 6/20/2017
4.0.0-b12 3,469 6/12/2017
4.0.0-b11 3,457 5/28/2017
4.0.0-b10 10,738 5/18/2017
4.0.0-b09 6,093 5/15/2017
4.0.0-b08 2,031 5/4/2017
4.0.0-b07 2,183 5/1/2017
4.0.0-b06 6,797 4/5/2017
4.0.0-b05 9,985 3/21/2017
4.0.0-b04 3,164 3/21/2017
4.0.0-b03 2,564 3/21/2017
4.0.0-b02 2,090 3/21/2017
4.0.0-b01 9,996 3/21/2017
3.1.5 113,526 6/12/2017
3.1.4 11,885 5/28/2017
3.1.3 5,275 4/27/2017
3.1.2 60,205 3/9/2017
3.1.1 5,980 3/2/2017
3.1.0 3,599 2/28/2017
3.0.2 28,581 2/22/2017
3.0.1 18,980 1/5/2017
3.0.0 124,966 1/4/2017
3.0.0-beta06 2,580 1/4/2017
3.0.0-beta05 2,544 1/4/2017
3.0.0-beta04 3,625 12/20/2016
3.0.0-beta03 2,559 12/20/2016
3.0.0-beta02 2,601 12/20/2016
3.0.0-beta01 3,131 12/19/2016
2.1.6 9,394 11/28/2016
2.1.5 3,307 11/25/2016
2.1.4 3,410 11/24/2016
2.1.3 4,544 11/17/2016
2.1.1 3,488 11/15/2016
2.1.0 3,357 11/14/2016
2.0.2 4,644 11/7/2016
2.0.1 54,168 9/20/2016
2.0.0-b03 3,019 9/19/2016
2.0.0-b02 11,632 9/9/2016
2.0.0-b01 2,597 9/9/2016
2.0.0-a9 2,725 9/6/2016
2.0.0-a8 2,702 9/6/2016
2.0.0-a7 2,737 9/6/2016
2.0.0-a6 3,163 9/1/2016
2.0.0-a5 5,071 8/31/2016
2.0.0-a4 2,580 8/31/2016
2.0.0-a3 3,681 8/31/2016
2.0.0-a2 2,612 8/31/2016
2.0.0-a13 2,690 9/8/2016
2.0.0-a12 2,638 9/7/2016
2.0.0-a11 3,164 9/7/2016
2.0.0-a10 2,682 9/7/2016
0.99.74 19,095 8/29/2016
0.99.73 14,092 8/12/2016
0.99.72 11,981 8/4/2016
0.99.71 12,216 8/3/2016
0.99.70 12,137 7/29/2016
0.99.68 13,233 7/18/2016
0.99.67 12,834 7/1/2016
0.99.66 11,909 6/28/2016
0.99.65 11,727 6/23/2016
0.99.64 11,621 6/22/2016
0.99.63 12,220 6/21/2016
0.99.62 11,996 6/17/2016
0.99.61 11,764 6/17/2016
0.99.60 11,523 6/15/2016
0.99.59 12,348 6/3/2016
0.99.58 13,325 5/24/2016
0.99.57 11,971 5/22/2016
0.99.56 11,612 5/22/2016
0.99.55 12,311 5/16/2016
0.99.54 11,714 5/12/2016
0.99.53 11,633 5/12/2016
0.99.52 12,120 5/11/2016
0.99.51 12,012 5/9/2016
0.99.50 12,450 4/13/2016
0.99.48 12,020 4/6/2016
0.99.47 12,535 3/31/2016
0.99.46 11,193 3/30/2016
0.99.45 11,337 3/29/2016
0.99.44 11,736 3/26/2016
0.99.43 11,454 3/26/2016
0.99.42 14,814 3/22/2016
0.99.41 11,741 3/17/2016
0.99.40 11,418 3/15/2016
0.99.39 11,678 3/14/2016
0.99.38 11,626 3/9/2016
0.99.36 11,713 3/3/2016
0.99.35 11,772 2/22/2016
0.99.34 11,337 2/19/2016
0.99.33 11,896 2/12/2016
0.99.32 11,200 2/10/2016
0.99.31 10,963 2/8/2016
0.99.30 11,661 2/5/2016
0.99.29 12,632 2/2/2016
0.99.27 10,803 1/28/2016
0.99.26 10,605 1/27/2016
0.99.25 10,584 1/22/2016
0.99.24 11,338 1/18/2016
0.99.23 11,990 12/18/2015
0.99.22 10,358 12/18/2015
0.99.21 10,725 12/11/2015
0.99.20 10,312 12/10/2015
0.99.19 10,473 12/8/2015
0.99.18 10,230 12/7/2015
0.99.17 10,364 12/7/2015
0.99.16 10,712 11/30/2015
0.99.14 10,558 11/24/2015
0.99.13 10,577 11/23/2015
0.99.12 10,487 11/17/2015
0.99.11 9,964 11/17/2015
0.99.10 10,218 11/11/2015
0.99.9 14,903 11/5/2015
0.99.8 9,999 11/5/2015
0.99.7 10,122 10/29/2015
0.99.5 10,348 10/27/2015
0.99.4 10,046 10/27/2015
0.99.2 11,414 10/12/2015
0.99.1 10,077 10/8/2015
0.99.0 10,052 10/7/2015
0.98.12 10,637 9/17/2015
0.98.11 10,239 9/17/2015
0.98.10 10,008 9/16/2015
0.98.9 9,864 9/14/2015
0.98.8 10,047 9/13/2015
0.98.7 10,164 9/9/2015
0.98.6 10,198 9/7/2015
0.98.5 9,913 9/3/2015
0.98.4 9,860 9/3/2015
0.98.3 9,950 9/1/2015
0.98.2 10,136 8/27/2015
0.98.1 6,892 8/27/2015
0.98.0 9,890 8/26/2015
0.97.0 9,972 8/25/2015
0.96.0 9,933 8/24/2015
0.95.0 23,259 8/20/2015
0.92.4 10,007 8/17/2015
0.92.3 10,040 8/13/2015
0.92.2 11,181 8/12/2015
0.92.1 10,435 8/12/2015
0.92.0 10,230 8/11/2015
0.91.0 10,344 8/11/2015
0.90.9 2,740 8/10/2015
0.90.8 2,637 8/9/2015
0.90.7 2,743 8/5/2015
0.90.6 2,789 8/4/2015
0.90.5 2,741 8/4/2015
0.90.4 2,610 8/2/2015
0.90.3 2,561 8/2/2015
0.90.2 2,596 7/31/2015
0.90.1 2,590 7/29/2015
0.90.0 61,114 7/29/2015
0.84.0 136,822 5/15/2015
0.83.0 14,652 4/20/2015
0.82.1 9,055 4/16/2015
0.82.0 18,661 3/18/2015
0.81.0 9,609 3/12/2015
0.80.1 9,702 3/5/2015
0.80.0 10,519 2/19/2015
0.79.0 9,320 2/6/2015
0.78.2 8,890 2/6/2015
0.78.1 9,157 2/5/2015
0.78.0 9,511 1/29/2015
0.77.1 9,119 1/23/2015
0.77.0 8,989 1/15/2015
0.76.0 8,884 1/15/2015
0.75.2 9,474 1/3/2015
0.75.1 9,124 12/21/2014
0.75.0 12,344 12/2/2014
0.72.0 18,804 11/5/2014
0.71.4 9,392 10/29/2014
0.71.3 9,808 10/20/2014
0.71.2 16,651 9/30/2014
0.71.1 14,216 9/19/2014
0.71.0 22,342 8/7/2014
0.70.3 9,417 8/4/2014
0.70.2 9,068 7/31/2014
0.70.1 9,094 7/17/2014
0.69.0 13,097 6/17/2014
0.68.0 9,382 6/5/2014
0.67.0 10,757 5/20/2014
0.66.0 9,636 5/9/2014
0.65.0 8,932 4/27/2014
0.64.1 8,648 4/25/2014
0.64.0 8,716 4/20/2014
0.63.1 8,341 4/19/2014
0.63.0 8,947 3/24/2014
0.62.0 104,134 3/12/2014
0.61.1 8,579 3/5/2014
0.61.0 10,459 3/4/2014
0.60.1 8,501 3/3/2014
0.60.0 8,428 3/3/2014
0.59.0 8,435 2/26/2014
0.58.2 8,442 2/24/2014
0.58.1 8,380 2/24/2014
0.58.0 8,581 2/24/2014
0.57.0 9,949 2/18/2014
0.56.1 8,671 2/4/2014
0.56.0 11,272 1/24/2014
0.55.1 9,599 1/20/2014
0.55.0 9,568 1/20/2014
0.54.8 8,710 1/20/2014
0.54.7 9,442 1/20/2014
0.54.6 8,386 1/20/2014
0.54.5 8,547 1/20/2014
0.54.4 8,874 1/11/2014
0.54.3 6,725 1/8/2014
0.54.1 9,294 12/16/2013
0.54.0 8,454 12/10/2013
0.53.1 8,432 12/9/2013
0.53.0 8,729 12/5/2013
0.52.0 8,411 12/4/2013
0.51.1 8,386 12/3/2013
0.51.0 9,399 12/3/2013
0.50.1 8,550 11/15/2013
0.50.0 8,368 11/15/2013
0.49.0 8,563 11/15/2013
0.48.0 8,910 11/12/2013
0.47.0 8,788 11/6/2013
0.46.0 8,806 10/29/2013
0.45.0 12,825 10/21/2013
0.44.5 9,186 10/11/2013
0.44.4 8,643 10/7/2013
0.44.3 8,491 10/4/2013
0.44.2 8,551 10/4/2013
0.44.1 9,642 10/2/2013
0.44.0 8,552 10/2/2013
0.43.1 9,355 9/24/2013
0.43.0 8,689 9/17/2013
0.42.0 8,505 9/17/2013
0.41.0 9,443 9/10/2013
0.40.1 8,632 9/9/2013
0.40.0 8,746 9/2/2013
0.39.0 8,317 8/29/2013
0.38.1 8,518 8/28/2013
0.38.0 8,378 8/28/2013
0.37.0 8,483 8/26/2013
0.36.1 8,365 8/25/2013
0.36.0 9,578 8/25/2013
0.35.6 8,406 8/20/2013
0.35.5 8,366 8/20/2013
0.35.4 8,468 8/19/2013
0.35.3 8,509 8/17/2013
0.35.2 8,316 8/15/2013
0.35.1 8,397 8/14/2013
0.35.0 8,428 8/6/2013
0.34.7 8,223 8/5/2013
0.34.6 8,153 8/5/2013
0.34.5 8,251 8/2/2013
0.34.3 8,335 7/29/2013
0.34.2 8,203 7/29/2013
0.34.1 8,287 7/27/2013
0.34.0 8,535 7/4/2013
0.33.0 8,488 6/14/2013
0.32.5 7,596 6/2/2013
0.32.4 8,280 5/28/2013
0.32.3 8,302 5/23/2013
0.32.1 8,299 5/15/2013
0.32.0 8,277 4/23/2013
0.31.1 8,464 4/2/2013
0.31.0 8,225 4/2/2013
0.30.7 8,185 3/25/2013
0.30.4 8,529 3/7/2013
0.30.3 8,306 3/7/2013
0.30.2 8,318 3/7/2013
0.30.1 8,277 3/6/2013
0.30.0 8,122 3/5/2013
0.29.9 8,133 3/5/2013
0.29.8 8,167 3/5/2013
0.29.7 8,164 2/28/2013
0.29.6 8,206 2/20/2013
0.29.5 8,294 2/20/2013
0.29.4 8,547 2/8/2013
0.29.3 8,242 2/6/2013
0.29.2 2,623 2/6/2013
0.29.1 8,304 2/5/2013
0.29.0-alpha 5,029 1/22/2013
0.28.4 8,403 1/21/2013
0.28.3 8,355 1/8/2013
0.28.2 8,145 1/8/2013
0.28.1 8,173 12/27/2012
0.28.0 8,198 12/27/2012
0.27.1 8,325 12/4/2012
0.27.0 8,472 12/4/2012
0.26.1 8,244 12/4/2012
0.26.0 8,410 11/20/2012
0.25.9 8,459 11/20/2012
0.25.8 8,624 11/19/2012
0.25.7 8,600 11/18/2012
0.25.5 8,558 11/15/2012
0.25.3 8,496 11/13/2012
0.25.2 8,498 11/13/2012
0.25.1 8,473 11/13/2012
0.25.0 8,411 11/7/2012
0.24.9 8,393 11/7/2012
0.24.8 8,405 11/7/2012
0.24.7 8,246 11/6/2012
0.24.6 8,621 11/1/2012
0.24.5 8,661 10/30/2012
0.24.4 8,662 10/30/2012
0.24.3 8,357 10/26/2012
0.24.2 8,310 10/26/2012
0.24.1 8,534 10/26/2012
0.24.0 8,370 10/25/2012
0.23.9 8,394 10/25/2012
0.23.8 8,270 10/25/2012
0.23.7 8,411 10/25/2012
0.23.6 8,549 10/24/2012
0.23.1 8,567 10/12/2012
0.23.0 7,936 10/10/2012
0.22.8 7,911 10/10/2012
0.22.7 8,228 10/9/2012
0.22.6 8,181 10/9/2012
0.22.5 8,092 10/3/2012
0.22.4 8,103 10/2/2012
0.22.3 8,138 10/2/2012
0.22.2 7,994 9/30/2012
0.22.1 7,858 9/26/2012
0.22.0 7,706 9/26/2012
0.21.7 7,870 9/25/2012
0.21.6 7,901 9/25/2012
0.21.5 7,913 9/11/2012
0.21.4 7,932 9/10/2012
0.21.3 8,009 9/10/2012
0.21.2 7,976 9/10/2012
0.21.1 7,831 9/10/2012
0.21.0 8,005 9/7/2012
0.20.9 8,014 9/7/2012
0.20.8 7,962 9/6/2012
0.20.7 7,916 9/6/2012
0.20.6 7,970 9/6/2012
0.20.3 7,969 9/4/2012
0.20.2 8,112 9/4/2012
0.19.7 8,109 8/29/2012
0.19.6 7,865 8/28/2012
0.19.5 7,496 8/28/2012
0.19.4 7,556 8/28/2012
0.19.3 7,627 8/28/2012
0.19.2 7,757 8/28/2012
0.19.1 7,736 8/26/2012
0.18.6 7,607 8/23/2012
0.16.0 11,136 8/20/2012
0.15.9-alpha 5,055 8/14/2012
0.15.8-alpha 4,771 8/8/2012
0.15.7-alpha 4,828 8/8/2012
0.15.6-alpha 4,820 8/8/2012
0.15.5-alpha 2,742 8/8/2012
0.15.4-alpha 4,877 8/7/2012
0.15.3-alpha 4,823 8/7/2012
0.15.2-alpha 4,855 8/7/2012
0.15.1-alpha 4,943 8/2/2012
0.15.0-alpha 4,941 8/1/2012
0.14.0-alpha 4,740 7/30/2012
0.13.0-alpha 4,772 7/14/2012
0.12.9-alpha 4,873 6/18/2012
0.12.8-alpha 4,690 6/18/2012
0.12.7-alpha 4,762 6/13/2012
0.12.6-alpha 4,874 6/8/2012
0.12.5-alpha 4,812 6/5/2012
0.12.4-alpha 4,284 6/5/2012
0.12.3-alpha 4,215 6/1/2012
0.12.2-alpha 4,269 5/31/2012
0.12.1-alpha 4,209 5/30/2012
0.11.10-alpha 4,254 5/30/2012
0.11.9-alpha 4,193 5/30/2012
0.11.8-alpha 4,208 5/30/2012
0.11.7-alpha 4,300 5/30/2012
0.11.6-alpha 4,195 5/29/2012
0.11.5-alpha 4,256 5/22/2012
0.11.4-alpha 4,243 5/22/2012
0.11.3-alpha 3,573 5/15/2012
0.11.2-alpha 3,623 5/8/2012
0.11.1-alpha 3,682 5/8/2012
0.11.0-alpha 3,652 5/8/2012
0.10.9-alpha 3,723 4/10/2012
0.10.8-alpha 3,664 3/21/2012
0.10.7-alpha 3,666 3/20/2012
0.10.6-alpha 3,711 3/17/2012
0.10.5-alpha 3,449 3/16/2012
0.10.4-alpha 3,490 3/16/2012
0.10.3-alpha 3,676 3/15/2012
0.10.1-alpha 3,608 3/15/2012
0.9.1-alpha 3,364 2/25/2012