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 (146)

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
stidsborg/Cleipnir.NET
Simply making crash-resilient code simple
rebus-org/RebusSamples
Small sample projects
loyldg/mytelegram
MyTelegram is telegram server side api implementation written in c#
Version Downloads Last Updated
8.8.0 213,398 2/28/2025
8.7.1 2,179,508 11/27/2024
8.7.0 60,145 11/15/2024
8.6.1 181,661 10/13/2024
8.6.0 122,964 9/19/2024
8.5.0 9,979 9/16/2024
8.4.4 177,386 8/30/2024
8.4.3 317,744 6/12/2024
8.4.2 2,878,904 4/10/2024
8.4.1 63,034 4/4/2024
8.4.0 25,268 4/4/2024
8.3.0 1,079 4/4/2024
8.2.4 181,400 3/21/2024
8.2.2 3,898,177 1/22/2024
8.2.0-alpha01 929 1/2/2024
8.1.0 358,288 12/21/2023
8.0.3 105,615 12/13/2023
8.0.2 271,604 11/21/2023
8.0.1 5,715,921 11/15/2023
8.0.0-alpha11 3,890 8/3/2023
8.0.0-alpha10 3,169 8/2/2023
8.0.0-alpha09 15,839 3/31/2023
8.0.0-alpha08 240 3/31/2023
8.0.0-alpha07 211 3/31/2023
8.0.0-alpha06 223 3/31/2023
8.0.0-alpha05 717 3/31/2023
8.0.0-alpha04 752 3/30/2023
8.0.0-alpha03 210 3/30/2023
8.0.0-alpha02 729 3/30/2023
8.0.0-alpha01 8,131 3/27/2023
7.2.1 258,073 8/23/2023
7.2.0 49,499 8/3/2023
7.1.1 4,777 8/2/2023
7.1.0 416,910 3/22/2023
7.0.0 1,036,077 12/21/2022
7.0.0-rc7 486 12/15/2022
7.0.0-rc6 513 11/17/2022
7.0.0-rc5 300 11/16/2022
7.0.0-rc4 10,409 9/3/2022
7.0.0-rc2 17,119 6/2/2022
7.0.0-rc1 6,514 5/5/2022
7.0.0-b06 966 4/4/2022
7.0.0-b05 6,415 2/19/2022
7.0.0-b04 1,508 2/4/2022
7.0.0-b03 299 2/4/2022
7.0.0-b02 1,023 1/14/2022
7.0.0-b01 4,958 11/26/2021
6.7.0 233,495 12/15/2022
6.6.5 2,673,591 5/5/2022
6.6.4 138,089 4/4/2022
6.6.2 1,816,612 12/23/2021
6.6.1 1,228,624 7/30/2021
6.6.0 115,904 6/3/2021
6.5.5 561,993 3/8/2021
6.5.4 1,163 3/7/2021
6.5.3 58,846 2/25/2021
6.5.2 129,139 2/23/2021
6.4.2-b1 10,517 12/8/2020
6.4.1 1,731,069 9/20/2020
6.4.0 8,929 9/18/2020
6.3.1 448,209 6/12/2020
6.3.0 49,059 6/4/2020
6.2.1 487,275 4/24/2020
6.1.0 2,022,686 3/5/2020
6.0.1 28,349 3/2/2020
6.0.0 6,107,811 1/31/2020
6.0.0-b21 1,712 12/17/2019
6.0.0-b20 705 12/8/2019
6.0.0-b19 943 11/4/2019
6.0.0-b18 1,695 9/24/2019
6.0.0-b17 708 9/24/2019
6.0.0-b16 31,015 9/7/2019
6.0.0-b15 1,905 9/4/2019
6.0.0-b14 3,965 9/2/2019
6.0.0-b12 2,833 8/27/2019
6.0.0-b11 2,875 8/13/2019
6.0.0-b10 1,319 8/13/2019
6.0.0-b08 2,094 6/29/2019
6.0.0-b07 1,521 5/6/2019
6.0.0-b06 5,708 4/12/2019
6.0.0-b05 1,385 4/12/2019
6.0.0-b04 2,055 4/9/2019
6.0.0-b03 1,549 3/27/2019
5.4.1 669,200 12/17/2019
5.4.0 723,575 8/13/2019
5.3.1 343,314 5/6/2019
5.3.0 47,267 3/27/2019
5.3.0-b2 2,811 3/6/2019
5.3.0-b1 1,392 3/5/2019
5.2.1 488,013 12/14/2018
5.2.1-b1 1,487 12/14/2018
5.2.0 19,748 12/3/2018
5.1.0 1,753,884 11/23/2018
5.0.2 3,081 11/19/2018
5.0.1 624,774 10/10/2018
5.0.0 715,770 10/8/2018
5.0.0-b21 2,226 10/5/2018
5.0.0-b20 1,530 10/5/2018
5.0.0-b19 2,144 9/24/2018
5.0.0-b18 3,596 9/3/2018
5.0.0-b17 1,697 8/29/2018
5.0.0-b16 1,639 8/27/2018
5.0.0-b15 9,151 8/5/2018
5.0.0-b14 5,861 6/22/2018
5.0.0-b13 1,944 6/22/2018
5.0.0-b12 2,764 5/28/2018
5.0.0-b11 2,117 5/23/2018
5.0.0-b10 2,534 5/1/2018
5.0.0-b09 1,887 4/27/2018
5.0.0-b08 2,073 3/26/2018
5.0.0-b07 1,994 3/26/2018
5.0.0-b06 2,623 3/21/2018
5.0.0-b05 4,260 2/26/2018
5.0.0-b04 2,032 2/26/2018
5.0.0-b03 2,278 2/6/2018
5.0.0-b02 5,772 1/10/2018
5.0.0-b01 3,141 1/3/2018
4.4.0 1,167 2/14/2023
4.3.0 40,253 11/23/2018
4.2.2 61,062 9/19/2018
4.2.1 876,832 12/14/2017
4.2.1-b1 1,876 12/14/2017
4.2.0 5,379 12/10/2017
4.2.0-b01 1,921 11/28/2017
4.1.0 4,211,397 10/26/2017
4.1.0-b5 1,923 9/25/2017
4.1.0-b4 2,824 9/7/2017
4.1.0-b3 2,254 9/4/2017
4.1.0-b2 1,867 8/29/2017
4.1.0-b1 2,549 8/28/2017
4.0.1 74,543 8/22/2017
4.0.0 5,636,184 8/15/2017
4.0.0-b24 1,905 8/15/2017
4.0.0-b23 2,524 8/15/2017
4.0.0-b22 2,439 8/15/2017
4.0.0-b20 51,133 8/9/2017
4.0.0-b19 11,645 7/31/2017
4.0.0-b18 1,837 7/31/2017
4.0.0-b17 3,365 7/25/2017
4.0.0-b16 3,719 6/29/2017
4.0.0-b15 2,141 6/26/2017
4.0.0-b14 4,563 6/20/2017
4.0.0-b12 3,277 6/12/2017
4.0.0-b11 3,282 5/28/2017
4.0.0-b10 9,992 5/18/2017
4.0.0-b09 5,637 5/15/2017
4.0.0-b08 1,909 5/4/2017
4.0.0-b07 2,050 5/1/2017
4.0.0-b06 6,420 4/5/2017
4.0.0-b05 9,180 3/21/2017
4.0.0-b04 2,943 3/21/2017
4.0.0-b03 2,400 3/21/2017
4.0.0-b02 1,949 3/21/2017
4.0.0-b01 9,115 3/21/2017
3.1.5 112,526 6/12/2017
3.1.4 11,731 5/28/2017
3.1.3 5,114 4/27/2017
3.1.2 59,762 3/9/2017
3.1.1 5,821 3/2/2017
3.1.0 3,460 2/28/2017
3.0.2 28,426 2/22/2017
3.0.1 18,416 1/5/2017
3.0.0 122,076 1/4/2017
3.0.0-beta06 2,444 1/4/2017
3.0.0-beta05 2,413 1/4/2017
3.0.0-beta04 3,455 12/20/2016
3.0.0-beta03 2,412 12/20/2016
3.0.0-beta02 2,462 12/20/2016
3.0.0-beta01 2,963 12/19/2016
2.1.6 8,951 11/28/2016
2.1.5 3,165 11/25/2016
2.1.4 3,265 11/24/2016
2.1.3 4,410 11/17/2016
2.1.1 3,319 11/15/2016
2.1.0 3,217 11/14/2016
2.0.2 4,546 11/7/2016
2.0.1 51,985 9/20/2016
2.0.0-b03 2,884 9/19/2016
2.0.0-b02 10,849 9/9/2016
2.0.0-b01 2,481 9/9/2016
2.0.0-a9 2,573 9/6/2016
2.0.0-a8 2,560 9/6/2016
2.0.0-a7 2,583 9/6/2016
2.0.0-a6 3,010 9/1/2016
2.0.0-a5 4,842 8/31/2016
2.0.0-a4 2,463 8/31/2016
2.0.0-a3 3,512 8/31/2016
2.0.0-a2 2,496 8/31/2016
2.0.0-a13 2,544 9/8/2016
2.0.0-a12 2,503 9/7/2016
2.0.0-a11 3,004 9/7/2016
2.0.0-a10 2,527 9/7/2016
0.99.74 18,239 8/29/2016
0.99.73 13,491 8/12/2016
0.99.72 11,440 8/4/2016
0.99.71 11,621 8/3/2016
0.99.70 11,560 7/29/2016
0.99.68 12,564 7/18/2016
0.99.67 12,215 7/1/2016
0.99.66 11,360 6/28/2016
0.99.65 11,155 6/23/2016
0.99.64 11,057 6/22/2016
0.99.63 11,686 6/21/2016
0.99.62 11,449 6/17/2016
0.99.61 11,196 6/17/2016
0.99.60 10,992 6/15/2016
0.99.59 11,819 6/3/2016
0.99.58 12,747 5/24/2016
0.99.57 11,437 5/22/2016
0.99.56 11,075 5/22/2016
0.99.55 11,776 5/16/2016
0.99.54 11,150 5/12/2016
0.99.53 11,108 5/12/2016
0.99.52 11,569 5/11/2016
0.99.51 11,466 5/9/2016
0.99.50 11,926 4/13/2016
0.99.48 11,472 4/6/2016
0.99.47 12,010 3/31/2016
0.99.46 10,669 3/30/2016
0.99.45 10,816 3/29/2016
0.99.44 11,198 3/26/2016
0.99.43 10,895 3/26/2016
0.99.42 14,170 3/22/2016
0.99.41 11,210 3/17/2016
0.99.40 10,855 3/15/2016
0.99.39 11,157 3/14/2016
0.99.38 11,086 3/9/2016
0.99.36 11,178 3/3/2016
0.99.35 11,239 2/22/2016
0.99.34 10,850 2/19/2016
0.99.33 11,369 2/12/2016
0.99.32 10,709 2/10/2016
0.99.31 10,501 2/8/2016
0.99.30 11,165 2/5/2016
0.99.29 12,053 2/2/2016
0.99.27 10,322 1/28/2016
0.99.26 10,092 1/27/2016
0.99.25 10,154 1/22/2016
0.99.24 10,892 1/18/2016
0.99.23 11,561 12/18/2015
0.99.22 9,918 12/18/2015
0.99.21 10,282 12/11/2015
0.99.20 9,886 12/10/2015
0.99.19 10,038 12/8/2015
0.99.18 9,781 12/7/2015
0.99.17 9,885 12/7/2015
0.99.16 10,255 11/30/2015
0.99.14 10,116 11/24/2015
0.99.13 10,134 11/23/2015
0.99.12 10,104 11/17/2015
0.99.11 9,558 11/17/2015
0.99.10 9,842 11/11/2015
0.99.9 14,370 11/5/2015
0.99.8 9,617 11/5/2015
0.99.7 9,722 10/29/2015
0.99.5 9,960 10/27/2015
0.99.4 9,665 10/27/2015
0.99.2 11,016 10/12/2015
0.99.1 9,687 10/8/2015
0.99.0 9,630 10/7/2015
0.98.12 10,242 9/17/2015
0.98.11 9,877 9/17/2015
0.98.10 9,630 9/16/2015
0.98.9 9,482 9/14/2015
0.98.8 9,650 9/13/2015
0.98.7 9,734 9/9/2015
0.98.6 9,822 9/7/2015
0.98.5 9,535 9/3/2015
0.98.4 9,477 9/3/2015
0.98.3 9,568 9/1/2015
0.98.2 9,743 8/27/2015
0.98.1 6,653 8/27/2015
0.98.0 9,482 8/26/2015
0.97.0 9,556 8/25/2015
0.96.0 9,532 8/24/2015
0.95.0 22,343 8/20/2015
0.92.4 9,595 8/17/2015
0.92.3 9,647 8/13/2015
0.92.2 10,744 8/12/2015
0.92.1 10,012 8/12/2015
0.92.0 9,857 8/11/2015
0.91.0 9,970 8/11/2015
0.90.9 2,634 8/10/2015
0.90.8 2,524 8/9/2015
0.90.7 2,632 8/5/2015
0.90.6 2,675 8/4/2015
0.90.5 2,636 8/4/2015
0.90.4 2,505 8/2/2015
0.90.3 2,447 8/2/2015
0.90.2 2,487 7/31/2015
0.90.1 2,493 7/29/2015
0.90.0 58,577 7/29/2015
0.84.0 129,085 5/15/2015
0.83.0 14,109 4/20/2015
0.82.1 8,683 4/16/2015
0.82.0 18,312 3/18/2015
0.81.0 9,226 3/12/2015
0.80.1 9,326 3/5/2015
0.80.0 10,124 2/19/2015
0.79.0 8,948 2/6/2015
0.78.2 8,530 2/6/2015
0.78.1 8,769 2/5/2015
0.78.0 9,152 1/29/2015
0.77.1 8,738 1/23/2015
0.77.0 8,640 1/15/2015
0.76.0 8,491 1/15/2015
0.75.2 9,104 1/3/2015
0.75.1 8,776 12/21/2014
0.75.0 11,921 12/2/2014
0.72.0 18,462 11/5/2014
0.71.4 9,011 10/29/2014
0.71.3 9,431 10/20/2014
0.71.2 16,199 9/30/2014
0.71.1 13,572 9/19/2014
0.71.0 21,794 8/7/2014
0.70.3 9,035 8/4/2014
0.70.2 8,682 7/31/2014
0.70.1 8,730 7/17/2014
0.69.0 12,697 6/17/2014
0.68.0 8,963 6/5/2014
0.67.0 10,369 5/20/2014
0.66.0 9,138 5/9/2014
0.65.0 8,582 4/27/2014
0.64.1 8,321 4/25/2014
0.64.0 8,393 4/20/2014
0.63.1 8,031 4/19/2014
0.63.0 8,617 3/24/2014
0.62.0 102,901 3/12/2014
0.61.1 8,254 3/5/2014
0.61.0 10,119 3/4/2014
0.60.1 8,174 3/3/2014
0.60.0 8,093 3/3/2014
0.59.0 8,085 2/26/2014
0.58.2 8,088 2/24/2014
0.58.1 8,031 2/24/2014
0.58.0 8,235 2/24/2014
0.57.0 9,587 2/18/2014
0.56.1 8,323 2/4/2014
0.56.0 10,926 1/24/2014
0.55.1 9,244 1/20/2014
0.55.0 9,237 1/20/2014
0.54.8 8,374 1/20/2014
0.54.7 9,120 1/20/2014
0.54.6 8,043 1/20/2014
0.54.5 8,218 1/20/2014
0.54.4 8,537 1/11/2014
0.54.3 6,441 1/8/2014
0.54.1 8,954 12/16/2013
0.54.0 8,101 12/10/2013
0.53.1 8,099 12/9/2013
0.53.0 8,404 12/5/2013
0.52.0 8,066 12/4/2013
0.51.1 8,047 12/3/2013
0.51.0 9,073 12/3/2013
0.50.1 8,210 11/15/2013
0.50.0 8,034 11/15/2013
0.49.0 8,252 11/15/2013
0.48.0 8,556 11/12/2013
0.47.0 8,451 11/6/2013
0.46.0 8,462 10/29/2013
0.45.0 12,475 10/21/2013
0.44.5 8,824 10/11/2013
0.44.4 8,284 10/7/2013
0.44.3 8,159 10/4/2013
0.44.2 8,199 10/4/2013
0.44.1 9,290 10/2/2013
0.44.0 8,191 10/2/2013
0.43.1 9,038 9/24/2013
0.43.0 8,354 9/17/2013
0.42.0 8,159 9/17/2013
0.41.0 9,095 9/10/2013
0.40.1 8,278 9/9/2013
0.40.0 8,399 9/2/2013
0.39.0 7,967 8/29/2013
0.38.1 8,185 8/28/2013
0.38.0 8,042 8/28/2013
0.37.0 8,134 8/26/2013
0.36.1 8,049 8/25/2013
0.36.0 9,235 8/25/2013
0.35.6 8,074 8/20/2013
0.35.5 8,027 8/20/2013
0.35.4 8,144 8/19/2013
0.35.3 8,180 8/17/2013
0.35.2 7,978 8/15/2013
0.35.1 8,061 8/14/2013
0.35.0 8,118 8/6/2013
0.34.7 7,909 8/5/2013
0.34.6 7,835 8/5/2013
0.34.5 7,942 8/2/2013
0.34.3 8,010 7/29/2013
0.34.2 7,886 7/29/2013
0.34.1 7,973 7/27/2013
0.34.0 8,219 7/4/2013
0.33.0 8,181 6/14/2013
0.32.5 7,296 6/2/2013
0.32.4 7,984 5/28/2013
0.32.3 8,011 5/23/2013
0.32.1 7,976 5/15/2013
0.32.0 7,943 4/23/2013
0.31.1 8,156 4/2/2013
0.31.0 7,934 4/2/2013
0.30.7 7,857 3/25/2013
0.30.4 8,225 3/7/2013
0.30.3 7,977 3/7/2013
0.30.2 8,007 3/7/2013
0.30.1 7,957 3/6/2013
0.30.0 7,816 3/5/2013
0.29.9 7,817 3/5/2013
0.29.8 7,841 3/5/2013
0.29.7 7,847 2/28/2013
0.29.6 7,874 2/20/2013
0.29.5 7,979 2/20/2013
0.29.4 8,216 2/8/2013
0.29.3 7,939 2/6/2013
0.29.2 2,504 2/6/2013
0.29.1 7,996 2/5/2013
0.29.0-alpha 4,713 1/22/2013
0.28.4 8,091 1/21/2013
0.28.3 8,024 1/8/2013
0.28.2 7,838 1/8/2013
0.28.1 7,847 12/27/2012
0.28.0 7,899 12/27/2012
0.27.1 8,016 12/4/2012
0.27.0 8,131 12/4/2012
0.26.1 7,918 12/4/2012
0.26.0 8,089 11/20/2012
0.25.9 8,140 11/20/2012
0.25.8 8,314 11/19/2012
0.25.7 8,267 11/18/2012
0.25.5 8,223 11/15/2012
0.25.3 8,176 11/13/2012
0.25.2 8,181 11/13/2012
0.25.1 8,146 11/13/2012
0.25.0 8,073 11/7/2012
0.24.9 8,062 11/7/2012
0.24.8 8,082 11/7/2012
0.24.7 7,913 11/6/2012
0.24.6 8,289 11/1/2012
0.24.5 8,334 10/30/2012
0.24.4 8,328 10/30/2012
0.24.3 8,032 10/26/2012
0.24.2 8,005 10/26/2012
0.24.1 8,217 10/26/2012
0.24.0 8,055 10/25/2012
0.23.9 8,057 10/25/2012
0.23.8 7,941 10/25/2012
0.23.7 8,103 10/25/2012
0.23.6 8,244 10/24/2012
0.23.1 8,145 10/12/2012
0.23.0 7,661 10/10/2012
0.22.8 7,654 10/10/2012
0.22.7 7,915 10/9/2012
0.22.6 7,874 10/9/2012
0.22.5 7,781 10/3/2012
0.22.4 7,794 10/2/2012
0.22.3 7,816 10/2/2012
0.22.2 7,701 9/30/2012
0.22.1 7,562 9/26/2012
0.22.0 7,402 9/26/2012
0.21.7 7,571 9/25/2012
0.21.6 7,609 9/25/2012
0.21.5 7,596 9/11/2012
0.21.4 7,667 9/10/2012
0.21.3 7,700 9/10/2012
0.21.2 7,679 9/10/2012
0.21.1 7,520 9/10/2012
0.21.0 7,721 9/7/2012
0.20.9 7,712 9/7/2012
0.20.8 7,687 9/6/2012
0.20.7 7,617 9/6/2012
0.20.6 7,672 9/6/2012
0.20.3 7,661 9/4/2012
0.20.2 7,805 9/4/2012
0.19.7 7,817 8/29/2012
0.19.6 7,568 8/28/2012
0.19.5 7,236 8/28/2012
0.19.4 7,283 8/28/2012
0.19.3 7,332 8/28/2012
0.19.2 7,471 8/28/2012
0.19.1 7,445 8/26/2012
0.18.6 7,338 8/23/2012
0.16.0 10,318 8/20/2012
0.15.9-alpha 4,776 8/14/2012
0.15.8-alpha 4,514 8/8/2012
0.15.7-alpha 4,568 8/8/2012
0.15.6-alpha 4,562 8/8/2012
0.15.5-alpha 2,610 8/8/2012
0.15.4-alpha 4,608 8/7/2012
0.15.3-alpha 4,550 8/7/2012
0.15.2-alpha 4,577 8/7/2012
0.15.1-alpha 4,671 8/2/2012
0.15.0-alpha 4,684 8/1/2012
0.14.0-alpha 4,487 7/30/2012
0.13.0-alpha 4,510 7/14/2012
0.12.9-alpha 4,609 6/18/2012
0.12.8-alpha 4,448 6/18/2012
0.12.7-alpha 4,500 6/13/2012
0.12.6-alpha 4,599 6/8/2012
0.12.5-alpha 4,557 6/5/2012
0.12.4-alpha 4,052 6/5/2012
0.12.3-alpha 3,994 6/1/2012
0.12.2-alpha 4,070 5/31/2012
0.12.1-alpha 3,979 5/30/2012
0.11.10-alpha 4,013 5/30/2012
0.11.9-alpha 3,946 5/30/2012
0.11.8-alpha 4,007 5/30/2012
0.11.7-alpha 4,067 5/30/2012
0.11.6-alpha 3,967 5/29/2012
0.11.5-alpha 4,037 5/22/2012
0.11.4-alpha 4,025 5/22/2012
0.11.3-alpha 3,365 5/15/2012
0.11.2-alpha 3,409 5/8/2012
0.11.1-alpha 3,462 5/8/2012
0.11.0-alpha 3,441 5/8/2012
0.10.9-alpha 3,522 4/10/2012
0.10.8-alpha 3,454 3/21/2012
0.10.7-alpha 3,450 3/20/2012
0.10.6-alpha 3,498 3/17/2012
0.10.5-alpha 3,305 3/16/2012
0.10.4-alpha 3,319 3/16/2012
0.10.3-alpha 3,488 3/15/2012
0.10.1-alpha 3,418 3/15/2012
0.9.1-alpha 3,197 2/25/2012