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 (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 48,410 10/19/2025
8.9.0-b03 270 10/6/2025
8.9.0-b02 267 10/6/2025
8.9.0-b01 179 10/6/2025
8.8.0 732,290 2/28/2025
8.7.1 3,147,822 11/27/2024
8.7.0 86,157 11/15/2024
8.6.1 267,680 10/13/2024
8.6.0 143,144 9/19/2024
8.5.0 15,152 9/16/2024
8.4.4 257,851 8/30/2024
8.4.3 353,134 6/12/2024
8.4.2 3,348,104 4/10/2024
8.4.1 69,270 4/4/2024
8.4.0 32,360 4/4/2024
8.3.0 1,319 4/4/2024
8.2.4 183,991 3/21/2024
8.2.2 4,439,802 1/22/2024
8.2.0-alpha01 1,013 1/2/2024
8.1.0 425,104 12/21/2023
8.0.3 108,640 12/13/2023
8.0.2 329,349 11/21/2023
8.0.1 6,766,550 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,764 3/31/2023
8.0.0-alpha08 317 3/31/2023
8.0.0-alpha07 291 3/31/2023
8.0.0-alpha06 304 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,770 8/23/2023
7.2.0 55,507 8/3/2023
7.1.1 4,847 8/2/2023
7.1.0 435,209 3/22/2023
7.0.0 1,092,226 12/21/2022
7.0.0-rc7 604 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,979 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,822 2/19/2022
7.0.0-b04 1,634 2/4/2022
7.0.0-b03 387 2/4/2022
7.0.0-b02 1,104 1/14/2022
7.0.0-b01 5,270 11/26/2021
6.7.0 238,062 12/15/2022
6.6.5 2,851,083 5/5/2022
6.6.4 146,673 4/4/2022
6.6.2 1,880,899 12/23/2021
6.6.1 1,307,813 7/30/2021
6.6.0 117,166 6/3/2021
6.5.5 580,858 3/8/2021
6.5.4 1,260 3/7/2021
6.5.3 61,396 2/25/2021
6.5.2 130,344 2/23/2021
6.4.2-b1 10,624 12/8/2020
6.4.1 1,857,471 9/20/2020
6.4.0 9,422 9/18/2020
6.3.1 463,305 6/12/2020
6.3.0 49,203 6/4/2020
6.2.1 531,065 4/24/2020
6.1.0 2,094,362 3/5/2020
6.0.1 28,665 3/2/2020
6.0.0 6,411,964 1/31/2020
6.0.0-b21 1,884 12/17/2019
6.0.0-b20 803 12/8/2019
6.0.0-b19 1,039 11/4/2019
6.0.0-b18 1,792 9/24/2019
6.0.0-b17 792 9/24/2019
6.0.0-b16 31,339 9/7/2019
6.0.0-b15 2,035 9/4/2019
6.0.0-b14 4,068 9/2/2019
6.0.0-b12 3,262 8/27/2019
6.0.0-b11 3,062 8/13/2019
6.0.0-b10 1,415 8/13/2019
6.0.0-b08 2,174 6/29/2019
6.0.0-b07 1,626 5/6/2019
6.0.0-b06 6,267 4/12/2019
6.0.0-b05 1,490 4/12/2019
6.0.0-b04 2,190 4/9/2019
6.0.0-b03 1,636 3/27/2019
5.4.1 685,540 12/17/2019
5.4.0 737,687 8/13/2019
5.3.1 344,668 5/6/2019
5.3.0 48,082 3/27/2019
5.3.0-b2 2,906 3/6/2019
5.3.0-b1 1,480 3/5/2019
5.2.1 500,505 12/14/2018
5.2.1-b1 1,590 12/14/2018
5.2.0 19,867 12/3/2018
5.1.0 1,756,435 11/23/2018
5.0.2 3,185 11/19/2018
5.0.1 633,465 10/10/2018
5.0.0 724,646 10/8/2018
5.0.0-b21 2,337 10/5/2018
5.0.0-b20 1,633 10/5/2018
5.0.0-b19 2,244 9/24/2018
5.0.0-b18 3,715 9/3/2018
5.0.0-b17 1,789 8/29/2018
5.0.0-b16 1,737 8/27/2018
5.0.0-b15 9,278 8/5/2018
5.0.0-b14 6,240 6/22/2018
5.0.0-b13 2,127 6/22/2018
5.0.0-b12 2,958 5/28/2018
5.0.0-b11 2,298 5/23/2018
5.0.0-b10 2,718 5/1/2018
5.0.0-b09 2,041 4/27/2018
5.0.0-b08 2,270 3/26/2018
5.0.0-b07 2,194 3/26/2018
5.0.0-b06 2,834 3/21/2018
5.0.0-b05 4,455 2/26/2018
5.0.0-b04 2,227 2/26/2018
5.0.0-b03 2,486 2/6/2018
5.0.0-b02 6,047 1/10/2018
5.0.0-b01 3,444 1/3/2018
4.4.0 1,330 2/14/2023
4.3.0 41,618 11/23/2018
4.2.2 62,045 9/19/2018
4.2.1 897,108 12/14/2017
4.2.1-b1 2,026 12/14/2017
4.2.0 5,701 12/10/2017
4.2.0-b01 2,073 11/28/2017
4.1.0 4,277,258 10/26/2017
4.1.0-b5 2,075 9/25/2017
4.1.0-b4 2,992 9/7/2017
4.1.0-b3 2,398 9/4/2017
4.1.0-b2 2,032 8/29/2017
4.1.0-b1 2,748 8/28/2017
4.0.1 76,596 8/22/2017
4.0.0 5,757,482 8/15/2017
4.0.0-b24 2,061 8/15/2017
4.0.0-b23 2,699 8/15/2017
4.0.0-b22 2,620 8/15/2017
4.0.0-b20 51,450 8/9/2017
4.0.0-b19 11,830 7/31/2017
4.0.0-b18 1,983 7/31/2017
4.0.0-b17 3,584 7/25/2017
4.0.0-b16 3,980 6/29/2017
4.0.0-b15 2,343 6/26/2017
4.0.0-b14 4,938 6/20/2017
4.0.0-b12 3,557 6/12/2017
4.0.0-b11 3,499 5/28/2017
4.0.0-b10 10,798 5/18/2017
4.0.0-b09 6,195 5/15/2017
4.0.0-b08 2,072 5/4/2017
4.0.0-b07 2,226 5/1/2017
4.0.0-b06 6,836 4/5/2017
4.0.0-b05 10,107 3/21/2017
4.0.0-b04 3,236 3/21/2017
4.0.0-b03 2,607 3/21/2017
4.0.0-b02 2,132 3/21/2017
4.0.0-b01 10,075 3/21/2017
3.1.5 113,906 6/12/2017
3.1.4 11,931 5/28/2017
3.1.3 5,319 4/27/2017
3.1.2 60,254 3/9/2017
3.1.1 6,019 3/2/2017
3.1.0 3,647 2/28/2017
3.0.2 28,623 2/22/2017
3.0.1 19,282 1/5/2017
3.0.0 126,254 1/4/2017
3.0.0-beta06 2,628 1/4/2017
3.0.0-beta05 2,592 1/4/2017
3.0.0-beta04 3,667 12/20/2016
3.0.0-beta03 2,606 12/20/2016
3.0.0-beta02 2,646 12/20/2016
3.0.0-beta01 3,173 12/19/2016
2.1.6 9,520 11/28/2016
2.1.5 3,351 11/25/2016
2.1.4 3,458 11/24/2016
2.1.3 4,590 11/17/2016
2.1.1 3,532 11/15/2016
2.1.0 3,399 11/14/2016
2.0.2 4,691 11/7/2016
2.0.1 54,902 9/20/2016
2.0.0-b03 3,066 9/19/2016
2.0.0-b02 11,700 9/9/2016
2.0.0-b01 2,642 9/9/2016
2.0.0-a9 2,766 9/6/2016
2.0.0-a8 2,747 9/6/2016
2.0.0-a7 2,783 9/6/2016
2.0.0-a6 3,210 9/1/2016
2.0.0-a5 5,124 8/31/2016
2.0.0-a4 2,625 8/31/2016
2.0.0-a3 3,724 8/31/2016
2.0.0-a2 2,653 8/31/2016
2.0.0-a13 2,732 9/8/2016
2.0.0-a12 2,680 9/7/2016
2.0.0-a11 3,205 9/7/2016
2.0.0-a10 2,725 9/7/2016
0.99.74 19,204 8/29/2016
0.99.73 14,138 8/12/2016
0.99.72 12,031 8/4/2016
0.99.71 12,265 8/3/2016
0.99.70 12,181 7/29/2016
0.99.68 13,280 7/18/2016
0.99.67 12,901 7/1/2016
0.99.66 11,957 6/28/2016
0.99.65 11,783 6/23/2016
0.99.64 11,673 6/22/2016
0.99.63 12,262 6/21/2016
0.99.62 12,037 6/17/2016
0.99.61 11,818 6/17/2016
0.99.60 11,574 6/15/2016
0.99.59 12,388 6/3/2016
0.99.58 13,379 5/24/2016
0.99.57 12,029 5/22/2016
0.99.56 11,667 5/22/2016
0.99.55 12,371 5/16/2016
0.99.54 11,762 5/12/2016
0.99.53 11,687 5/12/2016
0.99.52 12,170 5/11/2016
0.99.51 12,054 5/9/2016
0.99.50 12,511 4/13/2016
0.99.48 12,066 4/6/2016
0.99.47 12,592 3/31/2016
0.99.46 11,240 3/30/2016
0.99.45 11,383 3/29/2016
0.99.44 11,791 3/26/2016
0.99.43 11,497 3/26/2016
0.99.42 14,859 3/22/2016
0.99.41 11,791 3/17/2016
0.99.40 11,466 3/15/2016
0.99.39 11,744 3/14/2016
0.99.38 11,681 3/9/2016
0.99.36 11,762 3/3/2016
0.99.35 11,813 2/22/2016
0.99.34 11,389 2/19/2016
0.99.33 11,961 2/12/2016
0.99.32 11,256 2/10/2016
0.99.31 11,007 2/8/2016
0.99.30 11,703 2/5/2016
0.99.29 12,681 2/2/2016
0.99.27 10,857 1/28/2016
0.99.26 10,649 1/27/2016
0.99.25 10,643 1/22/2016
0.99.24 11,376 1/18/2016
0.99.23 12,032 12/18/2015
0.99.22 10,400 12/18/2015
0.99.21 10,783 12/11/2015
0.99.20 10,354 12/10/2015
0.99.19 10,521 12/8/2015
0.99.18 10,273 12/7/2015
0.99.17 10,409 12/7/2015
0.99.16 10,755 11/30/2015
0.99.14 10,613 11/24/2015
0.99.13 10,630 11/23/2015
0.99.12 10,547 11/17/2015
0.99.11 10,021 11/17/2015
0.99.10 10,276 11/11/2015
0.99.9 14,964 11/5/2015
0.99.8 10,041 11/5/2015
0.99.7 10,177 10/29/2015
0.99.5 10,399 10/27/2015
0.99.4 10,098 10/27/2015
0.99.2 11,457 10/12/2015
0.99.1 10,132 10/8/2015
0.99.0 10,095 10/7/2015
0.98.12 10,682 9/17/2015
0.98.11 10,287 9/17/2015
0.98.10 10,085 9/16/2015
0.98.9 9,906 9/14/2015
0.98.8 10,096 9/13/2015
0.98.7 10,211 9/9/2015
0.98.6 10,262 9/7/2015
0.98.5 9,958 9/3/2015
0.98.4 9,907 9/3/2015
0.98.3 10,004 9/1/2015
0.98.2 10,180 8/27/2015
0.98.1 6,936 8/27/2015
0.98.0 9,945 8/26/2015
0.97.0 10,014 8/25/2015
0.96.0 9,977 8/24/2015
0.95.0 23,336 8/20/2015
0.92.4 10,047 8/17/2015
0.92.3 10,083 8/13/2015
0.92.2 11,264 8/12/2015
0.92.1 10,487 8/12/2015
0.92.0 10,270 8/11/2015
0.91.0 10,389 8/11/2015
0.90.9 2,786 8/10/2015
0.90.8 2,679 8/9/2015
0.90.7 2,786 8/5/2015
0.90.6 2,835 8/4/2015
0.90.5 2,783 8/4/2015
0.90.4 2,650 8/2/2015
0.90.3 2,611 8/2/2015
0.90.2 2,641 7/31/2015
0.90.1 2,630 7/29/2015
0.90.0 61,198 7/29/2015
0.84.0 138,359 5/15/2015
0.83.0 14,708 4/20/2015
0.82.1 9,099 4/16/2015
0.82.0 18,715 3/18/2015
0.81.0 9,661 3/12/2015
0.80.1 9,749 3/5/2015
0.80.0 10,564 2/19/2015
0.79.0 9,374 2/6/2015
0.78.2 8,943 2/6/2015
0.78.1 9,198 2/5/2015
0.78.0 9,561 1/29/2015
0.77.1 9,160 1/23/2015
0.77.0 9,041 1/15/2015
0.76.0 8,928 1/15/2015
0.75.2 9,521 1/3/2015
0.75.1 9,179 12/21/2014
0.75.0 12,417 12/2/2014
0.72.0 18,858 11/5/2014
0.71.4 9,443 10/29/2014
0.71.3 9,854 10/20/2014
0.71.2 16,852 9/30/2014
0.71.1 14,259 9/19/2014
0.71.0 22,428 8/7/2014
0.70.3 9,473 8/4/2014
0.70.2 9,162 7/31/2014
0.70.1 9,147 7/17/2014
0.69.0 13,143 6/17/2014
0.68.0 9,434 6/5/2014
0.67.0 10,834 5/20/2014
0.66.0 9,812 5/9/2014
0.65.0 9,003 4/27/2014
0.64.1 8,713 4/25/2014
0.64.0 8,767 4/20/2014
0.63.1 8,384 4/19/2014
0.63.0 9,002 3/24/2014
0.62.0 104,620 3/12/2014
0.61.1 8,632 3/5/2014
0.61.0 10,503 3/4/2014
0.60.1 8,548 3/3/2014
0.60.0 8,469 3/3/2014
0.59.0 8,491 2/26/2014
0.58.2 8,480 2/24/2014
0.58.1 8,424 2/24/2014
0.58.0 8,635 2/24/2014
0.57.0 9,996 2/18/2014
0.56.1 8,717 2/4/2014
0.56.0 11,320 1/24/2014
0.55.1 9,655 1/20/2014
0.55.0 9,622 1/20/2014
0.54.8 8,758 1/20/2014
0.54.7 9,499 1/20/2014
0.54.6 8,434 1/20/2014
0.54.5 8,593 1/20/2014
0.54.4 8,923 1/11/2014
0.54.3 6,792 1/8/2014
0.54.1 9,339 12/16/2013
0.54.0 8,501 12/10/2013
0.53.1 8,479 12/9/2013
0.53.0 8,786 12/5/2013
0.52.0 8,458 12/4/2013
0.51.1 8,440 12/3/2013
0.51.0 9,444 12/3/2013
0.50.1 8,606 11/15/2013
0.50.0 8,413 11/15/2013
0.49.0 8,621 11/15/2013
0.48.0 8,957 11/12/2013
0.47.0 8,834 11/6/2013
0.46.0 8,855 10/29/2013
0.45.0 12,889 10/21/2013
0.44.5 9,235 10/11/2013
0.44.4 8,688 10/7/2013
0.44.3 8,536 10/4/2013
0.44.2 8,599 10/4/2013
0.44.1 9,703 10/2/2013
0.44.0 8,602 10/2/2013
0.43.1 9,404 9/24/2013
0.43.0 8,736 9/17/2013
0.42.0 8,556 9/17/2013
0.41.0 9,487 9/10/2013
0.40.1 8,681 9/9/2013
0.40.0 8,791 9/2/2013
0.39.0 8,374 8/29/2013
0.38.1 8,560 8/28/2013
0.38.0 8,422 8/28/2013
0.37.0 8,533 8/26/2013
0.36.1 8,425 8/25/2013
0.36.0 9,628 8/25/2013
0.35.6 8,457 8/20/2013
0.35.5 8,410 8/20/2013
0.35.4 8,521 8/19/2013
0.35.3 8,563 8/17/2013
0.35.2 8,363 8/15/2013
0.35.1 8,446 8/14/2013
0.35.0 8,483 8/6/2013
0.34.7 8,266 8/5/2013
0.34.6 8,202 8/5/2013
0.34.5 8,311 8/2/2013
0.34.3 8,393 7/29/2013
0.34.2 8,250 7/29/2013
0.34.1 8,330 7/27/2013
0.34.0 8,583 7/4/2013
0.33.0 8,539 6/14/2013
0.32.5 7,651 6/2/2013
0.32.4 8,325 5/28/2013
0.32.3 8,359 5/23/2013
0.32.1 8,357 5/15/2013
0.32.0 8,327 4/23/2013
0.31.1 8,510 4/2/2013
0.31.0 8,274 4/2/2013
0.30.7 8,232 3/25/2013
0.30.4 8,587 3/7/2013
0.30.3 8,360 3/7/2013
0.30.2 8,371 3/7/2013
0.30.1 8,322 3/6/2013
0.30.0 8,181 3/5/2013
0.29.9 8,180 3/5/2013
0.29.8 8,213 3/5/2013
0.29.7 8,211 2/28/2013
0.29.6 8,256 2/20/2013
0.29.5 8,362 2/20/2013
0.29.4 8,595 2/8/2013
0.29.3 8,297 2/6/2013
0.29.2 2,669 2/6/2013
0.29.1 8,356 2/5/2013
0.29.0-alpha 5,077 1/22/2013
0.28.4 8,448 1/21/2013
0.28.3 8,400 1/8/2013
0.28.2 8,192 1/8/2013
0.28.1 8,221 12/27/2012
0.28.0 8,252 12/27/2012
0.27.1 8,375 12/4/2012
0.27.0 8,521 12/4/2012
0.26.1 8,299 12/4/2012
0.26.0 8,457 11/20/2012
0.25.9 8,515 11/20/2012
0.25.8 8,682 11/19/2012
0.25.7 8,645 11/18/2012
0.25.5 8,606 11/15/2012
0.25.3 8,551 11/13/2012
0.25.2 8,554 11/13/2012
0.25.1 8,529 11/13/2012
0.25.0 8,458 11/7/2012
0.24.9 8,444 11/7/2012
0.24.8 8,473 11/7/2012
0.24.7 8,295 11/6/2012
0.24.6 8,673 11/1/2012
0.24.5 8,711 10/30/2012
0.24.4 8,709 10/30/2012
0.24.3 8,418 10/26/2012
0.24.2 8,369 10/26/2012
0.24.1 8,591 10/26/2012
0.24.0 8,427 10/25/2012
0.23.9 8,439 10/25/2012
0.23.8 8,313 10/25/2012
0.23.7 8,470 10/25/2012
0.23.6 8,606 10/24/2012
0.23.1 8,737 10/12/2012
0.23.0 7,998 10/10/2012
0.22.8 7,983 10/10/2012
0.22.7 8,289 10/9/2012
0.22.6 8,227 10/9/2012
0.22.5 8,140 10/3/2012
0.22.4 8,149 10/2/2012
0.22.3 8,198 10/2/2012
0.22.2 8,039 9/30/2012
0.22.1 7,914 9/26/2012
0.22.0 7,768 9/26/2012
0.21.7 7,932 9/25/2012
0.21.6 7,956 9/25/2012
0.21.5 7,963 9/11/2012
0.21.4 7,992 9/10/2012
0.21.3 8,052 9/10/2012
0.21.2 8,041 9/10/2012
0.21.1 7,879 9/10/2012
0.21.0 8,075 9/7/2012
0.20.9 8,069 9/7/2012
0.20.8 8,023 9/6/2012
0.20.7 7,968 9/6/2012
0.20.6 8,022 9/6/2012
0.20.3 8,026 9/4/2012
0.20.2 8,161 9/4/2012
0.19.7 8,165 8/29/2012
0.19.6 7,932 8/28/2012
0.19.5 7,558 8/28/2012
0.19.4 7,623 8/28/2012
0.19.3 7,677 8/28/2012
0.19.2 7,817 8/28/2012
0.19.1 7,794 8/26/2012
0.18.6 7,654 8/23/2012
0.16.0 11,498 8/20/2012
0.15.9-alpha 5,116 8/14/2012
0.15.8-alpha 4,833 8/8/2012
0.15.7-alpha 4,889 8/8/2012
0.15.6-alpha 4,882 8/8/2012
0.15.5-alpha 2,799 8/8/2012
0.15.4-alpha 4,926 8/7/2012
0.15.3-alpha 4,871 8/7/2012
0.15.2-alpha 4,903 8/7/2012
0.15.1-alpha 4,992 8/2/2012
0.15.0-alpha 5,002 8/1/2012
0.14.0-alpha 4,789 7/30/2012
0.13.0-alpha 4,822 7/14/2012
0.12.9-alpha 4,920 6/18/2012
0.12.8-alpha 4,747 6/18/2012
0.12.7-alpha 4,814 6/13/2012
0.12.6-alpha 4,931 6/8/2012
0.12.5-alpha 4,863 6/5/2012
0.12.4-alpha 4,342 6/5/2012
0.12.3-alpha 4,267 6/1/2012
0.12.2-alpha 4,314 5/31/2012
0.12.1-alpha 4,258 5/30/2012
0.11.10-alpha 4,307 5/30/2012
0.11.9-alpha 4,243 5/30/2012
0.11.8-alpha 4,270 5/30/2012
0.11.7-alpha 4,348 5/30/2012
0.11.6-alpha 4,245 5/29/2012
0.11.5-alpha 4,312 5/22/2012
0.11.4-alpha 4,303 5/22/2012
0.11.3-alpha 3,622 5/15/2012
0.11.2-alpha 3,673 5/8/2012
0.11.1-alpha 3,732 5/8/2012
0.11.0-alpha 3,707 5/8/2012
0.10.9-alpha 3,773 4/10/2012
0.10.8-alpha 3,711 3/21/2012
0.10.7-alpha 3,714 3/20/2012
0.10.6-alpha 3,764 3/17/2012
0.10.5-alpha 3,503 3/16/2012
0.10.4-alpha 3,544 3/16/2012
0.10.3-alpha 3,742 3/15/2012
0.10.1-alpha 3,663 3/15/2012
0.9.1-alpha 3,417 2/25/2012