Rebus 8.2.2

dotnet add package Rebus --version 8.2.2
NuGet\Install-Package Rebus -Version 8.2.2
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.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rebus --version 8.2.2
#r "nuget: Rebus, 8.2.2"
#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.
// Install Rebus as a Cake Addin
#addin nuget:?package=Rebus&version=8.2.2

// Install Rebus as a Cake Tool
#tool nuget:?package=Rebus&version=8.2.2

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. 
.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 (134)

Showing the top 5 NuGet packages that depend on Rebus:

Package Downloads
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.RabbitMq

Provides a RabbitMQ transport for Rebus

Rebus.SqlServer

Microsoft SQL Server-based persistence for Rebus

Rebus.Serilog

Serilog-based logger integration for Rebus

Rebus.AzureServiceBus

Provides an Azure Service Bus transport for Rebus

GitHub repositories (8)

Showing the top 5 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 and the ASP.NET Core platforms. Provides the fundamental infrastructure, production-ready startup templates, application modules, UI themes, tooling, guides 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
Version Downloads Last updated
8.2.2 43,331 1/22/2024
8.2.0-alpha01 581 1/2/2024
8.1.0 57,566 12/21/2023
8.0.3 21,439 12/13/2023
8.0.2 55,133 11/21/2023
8.0.1 116,701 11/15/2023
8.0.0-alpha11 3,526 8/3/2023
8.0.0-alpha10 2,853 8/2/2023
8.0.0-alpha09 12,818 3/31/2023
8.0.0-alpha08 138 3/31/2023
8.0.0-alpha07 123 3/31/2023
8.0.0-alpha06 125 3/31/2023
8.0.0-alpha05 552 3/31/2023
8.0.0-alpha04 560 3/30/2023
8.0.0-alpha03 116 3/30/2023
8.0.0-alpha02 547 3/30/2023
8.0.0-alpha01 6,598 3/27/2023
7.2.1 140,329 8/23/2023
7.2.0 36,626 8/3/2023
7.1.1 4,652 8/2/2023
7.1.0 336,163 3/22/2023
7.0.0 732,282 12/21/2022
7.0.0-rc7 261 12/15/2022
7.0.0-rc6 419 11/17/2022
7.0.0-rc5 196 11/16/2022
7.0.0-rc4 10,196 9/3/2022
7.0.0-rc2 13,476 6/2/2022
7.0.0-rc1 5,081 5/5/2022
7.0.0-b06 842 4/4/2022
7.0.0-b05 4,947 2/19/2022
7.0.0-b04 1,230 2/4/2022
7.0.0-b03 168 2/4/2022
7.0.0-b02 889 1/14/2022
7.0.0-b01 4,340 11/26/2021
6.7.0 101,108 12/15/2022
6.6.5 1,785,328 5/5/2022
6.6.4 110,874 4/4/2022
6.6.2 1,520,788 12/23/2021
6.6.1 979,678 7/30/2021
6.6.0 109,582 6/3/2021
6.5.5 500,346 3/8/2021
6.5.4 1,017 3/7/2021
6.5.3 48,404 2/25/2021
6.5.2 116,105 2/23/2021
6.4.2-b1 10,088 12/8/2020
6.4.1 1,328,619 9/20/2020
6.4.0 8,196 9/18/2020
6.3.1 407,420 6/12/2020
6.3.0 45,750 6/4/2020
6.2.1 313,817 4/24/2020
6.1.0 1,748,148 3/5/2020
6.0.1 27,070 3/2/2020
6.0.0 4,324,478 1/31/2020
6.0.0-b21 1,493 12/17/2019
6.0.0-b20 568 12/8/2019
6.0.0-b19 802 11/4/2019
6.0.0-b18 1,550 9/24/2019
6.0.0-b17 582 9/24/2019
6.0.0-b16 28,172 9/7/2019
6.0.0-b15 1,651 9/4/2019
6.0.0-b14 3,827 9/2/2019
6.0.0-b12 1,083 8/27/2019
6.0.0-b11 2,588 8/13/2019
6.0.0-b10 1,174 8/13/2019
6.0.0-b08 1,957 6/29/2019
6.0.0-b07 1,357 5/6/2019
6.0.0-b06 4,237 4/12/2019
6.0.0-b05 1,240 4/12/2019
6.0.0-b04 1,820 4/9/2019
6.0.0-b03 1,400 3/27/2019
5.4.1 647,911 12/17/2019
5.4.0 686,952 8/13/2019
5.3.1 334,677 5/6/2019
5.3.0 44,864 3/27/2019
5.3.0-b2 2,659 3/6/2019
5.3.0-b1 1,240 3/5/2019
5.2.1 467,412 12/14/2018
5.2.1-b1 1,339 12/14/2018
5.2.0 19,370 12/3/2018
5.1.0 720,848 11/23/2018
5.0.2 2,896 11/19/2018
5.0.1 476,054 10/10/2018
5.0.0 560,260 10/8/2018
5.0.0-b21 1,946 10/5/2018
5.0.0-b20 1,369 10/5/2018
5.0.0-b19 1,976 9/24/2018
5.0.0-b18 3,320 9/3/2018
5.0.0-b17 1,525 8/29/2018
5.0.0-b16 1,464 8/27/2018
5.0.0-b15 8,900 8/5/2018
5.0.0-b14 5,161 6/22/2018
5.0.0-b13 1,611 6/22/2018
5.0.0-b12 2,426 5/28/2018
5.0.0-b11 1,755 5/23/2018
5.0.0-b10 2,177 5/1/2018
5.0.0-b09 1,613 4/27/2018
5.0.0-b08 1,728 3/26/2018
5.0.0-b07 1,643 3/26/2018
5.0.0-b06 2,210 3/21/2018
5.0.0-b05 3,903 2/26/2018
5.0.0-b04 1,678 2/26/2018
5.0.0-b03 1,929 2/6/2018
5.0.0-b02 5,256 1/10/2018
5.0.0-b01 2,684 1/3/2018
4.4.0 560 2/14/2023
4.3.0 33,371 11/23/2018
4.2.2 58,004 9/19/2018
4.2.1 817,692 12/14/2017
4.2.1-b1 1,608 12/14/2017
4.2.0 4,711 12/10/2017
4.2.0-b01 1,662 11/28/2017
4.1.0 585,540 10/26/2017
4.1.0-b5 1,651 9/25/2017
4.1.0-b4 2,560 9/7/2017
4.1.0-b3 1,988 9/4/2017
4.1.0-b2 1,608 8/29/2017
4.1.0-b1 2,154 8/28/2017
4.0.1 71,434 8/22/2017
4.0.0 1,391,251 8/15/2017
4.0.0-b24 1,633 8/15/2017
4.0.0-b23 2,146 8/15/2017
4.0.0-b22 2,093 8/15/2017
4.0.0-b20 47,067 8/9/2017
4.0.0-b19 11,354 7/31/2017
4.0.0-b18 1,566 7/31/2017
4.0.0-b17 2,920 7/25/2017
4.0.0-b16 3,357 6/29/2017
4.0.0-b15 1,848 6/26/2017
4.0.0-b14 4,016 6/20/2017
4.0.0-b12 2,917 6/12/2017
4.0.0-b11 2,873 5/28/2017
4.0.0-b10 8,982 5/18/2017
4.0.0-b09 4,927 5/15/2017
4.0.0-b08 1,640 5/4/2017
4.0.0-b07 1,765 5/1/2017
4.0.0-b06 5,705 4/5/2017
4.0.0-b05 8,298 3/21/2017
4.0.0-b04 2,577 3/21/2017
4.0.0-b03 2,108 3/21/2017
4.0.0-b02 1,683 3/21/2017
4.0.0-b01 7,589 3/21/2017
3.1.5 107,774 6/12/2017
3.1.4 11,345 5/28/2017
3.1.3 4,710 4/27/2017
3.1.2 58,346 3/9/2017
3.1.1 5,454 3/2/2017
3.1.0 3,023 2/28/2017
3.0.2 27,952 2/22/2017
3.0.1 14,110 1/5/2017
3.0.0 105,984 1/4/2017
3.0.0-beta06 2,076 1/4/2017
3.0.0-beta05 2,092 1/4/2017
3.0.0-beta04 2,990 12/20/2016
3.0.0-beta03 2,057 12/20/2016
3.0.0-beta02 2,085 12/20/2016
3.0.0-beta01 2,550 12/19/2016
2.1.6 8,149 11/28/2016
2.1.5 2,803 11/25/2016
2.1.4 2,890 11/24/2016
2.1.3 4,055 11/17/2016
2.1.1 2,928 11/15/2016
2.1.0 2,854 11/14/2016
2.0.2 4,174 11/7/2016
2.0.1 47,287 9/20/2016
2.0.0-b03 2,522 9/19/2016
2.0.0-b02 9,517 9/9/2016
2.0.0-b01 2,139 9/9/2016
2.0.0-a9 2,191 9/6/2016
2.0.0-a8 2,171 9/6/2016
2.0.0-a7 2,213 9/6/2016
2.0.0-a6 2,599 9/1/2016
2.0.0-a5 4,167 8/31/2016
2.0.0-a4 2,107 8/31/2016
2.0.0-a3 3,052 8/31/2016
2.0.0-a2 2,148 8/31/2016
2.0.0-a13 2,171 9/8/2016
2.0.0-a12 2,156 9/7/2016
2.0.0-a11 2,591 9/7/2016
2.0.0-a10 2,154 9/7/2016
0.99.74 16,513 8/29/2016
0.99.73 12,628 8/12/2016
0.99.72 10,583 8/4/2016
0.99.71 10,800 8/3/2016
0.99.70 10,705 7/29/2016
0.99.68 11,639 7/18/2016
0.99.67 11,147 7/1/2016
0.99.66 10,472 6/28/2016
0.99.65 10,309 6/23/2016
0.99.64 10,252 6/22/2016
0.99.63 10,843 6/21/2016
0.99.62 10,618 6/17/2016
0.99.61 10,404 6/17/2016
0.99.60 10,150 6/15/2016
0.99.59 11,010 6/3/2016
0.99.58 11,872 5/24/2016
0.99.57 10,587 5/22/2016
0.99.56 10,229 5/22/2016
0.99.55 10,912 5/16/2016
0.99.54 10,299 5/12/2016
0.99.53 10,322 5/12/2016
0.99.52 10,670 5/11/2016
0.99.51 10,631 5/9/2016
0.99.50 11,115 4/13/2016
0.99.48 10,673 4/6/2016
0.99.47 11,174 3/31/2016
0.99.46 9,883 3/30/2016
0.99.45 9,992 3/29/2016
0.99.44 10,369 3/26/2016
0.99.43 10,076 3/26/2016
0.99.42 12,874 3/22/2016
0.99.41 10,415 3/17/2016
0.99.40 10,081 3/15/2016
0.99.39 10,384 3/14/2016
0.99.38 10,308 3/9/2016
0.99.36 10,338 3/3/2016
0.99.35 10,401 2/22/2016
0.99.34 10,063 2/19/2016
0.99.33 10,453 2/12/2016
0.99.32 9,928 2/10/2016
0.99.31 9,735 2/8/2016
0.99.30 10,388 2/5/2016
0.99.29 11,191 2/2/2016
0.99.27 9,535 1/28/2016
0.99.26 9,327 1/27/2016
0.99.25 9,407 1/22/2016
0.99.24 10,116 1/18/2016
0.99.23 10,792 12/18/2015
0.99.22 9,163 12/18/2015
0.99.21 9,380 12/11/2015
0.99.20 9,117 12/10/2015
0.99.19 9,292 12/8/2015
0.99.18 9,043 12/7/2015
0.99.17 9,157 12/7/2015
0.99.16 9,519 11/30/2015
0.99.14 9,345 11/24/2015
0.99.13 9,383 11/23/2015
0.99.12 9,287 11/17/2015
0.99.11 8,799 11/17/2015
0.99.10 9,140 11/11/2015
0.99.9 12,445 11/5/2015
0.99.8 8,881 11/5/2015
0.99.7 8,970 10/29/2015
0.99.5 9,233 10/27/2015
0.99.4 8,930 10/27/2015
0.99.2 10,053 10/12/2015
0.99.1 8,908 10/8/2015
0.99.0 8,892 10/7/2015
0.98.12 9,395 9/17/2015
0.98.11 9,093 9/17/2015
0.98.10 8,934 9/16/2015
0.98.9 8,751 9/14/2015
0.98.8 8,902 9/13/2015
0.98.7 8,956 9/9/2015
0.98.6 9,056 9/7/2015
0.98.5 8,850 9/3/2015
0.98.4 8,744 9/3/2015
0.98.3 8,824 9/1/2015
0.98.2 9,006 8/27/2015
0.98.1 6,081 8/27/2015
0.98.0 8,777 8/26/2015
0.97.0 8,802 8/25/2015
0.96.0 8,756 8/24/2015
0.95.0 20,979 8/20/2015
0.92.4 8,804 8/17/2015
0.92.3 8,925 8/13/2015
0.92.2 9,795 8/12/2015
0.92.1 9,209 8/12/2015
0.92.0 9,135 8/11/2015
0.91.0 9,210 8/11/2015
0.90.9 2,342 8/10/2015
0.90.8 2,239 8/9/2015
0.90.7 2,342 8/5/2015
0.90.6 2,384 8/4/2015
0.90.5 2,354 8/4/2015
0.90.4 2,207 8/2/2015
0.90.3 2,163 8/2/2015
0.90.2 2,201 7/31/2015
0.90.1 2,212 7/29/2015
0.90.0 55,182 7/29/2015
0.84.0 104,043 5/15/2015
0.83.0 13,082 4/20/2015
0.82.1 8,054 4/16/2015
0.82.0 17,609 3/18/2015
0.81.0 8,537 3/12/2015
0.80.1 8,635 3/5/2015
0.80.0 9,406 2/19/2015
0.79.0 8,265 2/6/2015
0.78.2 7,865 2/6/2015
0.78.1 8,087 2/5/2015
0.78.0 8,467 1/29/2015
0.77.1 8,063 1/23/2015
0.77.0 7,904 1/15/2015
0.76.0 7,830 1/15/2015
0.75.2 8,439 1/3/2015
0.75.1 8,092 12/21/2014
0.75.0 10,762 12/2/2014
0.72.0 17,757 11/5/2014
0.71.4 8,324 10/29/2014
0.71.3 8,783 10/20/2014
0.71.2 14,897 9/30/2014
0.71.1 12,680 9/19/2014
0.71.0 20,097 8/7/2014
0.70.3 8,323 8/4/2014
0.70.2 8,023 7/31/2014
0.70.1 8,069 7/17/2014
0.69.0 11,931 6/17/2014
0.68.0 8,266 6/5/2014
0.67.0 9,054 5/20/2014
0.66.0 8,245 5/9/2014
0.65.0 7,857 4/27/2014
0.64.1 7,688 4/25/2014
0.64.0 7,719 4/20/2014
0.63.1 7,392 4/19/2014
0.63.0 7,968 3/24/2014
0.62.0 94,149 3/12/2014
0.61.1 7,575 3/5/2014
0.61.0 9,451 3/4/2014
0.60.1 7,504 3/3/2014
0.60.0 7,411 3/3/2014
0.59.0 7,396 2/26/2014
0.58.2 7,422 2/24/2014
0.58.1 7,374 2/24/2014
0.58.0 7,533 2/24/2014
0.57.0 8,947 2/18/2014
0.56.1 7,669 2/4/2014
0.56.0 10,297 1/24/2014
0.55.1 8,592 1/20/2014
0.55.0 8,555 1/20/2014
0.54.8 7,688 1/20/2014
0.54.7 8,453 1/20/2014
0.54.6 7,357 1/20/2014
0.54.5 7,581 1/20/2014
0.54.4 7,924 1/11/2014
0.54.3 5,909 1/8/2014
0.54.1 8,241 12/16/2013
0.54.0 7,437 12/10/2013
0.53.1 7,447 12/9/2013
0.53.0 7,762 12/5/2013
0.52.0 7,416 12/4/2013
0.51.1 7,395 12/3/2013
0.51.0 8,463 12/3/2013
0.50.1 7,577 11/15/2013
0.50.0 7,398 11/15/2013
0.49.0 7,551 11/15/2013
0.48.0 7,895 11/12/2013
0.47.0 7,751 11/6/2013
0.46.0 7,759 10/29/2013
0.45.0 11,789 10/21/2013
0.44.5 8,160 10/11/2013
0.44.4 7,627 10/7/2013
0.44.3 7,524 10/4/2013
0.44.2 7,546 10/4/2013
0.44.1 8,671 10/2/2013
0.44.0 7,533 10/2/2013
0.43.1 8,431 9/24/2013
0.43.0 7,670 9/17/2013
0.42.0 7,472 9/17/2013
0.41.0 8,410 9/10/2013
0.40.1 7,604 9/9/2013
0.40.0 7,749 9/2/2013
0.39.0 7,300 8/29/2013
0.38.1 7,520 8/28/2013
0.38.0 7,397 8/28/2013
0.37.0 7,435 8/26/2013
0.36.1 7,410 8/25/2013
0.36.0 8,550 8/25/2013
0.35.6 7,404 8/20/2013
0.35.5 7,361 8/20/2013
0.35.4 7,418 8/19/2013
0.35.3 7,470 8/17/2013
0.35.2 7,325 8/15/2013
0.35.1 7,371 8/14/2013
0.35.0 7,478 8/6/2013
0.34.7 7,206 8/5/2013
0.34.6 7,198 8/5/2013
0.34.5 7,294 8/2/2013
0.34.3 7,381 7/29/2013
0.34.2 7,220 7/29/2013
0.34.1 7,300 7/27/2013
0.34.0 7,576 7/4/2013
0.33.0 7,510 6/14/2013
0.32.5 6,691 6/2/2013
0.32.4 7,331 5/28/2013
0.32.3 7,353 5/23/2013
0.32.1 7,356 5/15/2013
0.32.0 7,269 4/23/2013
0.31.1 7,515 4/2/2013
0.31.0 7,351 4/2/2013
0.30.7 7,238 3/25/2013
0.30.4 7,550 3/7/2013
0.30.3 7,320 3/7/2013
0.30.2 7,333 3/7/2013
0.30.1 7,346 3/6/2013
0.30.0 7,171 3/5/2013
0.29.9 7,162 3/5/2013
0.29.8 7,175 3/5/2013
0.29.7 7,160 2/28/2013
0.29.6 7,244 2/20/2013
0.29.5 7,322 2/20/2013
0.29.4 7,589 2/8/2013
0.29.3 7,323 2/6/2013
0.29.2 2,199 2/6/2013
0.29.1 7,318 2/5/2013
0.29.0-alpha 4,084 1/22/2013
0.28.4 7,481 1/21/2013
0.28.3 7,360 1/8/2013
0.28.2 7,174 1/8/2013
0.28.1 7,203 12/27/2012
0.28.0 7,255 12/27/2012
0.27.1 7,329 12/4/2012
0.27.0 7,456 12/4/2012
0.26.1 7,263 12/4/2012
0.26.0 7,460 11/20/2012
0.25.9 7,491 11/20/2012
0.25.8 7,649 11/19/2012
0.25.7 7,613 11/18/2012
0.25.5 7,577 11/15/2012
0.25.3 7,510 11/13/2012
0.25.2 7,531 11/13/2012
0.25.1 7,436 11/13/2012
0.25.0 7,389 11/7/2012
0.24.9 7,418 11/7/2012
0.24.8 7,429 11/7/2012
0.24.7 7,298 11/6/2012
0.24.6 7,660 11/1/2012
0.24.5 7,701 10/30/2012
0.24.4 7,683 10/30/2012
0.24.3 7,358 10/26/2012
0.24.2 7,385 10/26/2012
0.24.1 7,513 10/26/2012
0.24.0 7,409 10/25/2012
0.23.9 7,386 10/25/2012
0.23.8 7,261 10/25/2012
0.23.7 7,439 10/25/2012
0.23.6 7,580 10/24/2012
0.23.1 7,426 10/12/2012
0.23.0 7,017 10/10/2012
0.22.8 7,044 10/10/2012
0.22.7 7,302 10/9/2012
0.22.6 7,215 10/9/2012
0.22.5 7,154 10/3/2012
0.22.4 7,158 10/2/2012
0.22.3 7,212 10/2/2012
0.22.2 7,102 9/30/2012
0.22.1 6,937 9/26/2012
0.22.0 6,766 9/26/2012
0.21.7 6,952 9/25/2012
0.21.6 6,989 9/25/2012
0.21.5 6,935 9/11/2012
0.21.4 7,038 9/10/2012
0.21.3 7,102 9/10/2012
0.21.2 7,087 9/10/2012
0.21.1 6,885 9/10/2012
0.21.0 7,100 9/7/2012
0.20.9 7,134 9/7/2012
0.20.8 7,065 9/6/2012
0.20.7 6,979 9/6/2012
0.20.6 6,999 9/6/2012
0.20.3 7,034 9/4/2012
0.20.2 7,164 9/4/2012
0.19.7 7,173 8/29/2012
0.19.6 6,917 8/28/2012
0.19.5 6,611 8/28/2012
0.19.4 6,623 8/28/2012
0.19.3 6,738 8/28/2012
0.19.2 6,823 8/28/2012
0.19.1 6,825 8/26/2012
0.18.6 6,710 8/23/2012
0.16.0 8,240 8/20/2012
0.15.9-alpha 4,150 8/14/2012
0.15.8-alpha 3,919 8/8/2012
0.15.7-alpha 3,927 8/8/2012
0.15.6-alpha 3,910 8/8/2012
0.15.5-alpha 2,246 8/8/2012
0.15.4-alpha 3,991 8/7/2012
0.15.3-alpha 3,942 8/7/2012
0.15.2-alpha 3,978 8/7/2012
0.15.1-alpha 4,008 8/2/2012
0.15.0-alpha 4,074 8/1/2012
0.14.0-alpha 3,873 7/30/2012
0.13.0-alpha 3,897 7/14/2012
0.12.9-alpha 4,021 6/18/2012
0.12.8-alpha 3,885 6/18/2012
0.12.7-alpha 3,891 6/13/2012
0.12.6-alpha 4,004 6/8/2012
0.12.5-alpha 3,965 6/5/2012
0.12.4-alpha 3,517 6/5/2012
0.12.3-alpha 3,500 6/1/2012
0.12.2-alpha 3,559 5/31/2012
0.12.1-alpha 3,459 5/30/2012
0.11.10-alpha 3,501 5/30/2012
0.11.9-alpha 3,415 5/30/2012
0.11.8-alpha 3,506 5/30/2012
0.11.7-alpha 3,521 5/30/2012
0.11.6-alpha 3,460 5/29/2012
0.11.5-alpha 3,480 5/22/2012
0.11.4-alpha 3,505 5/22/2012
0.11.3-alpha 2,923 5/15/2012
0.11.2-alpha 2,928 5/8/2012
0.11.1-alpha 2,995 5/8/2012
0.11.0-alpha 2,981 5/8/2012
0.10.9-alpha 3,046 4/10/2012
0.10.8-alpha 2,983 3/21/2012
0.10.7-alpha 3,017 3/20/2012
0.10.6-alpha 2,991 3/17/2012
0.10.5-alpha 2,833 3/16/2012
0.10.4-alpha 2,857 3/16/2012
0.10.3-alpha 3,036 3/15/2012
0.10.1-alpha 2,981 3/15/2012
0.9.1-alpha 2,786 2/25/2012