Rebus 8.0.0-alpha06

This is a prerelease version of Rebus.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Rebus --version 8.0.0-alpha06
                    
NuGet\Install-Package Rebus -Version 8.0.0-alpha06
                    
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.0.0-alpha06" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rebus" Version="8.0.0-alpha06" />
                    
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.0.0-alpha06
                    
#r "nuget: Rebus, 8.0.0-alpha06"
                    
#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.
#addin nuget:?package=Rebus&version=8.0.0-alpha06&prerelease
                    
Install Rebus as a Cake Addin
#tool nuget:?package=Rebus&version=8.0.0-alpha06&prerelease
                    
Install Rebus 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 was computed.  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 was computed.  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 was computed.  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 was computed.  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.
mastreeno/Merp
An event based Micro ERP
DataDog/dd-trace-dotnet
.NET Client Library for Datadog APM
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 134,785 2/28/2025
8.7.1 1,823,617 11/27/2024
8.7.0 53,510 11/15/2024
8.6.1 159,506 10/13/2024
8.6.0 117,547 9/19/2024
8.5.0 9,298 9/16/2024
8.4.4 158,934 8/30/2024
8.4.3 309,331 6/12/2024
8.4.2 2,798,421 4/10/2024
8.4.1 56,947 4/4/2024
8.4.0 22,251 4/4/2024
8.3.0 984 4/4/2024
8.2.4 180,924 3/21/2024
8.2.2 3,589,321 1/22/2024
8.2.0-alpha01 916 1/2/2024
8.1.0 341,090 12/21/2023
8.0.3 99,263 12/13/2023
8.0.2 257,987 11/21/2023
8.0.1 5,253,135 11/15/2023
8.0.0-alpha11 3,863 8/3/2023
8.0.0-alpha10 3,143 8/2/2023
8.0.0-alpha09 15,702 3/31/2023
8.0.0-alpha08 216 3/31/2023
8.0.0-alpha07 188 3/31/2023
8.0.0-alpha06 199 3/31/2023
8.0.0-alpha05 692 3/31/2023
8.0.0-alpha04 724 3/30/2023
8.0.0-alpha03 187 3/30/2023
8.0.0-alpha02 705 3/30/2023
8.0.0-alpha01 8,018 3/27/2023
7.2.1 251,865 8/23/2023
7.2.0 49,114 8/3/2023
7.1.1 4,753 8/2/2023
7.1.0 413,303 3/22/2023
7.0.0 1,024,047 12/21/2022
7.0.0-rc7 441 12/15/2022
7.0.0-rc6 490 11/17/2022
7.0.0-rc5 278 11/16/2022
7.0.0-rc4 10,374 9/3/2022
7.0.0-rc2 16,905 6/2/2022
7.0.0-rc1 6,439 5/5/2022
7.0.0-b06 940 4/4/2022
7.0.0-b05 6,339 2/19/2022
7.0.0-b04 1,463 2/4/2022
7.0.0-b03 269 2/4/2022
7.0.0-b02 994 1/14/2022
7.0.0-b01 4,906 11/26/2021
6.7.0 231,682 12/15/2022
6.6.5 2,634,078 5/5/2022
6.6.4 135,731 4/4/2022
6.6.2 1,807,153 12/23/2021
6.6.1 1,214,530 7/30/2021
6.6.0 115,644 6/3/2021
6.5.5 559,675 3/8/2021
6.5.4 1,139 3/7/2021
6.5.3 58,688 2/25/2021
6.5.2 128,855 2/23/2021
6.4.2-b1 10,487 12/8/2020
6.4.1 1,706,536 9/20/2020
6.4.0 8,888 9/18/2020
6.3.1 446,191 6/12/2020
6.3.0 49,029 6/4/2020
6.2.1 475,030 4/24/2020
6.1.0 2,011,976 3/5/2020
6.0.1 28,309 3/2/2020
6.0.0 6,055,376 1/31/2020
6.0.0-b21 1,683 12/17/2019
6.0.0-b20 679 12/8/2019
6.0.0-b19 914 11/4/2019
6.0.0-b18 1,663 9/24/2019
6.0.0-b17 683 9/24/2019
6.0.0-b16 30,985 9/7/2019
6.0.0-b15 1,878 9/4/2019
6.0.0-b14 3,936 9/2/2019
6.0.0-b12 2,509 8/27/2019
6.0.0-b11 2,843 8/13/2019
6.0.0-b10 1,288 8/13/2019
6.0.0-b08 2,068 6/29/2019
6.0.0-b07 1,491 5/6/2019
6.0.0-b06 5,382 4/12/2019
6.0.0-b05 1,352 4/12/2019
6.0.0-b04 2,027 4/9/2019
6.0.0-b03 1,519 3/27/2019
5.4.1 668,613 12/17/2019
5.4.0 722,820 8/13/2019
5.3.1 343,136 5/6/2019
5.3.0 47,164 3/27/2019
5.3.0-b2 2,779 3/6/2019
5.3.0-b1 1,364 3/5/2019
5.2.1 487,415 12/14/2018
5.2.1-b1 1,456 12/14/2018
5.2.0 19,715 12/3/2018
5.1.0 1,753,389 11/23/2018
5.0.2 3,051 11/19/2018
5.0.1 622,081 10/10/2018
5.0.0 713,739 10/8/2018
5.0.0-b21 2,192 10/5/2018
5.0.0-b20 1,499 10/5/2018
5.0.0-b19 2,116 9/24/2018
5.0.0-b18 3,568 9/3/2018
5.0.0-b17 1,668 8/29/2018
5.0.0-b16 1,611 8/27/2018
5.0.0-b15 9,099 8/5/2018
5.0.0-b14 5,797 6/22/2018
5.0.0-b13 1,876 6/22/2018
5.0.0-b12 2,693 5/28/2018
5.0.0-b11 2,047 5/23/2018
5.0.0-b10 2,463 5/1/2018
5.0.0-b09 1,832 4/27/2018
5.0.0-b08 2,005 3/26/2018
5.0.0-b07 1,925 3/26/2018
5.0.0-b06 2,560 3/21/2018
5.0.0-b05 4,193 2/26/2018
5.0.0-b04 1,962 2/26/2018
5.0.0-b03 2,212 2/6/2018
5.0.0-b02 5,706 1/10/2018
5.0.0-b01 3,072 1/3/2018
4.4.0 1,127 2/14/2023
4.3.0 40,003 11/23/2018
4.2.2 60,995 9/19/2018
4.2.1 873,151 12/14/2017
4.2.1-b1 1,825 12/14/2017
4.2.0 5,298 12/10/2017
4.2.0-b01 1,870 11/28/2017
4.1.0 3,945,323 10/26/2017
4.1.0-b5 1,873 9/25/2017
4.1.0-b4 2,777 9/7/2017
4.1.0-b3 2,201 9/4/2017
4.1.0-b2 1,821 8/29/2017
4.1.0-b1 2,498 8/28/2017
4.0.1 74,410 8/22/2017
4.0.0 5,319,685 8/15/2017
4.0.0-b24 1,859 8/15/2017
4.0.0-b23 2,473 8/15/2017
4.0.0-b22 2,389 8/15/2017
4.0.0-b20 51,055 8/9/2017
4.0.0-b19 11,591 7/31/2017
4.0.0-b18 1,785 7/31/2017
4.0.0-b17 3,316 7/25/2017
4.0.0-b16 3,672 6/29/2017
4.0.0-b15 2,093 6/26/2017
4.0.0-b14 4,509 6/20/2017
4.0.0-b12 3,225 6/12/2017
4.0.0-b11 3,234 5/28/2017
4.0.0-b10 9,943 5/18/2017
4.0.0-b09 5,586 5/15/2017
4.0.0-b08 1,860 5/4/2017
4.0.0-b07 1,998 5/1/2017
4.0.0-b06 6,368 4/5/2017
4.0.0-b05 9,132 3/21/2017
4.0.0-b04 2,896 3/21/2017
4.0.0-b03 2,354 3/21/2017
4.0.0-b02 1,900 3/21/2017
4.0.0-b01 9,066 3/21/2017
3.1.5 112,381 6/12/2017
3.1.4 11,681 5/28/2017
3.1.3 5,068 4/27/2017
3.1.2 59,679 3/9/2017
3.1.1 5,771 3/2/2017
3.1.0 3,406 2/28/2017
3.0.2 28,372 2/22/2017
3.0.1 18,199 1/5/2017
3.0.0 121,242 1/4/2017
3.0.0-beta06 2,394 1/4/2017
3.0.0-beta05 2,367 1/4/2017
3.0.0-beta04 3,405 12/20/2016
3.0.0-beta03 2,364 12/20/2016
3.0.0-beta02 2,412 12/20/2016
3.0.0-beta01 2,912 12/19/2016
2.1.6 8,893 11/28/2016
2.1.5 3,117 11/25/2016
2.1.4 3,213 11/24/2016
2.1.3 4,359 11/17/2016
2.1.1 3,271 11/15/2016
2.1.0 3,166 11/14/2016
2.0.2 4,495 11/7/2016
2.0.1 51,573 9/20/2016
2.0.0-b03 2,830 9/19/2016
2.0.0-b02 10,799 9/9/2016
2.0.0-b01 2,432 9/9/2016
2.0.0-a9 2,520 9/6/2016
2.0.0-a8 2,509 9/6/2016
2.0.0-a7 2,535 9/6/2016
2.0.0-a6 2,962 9/1/2016
2.0.0-a5 4,794 8/31/2016
2.0.0-a4 2,411 8/31/2016
2.0.0-a3 3,464 8/31/2016
2.0.0-a2 2,444 8/31/2016
2.0.0-a13 2,491 9/8/2016
2.0.0-a12 2,448 9/7/2016
2.0.0-a11 2,958 9/7/2016
2.0.0-a10 2,479 9/7/2016
0.99.74 18,150 8/29/2016
0.99.73 13,440 8/12/2016
0.99.72 11,387 8/4/2016
0.99.71 11,570 8/3/2016
0.99.70 11,507 7/29/2016
0.99.68 12,512 7/18/2016
0.99.67 12,152 7/1/2016
0.99.66 11,301 6/28/2016
0.99.65 11,097 6/23/2016
0.99.64 11,005 6/22/2016
0.99.63 11,633 6/21/2016
0.99.62 11,400 6/17/2016
0.99.61 11,139 6/17/2016
0.99.60 10,945 6/15/2016
0.99.59 11,770 6/3/2016
0.99.58 12,688 5/24/2016
0.99.57 11,384 5/22/2016
0.99.56 11,019 5/22/2016
0.99.55 11,723 5/16/2016
0.99.54 11,096 5/12/2016
0.99.53 11,053 5/12/2016
0.99.52 11,510 5/11/2016
0.99.51 11,410 5/9/2016
0.99.50 11,878 4/13/2016
0.99.48 11,422 4/6/2016
0.99.47 11,955 3/31/2016
0.99.46 10,615 3/30/2016
0.99.45 10,767 3/29/2016
0.99.44 11,146 3/26/2016
0.99.43 10,842 3/26/2016
0.99.42 14,115 3/22/2016
0.99.41 11,158 3/17/2016
0.99.40 10,801 3/15/2016
0.99.39 11,105 3/14/2016
0.99.38 11,030 3/9/2016
0.99.36 11,131 3/3/2016
0.99.35 11,182 2/22/2016
0.99.34 10,799 2/19/2016
0.99.33 11,301 2/12/2016
0.99.32 10,648 2/10/2016
0.99.31 10,448 2/8/2016
0.99.30 11,109 2/5/2016
0.99.29 11,997 2/2/2016
0.99.27 10,268 1/28/2016
0.99.26 10,043 1/27/2016
0.99.25 10,097 1/22/2016
0.99.24 10,848 1/18/2016
0.99.23 11,507 12/18/2015
0.99.22 9,865 12/18/2015
0.99.21 10,200 12/11/2015
0.99.20 9,837 12/10/2015
0.99.19 9,980 12/8/2015
0.99.18 9,727 12/7/2015
0.99.17 9,832 12/7/2015
0.99.16 10,205 11/30/2015
0.99.14 10,066 11/24/2015
0.99.13 10,083 11/23/2015
0.99.12 10,047 11/17/2015
0.99.11 9,504 11/17/2015
0.99.10 9,786 11/11/2015
0.99.9 14,269 11/5/2015
0.99.8 9,565 11/5/2015
0.99.7 9,672 10/29/2015
0.99.5 9,908 10/27/2015
0.99.4 9,616 10/27/2015
0.99.2 10,967 10/12/2015
0.99.1 9,632 10/8/2015
0.99.0 9,580 10/7/2015
0.98.12 10,191 9/17/2015
0.98.11 9,825 9/17/2015
0.98.10 9,580 9/16/2015
0.98.9 9,431 9/14/2015
0.98.8 9,592 9/13/2015
0.98.7 9,676 9/9/2015
0.98.6 9,775 9/7/2015
0.98.5 9,483 9/3/2015
0.98.4 9,430 9/3/2015
0.98.3 9,513 9/1/2015
0.98.2 9,694 8/27/2015
0.98.1 6,605 8/27/2015
0.98.0 9,437 8/26/2015
0.97.0 9,504 8/25/2015
0.96.0 9,482 8/24/2015
0.95.0 22,292 8/20/2015
0.92.4 9,549 8/17/2015
0.92.3 9,585 8/13/2015
0.92.2 10,646 8/12/2015
0.92.1 9,946 8/12/2015
0.92.0 9,794 8/11/2015
0.91.0 9,912 8/11/2015
0.90.9 2,579 8/10/2015
0.90.8 2,468 8/9/2015
0.90.7 2,573 8/5/2015
0.90.6 2,621 8/4/2015
0.90.5 2,585 8/4/2015
0.90.4 2,449 8/2/2015
0.90.3 2,395 8/2/2015
0.90.2 2,437 7/31/2015
0.90.1 2,444 7/29/2015
0.90.0 58,521 7/29/2015
0.84.0 127,105 5/15/2015
0.83.0 14,056 4/20/2015
0.82.1 8,630 4/16/2015
0.82.0 18,262 3/18/2015
0.81.0 9,172 3/12/2015
0.80.1 9,269 3/5/2015
0.80.0 10,075 2/19/2015
0.79.0 8,897 2/6/2015
0.78.2 8,481 2/6/2015
0.78.1 8,721 2/5/2015
0.78.0 9,101 1/29/2015
0.77.1 8,689 1/23/2015
0.77.0 8,584 1/15/2015
0.76.0 8,440 1/15/2015
0.75.2 9,051 1/3/2015
0.75.1 8,725 12/21/2014
0.75.0 11,853 12/2/2014
0.72.0 18,408 11/5/2014
0.71.4 8,955 10/29/2014
0.71.3 9,386 10/20/2014
0.71.2 16,117 9/30/2014
0.71.1 13,524 9/19/2014
0.71.0 21,722 8/7/2014
0.70.3 8,987 8/4/2014
0.70.2 8,631 7/31/2014
0.70.1 8,677 7/17/2014
0.69.0 12,638 6/17/2014
0.68.0 8,906 6/5/2014
0.67.0 10,276 5/20/2014
0.66.0 9,063 5/9/2014
0.65.0 8,504 4/27/2014
0.64.1 8,270 4/25/2014
0.64.0 8,341 4/20/2014
0.63.1 7,979 4/19/2014
0.63.0 8,562 3/24/2014
0.62.0 102,355 3/12/2014
0.61.1 8,198 3/5/2014
0.61.0 10,062 3/4/2014
0.60.1 8,116 3/3/2014
0.60.0 8,035 3/3/2014
0.59.0 8,025 2/26/2014
0.58.2 8,030 2/24/2014
0.58.1 7,971 2/24/2014
0.58.0 8,171 2/24/2014
0.57.0 9,526 2/18/2014
0.56.1 8,263 2/4/2014
0.56.0 10,864 1/24/2014
0.55.1 9,187 1/20/2014
0.55.0 9,179 1/20/2014
0.54.8 8,312 1/20/2014
0.54.7 9,058 1/20/2014
0.54.6 7,978 1/20/2014
0.54.5 8,158 1/20/2014
0.54.4 8,477 1/11/2014
0.54.3 6,382 1/8/2014
0.54.1 8,895 12/16/2013
0.54.0 8,034 12/10/2013
0.53.1 8,044 12/9/2013
0.53.0 8,348 12/5/2013
0.52.0 8,010 12/4/2013
0.51.1 7,987 12/3/2013
0.51.0 9,020 12/3/2013
0.50.1 8,155 11/15/2013
0.50.0 7,971 11/15/2013
0.49.0 8,195 11/15/2013
0.48.0 8,504 11/12/2013
0.47.0 8,396 11/6/2013
0.46.0 8,404 10/29/2013
0.45.0 12,414 10/21/2013
0.44.5 8,767 10/11/2013
0.44.4 8,226 10/7/2013
0.44.3 8,098 10/4/2013
0.44.2 8,140 10/4/2013
0.44.1 9,235 10/2/2013
0.44.0 8,126 10/2/2013
0.43.1 8,978 9/24/2013
0.43.0 8,290 9/17/2013
0.42.0 8,099 9/17/2013
0.41.0 9,038 9/10/2013
0.40.1 8,220 9/9/2013
0.40.0 8,343 9/2/2013
0.39.0 7,908 8/29/2013
0.38.1 8,131 8/28/2013
0.38.0 7,982 8/28/2013
0.37.0 8,073 8/26/2013
0.36.1 7,991 8/25/2013
0.36.0 9,176 8/25/2013
0.35.6 8,021 8/20/2013
0.35.5 7,959 8/20/2013
0.35.4 8,087 8/19/2013
0.35.3 8,122 8/17/2013
0.35.2 7,920 8/15/2013
0.35.1 8,001 8/14/2013
0.35.0 8,063 8/6/2013
0.34.7 7,852 8/5/2013
0.34.6 7,779 8/5/2013
0.34.5 7,883 8/2/2013
0.34.3 7,953 7/29/2013
0.34.2 7,824 7/29/2013
0.34.1 7,915 7/27/2013
0.34.0 8,158 7/4/2013
0.33.0 8,121 6/14/2013
0.32.5 7,227 6/2/2013
0.32.4 7,923 5/28/2013
0.32.3 7,946 5/23/2013
0.32.1 7,914 5/15/2013
0.32.0 7,879 4/23/2013
0.31.1 8,092 4/2/2013
0.31.0 7,873 4/2/2013
0.30.7 7,795 3/25/2013
0.30.4 8,166 3/7/2013
0.30.3 7,917 3/7/2013
0.30.2 7,943 3/7/2013
0.30.1 7,896 3/6/2013
0.30.0 7,750 3/5/2013
0.29.9 7,754 3/5/2013
0.29.8 7,778 3/5/2013
0.29.7 7,784 2/28/2013
0.29.6 7,814 2/20/2013
0.29.5 7,913 2/20/2013
0.29.4 8,153 2/8/2013
0.29.3 7,880 2/6/2013
0.29.2 2,444 2/6/2013
0.29.1 7,936 2/5/2013
0.29.0-alpha 4,655 1/22/2013
0.28.4 8,028 1/21/2013
0.28.3 7,962 1/8/2013
0.28.2 7,775 1/8/2013
0.28.1 7,784 12/27/2012
0.28.0 7,836 12/27/2012
0.27.1 7,951 12/4/2012
0.27.0 8,068 12/4/2012
0.26.1 7,851 12/4/2012
0.26.0 8,022 11/20/2012
0.25.9 8,074 11/20/2012
0.25.8 8,249 11/19/2012
0.25.7 8,207 11/18/2012
0.25.5 8,161 11/15/2012
0.25.3 8,114 11/13/2012
0.25.2 8,116 11/13/2012
0.25.1 8,080 11/13/2012
0.25.0 8,009 11/7/2012
0.24.9 8,001 11/7/2012
0.24.8 8,024 11/7/2012
0.24.7 7,848 11/6/2012
0.24.6 8,231 11/1/2012
0.24.5 8,271 10/30/2012
0.24.4 8,262 10/30/2012
0.24.3 7,968 10/26/2012
0.24.2 7,941 10/26/2012
0.24.1 8,150 10/26/2012
0.24.0 7,994 10/25/2012
0.23.9 7,992 10/25/2012
0.23.8 7,878 10/25/2012
0.23.7 8,042 10/25/2012
0.23.6 8,178 10/24/2012
0.23.1 8,071 10/12/2012
0.23.0 7,599 10/10/2012
0.22.8 7,589 10/10/2012
0.22.7 7,851 10/9/2012
0.22.6 7,809 10/9/2012
0.22.5 7,715 10/3/2012
0.22.4 7,733 10/2/2012
0.22.3 7,754 10/2/2012
0.22.2 7,638 9/30/2012
0.22.1 7,502 9/26/2012
0.22.0 7,336 9/26/2012
0.21.7 7,508 9/25/2012
0.21.6 7,548 9/25/2012
0.21.5 7,535 9/11/2012
0.21.4 7,614 9/10/2012
0.21.3 7,644 9/10/2012
0.21.2 7,623 9/10/2012
0.21.1 7,458 9/10/2012
0.21.0 7,663 9/7/2012
0.20.9 7,657 9/7/2012
0.20.8 7,627 9/6/2012
0.20.7 7,560 9/6/2012
0.20.6 7,606 9/6/2012
0.20.3 7,605 9/4/2012
0.20.2 7,747 9/4/2012
0.19.7 7,757 8/29/2012
0.19.6 7,510 8/28/2012
0.19.5 7,177 8/28/2012
0.19.4 7,222 8/28/2012
0.19.3 7,276 8/28/2012
0.19.2 7,406 8/28/2012
0.19.1 7,389 8/26/2012
0.18.6 7,280 8/23/2012
0.16.0 10,195 8/20/2012
0.15.9-alpha 4,718 8/14/2012
0.15.8-alpha 4,458 8/8/2012
0.15.7-alpha 4,504 8/8/2012
0.15.6-alpha 4,505 8/8/2012
0.15.5-alpha 2,548 8/8/2012
0.15.4-alpha 4,546 8/7/2012
0.15.3-alpha 4,486 8/7/2012
0.15.2-alpha 4,518 8/7/2012
0.15.1-alpha 4,605 8/2/2012
0.15.0-alpha 4,627 8/1/2012
0.14.0-alpha 4,427 7/30/2012
0.13.0-alpha 4,448 7/14/2012
0.12.9-alpha 4,552 6/18/2012
0.12.8-alpha 4,390 6/18/2012
0.12.7-alpha 4,438 6/13/2012
0.12.6-alpha 4,542 6/8/2012
0.12.5-alpha 4,494 6/5/2012
0.12.4-alpha 3,994 6/5/2012
0.12.3-alpha 3,935 6/1/2012
0.12.2-alpha 4,011 5/31/2012
0.12.1-alpha 3,922 5/30/2012
0.11.10-alpha 3,955 5/30/2012
0.11.9-alpha 3,889 5/30/2012
0.11.8-alpha 3,951 5/30/2012
0.11.7-alpha 4,007 5/30/2012
0.11.6-alpha 3,906 5/29/2012
0.11.5-alpha 3,976 5/22/2012
0.11.4-alpha 3,967 5/22/2012
0.11.3-alpha 3,306 5/15/2012
0.11.2-alpha 3,351 5/8/2012
0.11.1-alpha 3,401 5/8/2012
0.11.0-alpha 3,380 5/8/2012
0.10.9-alpha 3,463 4/10/2012
0.10.8-alpha 3,386 3/21/2012
0.10.7-alpha 3,387 3/20/2012
0.10.6-alpha 3,436 3/17/2012
0.10.5-alpha 3,244 3/16/2012
0.10.4-alpha 3,260 3/16/2012
0.10.3-alpha 3,430 3/15/2012
0.10.1-alpha 3,361 3/15/2012
0.9.1-alpha 3,135 2/25/2012