Rebus 8.8.0

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

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
Simply making crash-resilient code simple
rebus-org/RebusSamples
Small sample projects
Version Downloads Last Updated
8.8.0 422,575 2/28/2025
8.7.1 2,663,439 11/27/2024
8.7.0 69,733 11/15/2024
8.6.1 215,512 10/13/2024
8.6.0 130,106 9/19/2024
8.5.0 11,400 9/16/2024
8.4.4 212,108 8/30/2024
8.4.3 332,715 6/12/2024
8.4.2 3,009,290 4/10/2024
8.4.1 66,808 4/4/2024
8.4.0 28,346 4/4/2024
8.3.0 1,189 4/4/2024
8.2.4 182,150 3/21/2024
8.2.2 4,125,374 1/22/2024
8.2.0-alpha01 951 1/2/2024
8.1.0 386,748 12/21/2023
8.0.3 107,854 12/13/2023
8.0.2 294,515 11/21/2023
8.0.1 6,172,579 11/15/2023
8.0.0-alpha11 3,926 8/3/2023
8.0.0-alpha10 3,205 8/2/2023
8.0.0-alpha09 16,065 3/31/2023
8.0.0-alpha08 281 3/31/2023
8.0.0-alpha07 247 3/31/2023
8.0.0-alpha06 263 3/31/2023
8.0.0-alpha05 757 3/31/2023
8.0.0-alpha04 792 3/30/2023
8.0.0-alpha03 247 3/30/2023
8.0.0-alpha02 765 3/30/2023
8.0.0-alpha01 8,200 3/27/2023
7.2.1 268,227 8/23/2023
7.2.0 50,263 8/3/2023
7.1.1 4,817 8/2/2023
7.1.0 422,157 3/22/2023
7.0.0 1,054,668 12/21/2022
7.0.0-rc7 533 12/15/2022
7.0.0-rc6 547 11/17/2022
7.0.0-rc5 340 11/16/2022
7.0.0-rc4 10,461 9/3/2022
7.0.0-rc2 17,379 6/2/2022
7.0.0-rc1 6,734 5/5/2022
7.0.0-b06 1,005 4/4/2022
7.0.0-b05 6,647 2/19/2022
7.0.0-b04 1,562 2/4/2022
7.0.0-b03 340 2/4/2022
7.0.0-b02 1,063 1/14/2022
7.0.0-b01 5,043 11/26/2021
6.7.0 235,239 12/15/2022
6.6.5 2,737,322 5/5/2022
6.6.4 141,344 4/4/2022
6.6.2 1,830,951 12/23/2021
6.6.1 1,258,466 7/30/2021
6.6.0 116,233 6/3/2021
6.5.5 565,895 3/8/2021
6.5.4 1,207 3/7/2021
6.5.3 59,381 2/25/2021
6.5.2 129,496 2/23/2021
6.4.2-b1 10,570 12/8/2020
6.4.1 1,777,666 9/20/2020
6.4.0 8,976 9/18/2020
6.3.1 451,472 6/12/2020
6.3.0 49,127 6/4/2020
6.2.1 506,000 4/24/2020
6.1.0 2,041,337 3/5/2020
6.0.1 28,418 3/2/2020
6.0.0 6,200,795 1/31/2020
6.0.0-b21 1,754 12/17/2019
6.0.0-b20 746 12/8/2019
6.0.0-b19 989 11/4/2019
6.0.0-b18 1,736 9/24/2019
6.0.0-b17 752 9/24/2019
6.0.0-b16 31,061 9/7/2019
6.0.0-b15 1,949 9/4/2019
6.0.0-b14 4,010 9/2/2019
6.0.0-b12 3,194 8/27/2019
6.0.0-b11 2,918 8/13/2019
6.0.0-b10 1,359 8/13/2019
6.0.0-b08 2,134 6/29/2019
6.0.0-b07 1,566 5/6/2019
6.0.0-b06 6,066 4/12/2019
6.0.0-b05 1,430 4/12/2019
6.0.0-b04 2,095 4/9/2019
6.0.0-b03 1,595 3/27/2019
5.4.1 670,282 12/17/2019
5.4.0 725,007 8/13/2019
5.3.1 343,558 5/6/2019
5.3.0 47,481 3/27/2019
5.3.0-b2 2,852 3/6/2019
5.3.0-b1 1,435 3/5/2019
5.2.1 488,969 12/14/2018
5.2.1-b1 1,533 12/14/2018
5.2.0 19,795 12/3/2018
5.1.0 1,754,640 11/23/2018
5.0.2 3,127 11/19/2018
5.0.1 628,761 10/10/2018
5.0.0 718,639 10/8/2018
5.0.0-b21 2,276 10/5/2018
5.0.0-b20 1,576 10/5/2018
5.0.0-b19 2,188 9/24/2018
5.0.0-b18 3,645 9/3/2018
5.0.0-b17 1,744 8/29/2018
5.0.0-b16 1,684 8/27/2018
5.0.0-b15 9,216 8/5/2018
5.0.0-b14 5,954 6/22/2018
5.0.0-b13 2,038 6/22/2018
5.0.0-b12 2,858 5/28/2018
5.0.0-b11 2,206 5/23/2018
5.0.0-b10 2,623 5/1/2018
5.0.0-b09 1,956 4/27/2018
5.0.0-b08 2,166 3/26/2018
5.0.0-b07 2,086 3/26/2018
5.0.0-b06 2,714 3/21/2018
5.0.0-b05 4,363 2/26/2018
5.0.0-b04 2,126 2/26/2018
5.0.0-b03 2,388 2/6/2018
5.0.0-b02 5,867 1/10/2018
5.0.0-b01 3,260 1/3/2018
4.4.0 1,256 2/14/2023
4.3.0 40,818 11/23/2018
4.2.2 61,150 9/19/2018
4.2.1 881,349 12/14/2017
4.2.1-b1 1,956 12/14/2017
4.2.0 5,508 12/10/2017
4.2.0-b01 1,991 11/28/2017
4.1.0 4,252,846 10/26/2017
4.1.0-b5 2,002 9/25/2017
4.1.0-b4 2,910 9/7/2017
4.1.0-b3 2,318 9/4/2017
4.1.0-b2 1,944 8/29/2017
4.1.0-b1 2,617 8/28/2017
4.0.1 74,688 8/22/2017
4.0.0 5,700,694 8/15/2017
4.0.0-b24 1,981 8/15/2017
4.0.0-b23 2,594 8/15/2017
4.0.0-b22 2,507 8/15/2017
4.0.0-b20 51,203 8/9/2017
4.0.0-b19 11,713 7/31/2017
4.0.0-b18 1,906 7/31/2017
4.0.0-b17 3,435 7/25/2017
4.0.0-b16 3,805 6/29/2017
4.0.0-b15 2,235 6/26/2017
4.0.0-b14 4,659 6/20/2017
4.0.0-b12 3,356 6/12/2017
4.0.0-b11 3,364 5/28/2017
4.0.0-b10 10,068 5/18/2017
4.0.0-b09 5,706 5/15/2017
4.0.0-b08 1,993 5/4/2017
4.0.0-b07 2,116 5/1/2017
4.0.0-b06 6,514 4/5/2017
4.0.0-b05 9,250 3/21/2017
4.0.0-b04 3,009 3/21/2017
4.0.0-b03 2,486 3/21/2017
4.0.0-b02 2,043 3/21/2017
4.0.0-b01 9,206 3/21/2017
3.1.5 113,133 6/12/2017
3.1.4 11,805 5/28/2017
3.1.3 5,198 4/27/2017
3.1.2 59,909 3/9/2017
3.1.1 5,891 3/2/2017
3.1.0 3,533 2/28/2017
3.0.2 28,497 2/22/2017
3.0.1 18,769 1/5/2017
3.0.0 123,445 1/4/2017
3.0.0-beta06 2,514 1/4/2017
3.0.0-beta05 2,479 1/4/2017
3.0.0-beta04 3,523 12/20/2016
3.0.0-beta03 2,481 12/20/2016
3.0.0-beta02 2,530 12/20/2016
3.0.0-beta01 3,029 12/19/2016
2.1.6 9,080 11/28/2016
2.1.5 3,236 11/25/2016
2.1.4 3,336 11/24/2016
2.1.3 4,482 11/17/2016
2.1.1 3,392 11/15/2016
2.1.0 3,286 11/14/2016
2.0.2 4,619 11/7/2016
2.0.1 52,692 9/20/2016
2.0.0-b03 2,957 9/19/2016
2.0.0-b02 10,917 9/9/2016
2.0.0-b01 2,549 9/9/2016
2.0.0-a9 2,642 9/6/2016
2.0.0-a8 2,628 9/6/2016
2.0.0-a7 2,651 9/6/2016
2.0.0-a6 3,080 9/1/2016
2.0.0-a5 4,913 8/31/2016
2.0.0-a4 2,528 8/31/2016
2.0.0-a3 3,585 8/31/2016
2.0.0-a2 2,562 8/31/2016
2.0.0-a13 2,616 9/8/2016
2.0.0-a12 2,571 9/7/2016
2.0.0-a11 3,077 9/7/2016
2.0.0-a10 2,598 9/7/2016
0.99.74 18,372 8/29/2016
0.99.73 13,559 8/12/2016
0.99.72 11,515 8/4/2016
0.99.71 11,693 8/3/2016
0.99.70 11,636 7/29/2016
0.99.68 12,639 7/18/2016
0.99.67 12,319 7/1/2016
0.99.66 11,430 6/28/2016
0.99.65 11,230 6/23/2016
0.99.64 11,129 6/22/2016
0.99.63 11,754 6/21/2016
0.99.62 11,521 6/17/2016
0.99.61 11,270 6/17/2016
0.99.60 11,060 6/15/2016
0.99.59 11,888 6/3/2016
0.99.58 12,823 5/24/2016
0.99.57 11,508 5/22/2016
0.99.56 11,147 5/22/2016
0.99.55 11,846 5/16/2016
0.99.54 11,219 5/12/2016
0.99.53 11,177 5/12/2016
0.99.52 11,641 5/11/2016
0.99.51 11,538 5/9/2016
0.99.50 11,998 4/13/2016
0.99.48 11,544 4/6/2016
0.99.47 12,081 3/31/2016
0.99.46 10,741 3/30/2016
0.99.45 10,890 3/29/2016
0.99.44 11,270 3/26/2016
0.99.43 10,968 3/26/2016
0.99.42 14,245 3/22/2016
0.99.41 11,278 3/17/2016
0.99.40 10,928 3/15/2016
0.99.39 11,228 3/14/2016
0.99.38 11,156 3/9/2016
0.99.36 11,252 3/3/2016
0.99.35 11,311 2/22/2016
0.99.34 10,922 2/19/2016
0.99.33 11,460 2/12/2016
0.99.32 10,779 2/10/2016
0.99.31 10,577 2/8/2016
0.99.30 11,238 2/5/2016
0.99.29 12,122 2/2/2016
0.99.27 10,398 1/28/2016
0.99.26 10,162 1/27/2016
0.99.25 10,223 1/22/2016
0.99.24 10,961 1/18/2016
0.99.23 11,635 12/18/2015
0.99.22 9,994 12/18/2015
0.99.21 10,375 12/11/2015
0.99.20 9,956 12/10/2015
0.99.19 10,110 12/8/2015
0.99.18 9,855 12/7/2015
0.99.17 9,956 12/7/2015
0.99.16 10,327 11/30/2015
0.99.14 10,189 11/24/2015
0.99.13 10,203 11/23/2015
0.99.12 10,172 11/17/2015
0.99.11 9,629 11/17/2015
0.99.10 9,914 11/11/2015
0.99.9 14,531 11/5/2015
0.99.8 9,687 11/5/2015
0.99.7 9,794 10/29/2015
0.99.5 10,034 10/27/2015
0.99.4 9,735 10/27/2015
0.99.2 11,084 10/12/2015
0.99.1 9,758 10/8/2015
0.99.0 9,704 10/7/2015
0.98.12 10,316 9/17/2015
0.98.11 9,948 9/17/2015
0.98.10 9,701 9/16/2015
0.98.9 9,553 9/14/2015
0.98.8 9,724 9/13/2015
0.98.7 9,810 9/9/2015
0.98.6 9,891 9/7/2015
0.98.5 9,607 9/3/2015
0.98.4 9,550 9/3/2015
0.98.3 9,640 9/1/2015
0.98.2 9,816 8/27/2015
0.98.1 6,724 8/27/2015
0.98.0 9,555 8/26/2015
0.97.0 9,627 8/25/2015
0.96.0 9,602 8/24/2015
0.95.0 22,418 8/20/2015
0.92.4 9,666 8/17/2015
0.92.3 9,716 8/13/2015
0.92.2 10,847 8/12/2015
0.92.1 10,089 8/12/2015
0.92.0 9,932 8/11/2015
0.91.0 10,040 8/11/2015
0.90.9 2,705 8/10/2015
0.90.8 2,597 8/9/2015
0.90.7 2,704 8/5/2015
0.90.6 2,752 8/4/2015
0.90.5 2,705 8/4/2015
0.90.4 2,575 8/2/2015
0.90.3 2,522 8/2/2015
0.90.2 2,554 7/31/2015
0.90.1 2,562 7/29/2015
0.90.0 58,650 7/29/2015
0.84.0 131,207 5/15/2015
0.83.0 14,185 4/20/2015
0.82.1 8,759 4/16/2015
0.82.0 18,383 3/18/2015
0.81.0 9,301 3/12/2015
0.80.1 9,399 3/5/2015
0.80.0 10,197 2/19/2015
0.79.0 9,020 2/6/2015
0.78.2 8,602 2/6/2015
0.78.1 8,844 2/5/2015
0.78.0 9,228 1/29/2015
0.77.1 8,814 1/23/2015
0.77.0 8,709 1/15/2015
0.76.0 8,569 1/15/2015
0.75.2 9,182 1/3/2015
0.75.1 8,848 12/21/2014
0.75.0 12,028 12/2/2014
0.72.0 18,538 11/5/2014
0.71.4 9,091 10/29/2014
0.71.3 9,502 10/20/2014
0.71.2 16,312 9/30/2014
0.71.1 13,645 9/19/2014
0.71.0 22,022 8/7/2014
0.70.3 9,109 8/4/2014
0.70.2 8,759 7/31/2014
0.70.1 8,799 7/17/2014
0.69.0 12,776 6/17/2014
0.68.0 9,037 6/5/2014
0.67.0 10,458 5/20/2014
0.66.0 9,234 5/9/2014
0.65.0 8,658 4/27/2014
0.64.1 8,394 4/25/2014
0.64.0 8,471 4/20/2014
0.63.1 8,104 4/19/2014
0.63.0 8,692 3/24/2014
0.62.0 103,513 3/12/2014
0.61.1 8,328 3/5/2014
0.61.0 10,194 3/4/2014
0.60.1 8,246 3/3/2014
0.60.0 8,169 3/3/2014
0.59.0 8,161 2/26/2014
0.58.2 8,167 2/24/2014
0.58.1 8,102 2/24/2014
0.58.0 8,310 2/24/2014
0.57.0 9,658 2/18/2014
0.56.1 8,397 2/4/2014
0.56.0 10,999 1/24/2014
0.55.1 9,321 1/20/2014
0.55.0 9,308 1/20/2014
0.54.8 8,447 1/20/2014
0.54.7 9,199 1/20/2014
0.54.6 8,118 1/20/2014
0.54.5 8,296 1/20/2014
0.54.4 8,610 1/11/2014
0.54.3 6,518 1/8/2014
0.54.1 9,031 12/16/2013
0.54.0 8,178 12/10/2013
0.53.1 8,169 12/9/2013
0.53.0 8,477 12/5/2013
0.52.0 8,137 12/4/2013
0.51.1 8,120 12/3/2013
0.51.0 9,148 12/3/2013
0.50.1 8,287 11/15/2013
0.50.0 8,111 11/15/2013
0.49.0 8,326 11/15/2013
0.48.0 8,641 11/12/2013
0.47.0 8,524 11/6/2013
0.46.0 8,539 10/29/2013
0.45.0 12,552 10/21/2013
0.44.5 8,900 10/11/2013
0.44.4 8,361 10/7/2013
0.44.3 8,232 10/4/2013
0.44.2 8,275 10/4/2013
0.44.1 9,368 10/2/2013
0.44.0 8,263 10/2/2013
0.43.1 9,112 9/24/2013
0.43.0 8,429 9/17/2013
0.42.0 8,233 9/17/2013
0.41.0 9,171 9/10/2013
0.40.1 8,357 9/9/2013
0.40.0 8,474 9/2/2013
0.39.0 8,040 8/29/2013
0.38.1 8,262 8/28/2013
0.38.0 8,120 8/28/2013
0.37.0 8,208 8/26/2013
0.36.1 8,122 8/25/2013
0.36.0 9,310 8/25/2013
0.35.6 8,151 8/20/2013
0.35.5 8,100 8/20/2013
0.35.4 8,220 8/19/2013
0.35.3 8,252 8/17/2013
0.35.2 8,055 8/15/2013
0.35.1 8,137 8/14/2013
0.35.0 8,190 8/6/2013
0.34.7 7,984 8/5/2013
0.34.6 7,905 8/5/2013
0.34.5 8,017 8/2/2013
0.34.3 8,085 7/29/2013
0.34.2 7,965 7/29/2013
0.34.1 8,043 7/27/2013
0.34.0 8,297 7/4/2013
0.33.0 8,254 6/14/2013
0.32.5 7,372 6/2/2013
0.32.4 8,061 5/28/2013
0.32.3 8,086 5/23/2013
0.32.1 8,054 5/15/2013
0.32.0 8,020 4/23/2013
0.31.1 8,235 4/2/2013
0.31.0 8,012 4/2/2013
0.30.7 7,929 3/25/2013
0.30.4 8,300 3/7/2013
0.30.3 8,052 3/7/2013
0.30.2 8,083 3/7/2013
0.30.1 8,033 3/6/2013
0.30.0 7,892 3/5/2013
0.29.9 7,892 3/5/2013
0.29.8 7,917 3/5/2013
0.29.7 7,920 2/28/2013
0.29.6 7,953 2/20/2013
0.29.5 8,054 2/20/2013
0.29.4 8,295 2/8/2013
0.29.3 8,017 2/6/2013
0.29.2 2,579 2/6/2013
0.29.1 8,069 2/5/2013
0.29.0-alpha 4,787 1/22/2013
0.28.4 8,166 1/21/2013
0.28.3 8,098 1/8/2013
0.28.2 7,912 1/8/2013
0.28.1 7,923 12/27/2012
0.28.0 7,973 12/27/2012
0.27.1 8,089 12/4/2012
0.27.0 8,206 12/4/2012
0.26.1 7,993 12/4/2012
0.26.0 8,162 11/20/2012
0.25.9 8,222 11/20/2012
0.25.8 8,391 11/19/2012
0.25.7 8,344 11/18/2012
0.25.5 8,301 11/15/2012
0.25.3 8,253 11/13/2012
0.25.2 8,259 11/13/2012
0.25.1 8,219 11/13/2012
0.25.0 8,148 11/7/2012
0.24.9 8,144 11/7/2012
0.24.8 8,157 11/7/2012
0.24.7 7,984 11/6/2012
0.24.6 8,366 11/1/2012
0.24.5 8,409 10/30/2012
0.24.4 8,404 10/30/2012
0.24.3 8,108 10/26/2012
0.24.2 8,082 10/26/2012
0.24.1 8,295 10/26/2012
0.24.0 8,134 10/25/2012
0.23.9 8,134 10/25/2012
0.23.8 8,015 10/25/2012
0.23.7 8,190 10/25/2012
0.23.6 8,318 10/24/2012
0.23.1 8,237 10/12/2012
0.23.0 7,734 10/10/2012
0.22.8 7,731 10/10/2012
0.22.7 7,990 10/9/2012
0.22.6 7,947 10/9/2012
0.22.5 7,859 10/3/2012
0.22.4 7,872 10/2/2012
0.22.3 7,892 10/2/2012
0.22.2 7,778 9/30/2012
0.22.1 7,638 9/26/2012
0.22.0 7,480 9/26/2012
0.21.7 7,647 9/25/2012
0.21.6 7,688 9/25/2012
0.21.5 7,675 9/11/2012
0.21.4 7,745 9/10/2012
0.21.3 7,777 9/10/2012
0.21.2 7,757 9/10/2012
0.21.1 7,596 9/10/2012
0.21.0 7,799 9/7/2012
0.20.9 7,791 9/7/2012
0.20.8 7,759 9/6/2012
0.20.7 7,691 9/6/2012
0.20.6 7,746 9/6/2012
0.20.3 7,746 9/4/2012
0.20.2 7,880 9/4/2012
0.19.7 7,891 8/29/2012
0.19.6 7,647 8/28/2012
0.19.5 7,310 8/28/2012
0.19.4 7,360 8/28/2012
0.19.3 7,408 8/28/2012
0.19.2 7,545 8/28/2012
0.19.1 7,518 8/26/2012
0.18.6 7,410 8/23/2012
0.16.0 10,542 8/20/2012
0.15.9-alpha 4,847 8/14/2012
0.15.8-alpha 4,587 8/8/2012
0.15.7-alpha 4,641 8/8/2012
0.15.6-alpha 4,634 8/8/2012
0.15.5-alpha 2,682 8/8/2012
0.15.4-alpha 4,681 8/7/2012
0.15.3-alpha 4,623 8/7/2012
0.15.2-alpha 4,654 8/7/2012
0.15.1-alpha 4,745 8/2/2012
0.15.0-alpha 4,757 8/1/2012
0.14.0-alpha 4,559 7/30/2012
0.13.0-alpha 4,584 7/14/2012
0.12.9-alpha 4,683 6/18/2012
0.12.8-alpha 4,528 6/18/2012
0.12.7-alpha 4,571 6/13/2012
0.12.6-alpha 4,681 6/8/2012
0.12.5-alpha 4,630 6/5/2012
0.12.4-alpha 4,122 6/5/2012
0.12.3-alpha 4,070 6/1/2012
0.12.2-alpha 4,145 5/31/2012
0.12.1-alpha 4,051 5/30/2012
0.11.10-alpha 4,088 5/30/2012
0.11.9-alpha 4,022 5/30/2012
0.11.8-alpha 4,080 5/30/2012
0.11.7-alpha 4,154 5/30/2012
0.11.6-alpha 4,044 5/29/2012
0.11.5-alpha 4,107 5/22/2012
0.11.4-alpha 4,096 5/22/2012
0.11.3-alpha 3,438 5/15/2012
0.11.2-alpha 3,481 5/8/2012
0.11.1-alpha 3,537 5/8/2012
0.11.0-alpha 3,515 5/8/2012
0.10.9-alpha 3,596 4/10/2012
0.10.8-alpha 3,528 3/21/2012
0.10.7-alpha 3,531 3/20/2012
0.10.6-alpha 3,574 3/17/2012
0.10.5-alpha 3,377 3/16/2012
0.10.4-alpha 3,393 3/16/2012
0.10.3-alpha 3,565 3/15/2012
0.10.1-alpha 3,494 3/15/2012
0.9.1-alpha 3,267 2/25/2012