Rebus.MongoDb
9.0.0
dotnet add package Rebus.MongoDb --version 9.0.0
NuGet\Install-Package Rebus.MongoDb -Version 9.0.0
<PackageReference Include="Rebus.MongoDb" Version="9.0.0" />
paket add Rebus.MongoDb --version 9.0.0
#r "nuget: Rebus.MongoDb, 9.0.0"
// Install Rebus.MongoDb as a Cake Addin #addin nuget:?package=Rebus.MongoDb&version=9.0.0 // Install Rebus.MongoDb as a Cake Tool #tool nuget:?package=Rebus.MongoDb&version=9.0.0
Rebus.MongoDb
Provides MongoDB persistence implementations for Rebus for
- sagas
- subscriptions
- timeouts
Provides transport MongoDb implementations for Rebus
Saga Data
You must ensure to map GuidRepresentation
for classes inheriting from ISagaData
as this is required for any Guid
field in MongoDB.Driver
from 3.x and beyond.
Remember, if you have existing saga data from prior to MongoDB.Driver
3.x, this will use
GuidRepresentation.CSharpLegacy
so you must take care to ensure you map it appropriately.
Inheriting from ISagaData
If your saga data class inherits from the ISagaData
interface, you can either use attributes:
public class MySagaData : ISagaData
{
[BsonGuidRepresentation(GuidRepresentation.Standard)]
public Guid Id { get; set; }
public int Revision { get; set; }
}
Or you can create a BsonClassMap
:
BsonClassMap.RegisterClassMap<MySagaData>(map =>
{
map.MapIdMember(obj => obj.Id).SetSerializer(new GuidSerializer(GuidRepresentation.Standard));
map.MapMember(obj => obj.Revision);
});
Inheriting from SagaData
If you inherit from SagaData
, you can just create a BsonClassMap
which will be applied to all classes inheriting
from the base class:
BsonClassMap.RegisterClassMap<SagaData>(map =>
{
map.MapIdMember(obj => obj.Id).SetSerializer(new GuidSerializer(GuidRepresentation.Standard));
map.MapMember(obj => obj.Revision);
});
Global serializer
A third option, if you prefer to configure a representation globally is:
BsonSerializer.RegisterSerializer(new GuidSerializer(GuidRepresentation.Standard));
Remember, this will apply it globally for any code using MongoDB.Driver
, including your own. So this is only an option
if all your code uses same representation across all collections.
Unit Tests
To run unit test please provide a mongo instance to run test and set the connection string ino REBUS_MONGODB environment variable.
Local nuget pack
To manually create a nuget package specifying manually the version you can use this commandline.
dotnet pack Rebus.MongoDb\Rebus.MongoDb.csproj -o c:\target_directory -c release /p:PackageVersion=6.0.1011 /p:AssemblyVersion=6.0.0 /p:FileVersion=6.0.0 /p:InformationalVersion=6.0.0-__SHA_OF_COMMIT__
//then you need to push
dotnet nuget push .\Rebus.MongoDb.6.0.1011.nupkg -s https://pkgs.dev.azure.com/xxxxx/_packaging/__packageName__/nuget/v3/index.json --api-key az
Product | Versions 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 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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7.2
- mongodb.driver (>= 3.0.0)
- Nito.AsyncEx (>= 5.1.2)
- rebus (>= 8.0.1)
-
.NETStandard 2.1
- mongodb.driver (>= 3.0.0)
- Nito.AsyncEx (>= 5.1.2)
- rebus (>= 8.0.1)
-
net6.0
- mongodb.driver (>= 3.0.0)
- Nito.AsyncEx (>= 5.1.2)
- rebus (>= 8.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
9.0.0 | 106 | 12/18/2024 |
8.1.0 | 15,791 | 8/21/2024 |
8.0.0 | 48,724 | 11/15/2023 |
8.0.0-alpha04 | 2,144 | 8/24/2023 |
8.0.0-alpha03 | 186 | 6/12/2023 |
8.0.0-alpha02 | 164 | 6/6/2023 |
8.0.0-alpha01 | 197 | 3/29/2023 |
7.0.0-b3 | 31,928 | 8/1/2022 |
7.0.0-b2 | 206 | 8/1/2022 |
7.0.0-b1 | 3,114 | 9/22/2021 |
6.0.5 | 221,476 | 4/22/2020 |
6.0.4 | 7,684 | 3/24/2020 |
6.0.0 | 7,309 | 2/5/2020 |
6.0.0-b3 | 554 | 1/16/2020 |
6.0.0-b2 | 710 | 9/8/2019 |
5.1.0 | 1,502 | 1/16/2020 |
5.1.0-b1 | 540 | 1/15/2020 |
5.0.0 | 44,556 | 10/8/2018 |
5.0.0-b02 | 1,314 | 6/22/2018 |
5.0.0-b01 | 1,048 | 6/22/2018 |
4.0.0 | 5,792 | 8/15/2017 |
4.0.0-b06 | 974 | 8/13/2017 |
4.0.0-b05 | 1,062 | 6/13/2017 |
4.0.0-b04 | 983 | 5/18/2017 |
4.0.0-b03 | 1,016 | 5/17/2017 |
4.0.0-b01 | 1,059 | 3/21/2017 |
3.0.0 | 2,607 | 1/5/2017 |
2.0.0 | 1,885 | 9/20/2016 |
2.0.0-b01 | 1,032 | 9/9/2016 |
2.0.0-a1 | 1,005 | 9/1/2016 |
0.99.74 | 1,358 | 8/29/2016 |
0.99.73 | 1,363 | 8/12/2016 |
0.99.72 | 1,387 | 8/4/2016 |
0.99.71 | 1,636 | 8/3/2016 |
0.99.70 | 1,525 | 7/29/2016 |
0.99.68 | 1,344 | 7/18/2016 |
0.99.67 | 1,445 | 7/1/2016 |
0.99.66 | 1,435 | 6/28/2016 |
0.99.65 | 1,428 | 6/23/2016 |
0.99.64 | 1,376 | 6/22/2016 |
0.99.63 | 1,363 | 6/21/2016 |
0.99.62 | 1,402 | 6/17/2016 |
0.99.61 | 1,331 | 6/17/2016 |
0.99.60 | 1,476 | 6/15/2016 |
0.99.59 | 1,356 | 6/3/2016 |
0.99.58 | 1,406 | 5/24/2016 |
0.99.57 | 1,415 | 5/22/2016 |
0.99.56 | 1,385 | 5/22/2016 |
0.99.55 | 1,361 | 5/16/2016 |
0.99.54 | 1,339 | 5/12/2016 |
0.99.53 | 1,321 | 5/12/2016 |
0.99.52 | 1,371 | 5/11/2016 |
0.99.51 | 1,395 | 5/9/2016 |
0.99.50 | 1,384 | 4/13/2016 |
0.99.48 | 1,354 | 4/6/2016 |
0.99.47 | 1,315 | 3/31/2016 |
0.99.46 | 1,300 | 3/30/2016 |
0.99.45 | 1,284 | 3/29/2016 |
0.99.44 | 1,309 | 3/26/2016 |
0.99.43 | 1,323 | 3/26/2016 |
0.99.42 | 1,399 | 3/22/2016 |
0.99.41 | 1,418 | 3/17/2016 |
0.99.40 | 1,375 | 3/15/2016 |
0.99.39 | 1,383 | 3/14/2016 |
0.99.38 | 1,375 | 3/9/2016 |
0.99.37 | 1,296 | 3/9/2016 |
0.99.36 | 1,353 | 3/3/2016 |
0.99.35 | 1,453 | 2/22/2016 |
0.99.34 | 1,398 | 2/19/2016 |
0.99.33 | 1,429 | 2/12/2016 |
0.99.32 | 1,387 | 2/10/2016 |
0.99.31 | 1,386 | 2/8/2016 |
0.99.30 | 1,312 | 2/5/2016 |
0.99.29 | 1,383 | 2/2/2016 |
0.99.27 | 1,373 | 1/28/2016 |
0.99.26 | 1,362 | 1/27/2016 |
0.99.25 | 1,350 | 1/22/2016 |
0.99.24 | 1,362 | 1/18/2016 |
0.99.23 | 1,355 | 12/18/2015 |
0.99.22 | 1,386 | 12/18/2015 |
0.99.21 | 1,339 | 12/11/2015 |
0.99.20 | 1,383 | 12/10/2015 |
0.99.19 | 1,399 | 12/8/2015 |
0.99.18 | 1,522 | 12/7/2015 |
0.99.17 | 1,350 | 12/7/2015 |
0.99.16 | 1,703 | 11/30/2015 |
0.99.14 | 1,488 | 11/24/2015 |
0.99.13 | 1,478 | 11/23/2015 |
0.99.12 | 1,516 | 11/17/2015 |
0.99.11 | 1,435 | 11/17/2015 |
0.99.10 | 1,408 | 11/11/2015 |
0.99.9 | 1,406 | 11/5/2015 |
0.99.8 | 1,396 | 11/5/2015 |
0.99.7 | 1,448 | 10/29/2015 |
0.99.5 | 1,399 | 10/27/2015 |
0.99.4 | 1,402 | 10/27/2015 |
0.99.2 | 1,434 | 10/12/2015 |
0.99.1 | 1,781 | 10/8/2015 |
0.99.0 | 1,565 | 10/7/2015 |
0.98.12 | 1,468 | 9/17/2015 |
0.98.11 | 1,461 | 9/17/2015 |
0.98.10 | 1,413 | 9/16/2015 |
0.98.9 | 1,390 | 9/14/2015 |
0.98.8 | 1,446 | 9/13/2015 |
0.98.7 | 1,453 | 9/9/2015 |
0.98.6 | 1,444 | 9/7/2015 |
0.98.5 | 1,425 | 9/3/2015 |
0.98.4 | 1,401 | 9/3/2015 |
0.98.3 | 1,451 | 9/1/2015 |
0.98.2 | 1,467 | 8/27/2015 |
0.98.1 | 1,447 | 8/27/2015 |
0.98.0 | 1,426 | 8/26/2015 |
0.97.0 | 1,368 | 8/25/2015 |
0.96.0 | 1,445 | 8/24/2015 |
0.95.0 | 1,368 | 8/20/2015 |
0.94.0 | 1,458 | 8/19/2015 |
0.93.0 | 1,368 | 8/19/2015 |
0.92.4 | 1,381 | 8/17/2015 |
0.92.3 | 1,819 | 8/13/2015 |
0.92.2 | 1,769 | 8/12/2015 |
0.92.1 | 1,733 | 8/12/2015 |
0.92.0 | 1,752 | 8/11/2015 |
0.91.0 | 1,535 | 8/11/2015 |
0.90.9 | 1,503 | 8/10/2015 |
0.90.8 | 1,708 | 8/9/2015 |
0.90.7 | 1,658 | 8/5/2015 |
0.90.6 | 1,739 | 8/4/2015 |
0.90.5 | 1,740 | 8/4/2015 |
0.90.4 | 1,580 | 8/2/2015 |
0.90.3 | 1,610 | 8/2/2015 |
0.90.2 | 1,592 | 7/31/2015 |
0.90.1 | 1,526 | 7/29/2015 |
0.90.0 | 1,570 | 7/29/2015 |
0.84.0 | 1,767 | 5/15/2015 |
0.83.0 | 1,576 | 4/20/2015 |
0.82.1 | 1,533 | 4/16/2015 |
0.82.0 | 1,572 | 3/19/2015 |
0.81.0 | 1,392 | 3/12/2015 |
0.80.1 | 1,433 | 3/5/2015 |
0.80.0 | 1,795 | 2/19/2015 |
0.79.0 | 1,617 | 2/6/2015 |
0.78.2 | 1,487 | 2/6/2015 |
0.78.1 | 1,462 | 2/5/2015 |
0.78.0 | 1,490 | 1/29/2015 |
0.77.1 | 1,409 | 1/23/2015 |
0.77.0 | 1,492 | 1/15/2015 |
0.76.0 | 1,472 | 1/15/2015 |
0.75.2 | 1,830 | 1/3/2015 |
0.75.1 | 1,861 | 12/21/2014 |
0.75.0 | 1,621 | 12/2/2014 |
0.74.1 | 1,615 | 12/2/2014 |
0.74.0 | 1,646 | 11/30/2014 |
0.73.0 | 1,984 | 11/6/2014 |
0.72.0 | 1,757 | 11/5/2014 |
0.71.4 | 1,493 | 10/29/2014 |
0.71.3 | 1,460 | 10/20/2014 |
0.71.2 | 1,449 | 9/30/2014 |
0.71.1 | 2,589 | 9/19/2014 |
0.71.0 | 1,999 | 8/7/2014 |
0.70.3 | 1,468 | 8/4/2014 |
0.70.2 | 1,443 | 7/31/2014 |
0.70.1 | 1,452 | 7/17/2014 |
0.69.0 | 1,467 | 6/17/2014 |
0.68.0 | 1,453 | 6/5/2014 |
0.67.0 | 1,408 | 5/20/2014 |
0.66.0 | 1,463 | 5/9/2014 |
0.65.0 | 1,409 | 4/27/2014 |
0.64.1 | 1,478 | 4/25/2014 |
0.64.0 | 1,588 | 4/20/2014 |
0.63.1 | 1,630 | 4/19/2014 |
0.63.0 | 1,465 | 3/24/2014 |
0.62.0 | 1,477 | 3/12/2014 |
0.61.1 | 1,388 | 3/5/2014 |
0.61.0 | 1,417 | 3/4/2014 |
0.60.1 | 1,399 | 3/3/2014 |
0.60.0 | 1,421 | 3/3/2014 |
0.59.0 | 1,495 | 2/26/2014 |
0.58.2 | 1,498 | 2/24/2014 |
0.58.1 | 1,499 | 2/24/2014 |
0.58.0 | 1,576 | 2/24/2014 |
0.57.0 | 1,578 | 2/18/2014 |
0.56.1 | 1,469 | 2/4/2014 |
0.56.0 | 1,535 | 1/24/2014 |
0.55.1 | 1,553 | 1/20/2014 |
0.55.0 | 1,508 | 1/20/2014 |
0.54.8 | 1,477 | 1/20/2014 |
0.54.7 | 1,481 | 1/20/2014 |
0.54.6 | 1,419 | 1/20/2014 |
0.54.5 | 1,472 | 1/20/2014 |
0.54.4 | 1,530 | 1/11/2014 |
0.54.3 | 1,471 | 1/8/2014 |
0.54.1 | 1,493 | 12/16/2013 |
0.54.0 | 1,483 | 12/10/2013 |
0.53.1 | 1,531 | 12/9/2013 |
0.53.0 | 1,520 | 12/5/2013 |
0.52.0 | 1,433 | 12/4/2013 |
0.51.1 | 1,544 | 12/3/2013 |
0.51.0 | 1,516 | 12/3/2013 |
0.50.1 | 1,553 | 11/15/2013 |
0.50.0 | 1,508 | 11/15/2013 |
0.49.0 | 1,482 | 11/15/2013 |
0.48.0 | 1,494 | 11/12/2013 |
0.47.0 | 1,481 | 11/6/2013 |
0.46.0 | 1,573 | 10/29/2013 |
0.45.0 | 1,539 | 10/21/2013 |
0.44.5 | 1,541 | 10/11/2013 |
0.44.4 | 1,480 | 10/7/2013 |
0.44.3 | 1,511 | 10/4/2013 |
0.44.2 | 1,516 | 10/4/2013 |
0.44.1 | 1,503 | 10/2/2013 |
0.44.0 | 1,492 | 10/2/2013 |
0.43.1 | 1,583 | 9/24/2013 |
0.43.0 | 1,632 | 9/17/2013 |
0.42.0 | 1,482 | 9/17/2013 |
0.41.0 | 1,507 | 9/10/2013 |
0.40.1 | 1,491 | 9/9/2013 |
0.40.0 | 1,472 | 9/2/2013 |
0.39.0 | 1,470 | 8/29/2013 |
0.38.1 | 1,632 | 8/28/2013 |
0.38.0 | 1,468 | 8/28/2013 |
0.37.0 | 1,470 | 8/26/2013 |
0.36.1 | 1,425 | 8/25/2013 |
0.36.0 | 1,448 | 8/25/2013 |
0.35.6 | 1,488 | 8/20/2013 |
0.35.5 | 1,471 | 8/20/2013 |
0.35.4 | 1,503 | 8/19/2013 |
0.35.3 | 1,470 | 8/17/2013 |
0.35.2 | 1,475 | 8/15/2013 |
0.35.1 | 1,507 | 8/14/2013 |
0.35.0 | 1,533 | 8/6/2013 |
0.34.7 | 1,511 | 8/5/2013 |
0.34.6 | 1,542 | 8/5/2013 |
0.34.5 | 1,516 | 8/2/2013 |
0.34.3 | 1,470 | 7/29/2013 |
0.34.2 | 1,579 | 7/29/2013 |
0.34.1 | 1,678 | 7/27/2013 |
0.34.0 | 1,757 | 7/4/2013 |
0.33.0 | 1,541 | 6/14/2013 |
0.32.5 | 1,598 | 6/2/2013 |
0.32.4 | 1,522 | 5/28/2013 |
0.32.3 | 1,508 | 5/23/2013 |
0.32.1 | 1,473 | 5/15/2013 |
0.32.0 | 1,517 | 4/23/2013 |
0.31.1 | 1,613 | 4/2/2013 |
0.31.0 | 1,466 | 4/2/2013 |
0.30.7 | 1,518 | 3/25/2013 |
0.30.4 | 1,505 | 3/7/2013 |
0.30.3 | 1,508 | 3/7/2013 |
0.30.2 | 1,519 | 3/7/2013 |
0.30.1 | 1,543 | 3/6/2013 |
0.30.0 | 1,501 | 3/5/2013 |
0.29.9 | 1,487 | 3/5/2013 |
0.29.8 | 1,553 | 3/5/2013 |
0.29.7 | 1,560 | 2/28/2013 |
0.29.6 | 1,556 | 2/20/2013 |
0.29.5 | 1,493 | 2/20/2013 |
0.29.4 | 1,424 | 2/8/2013 |
0.29.3 | 1,501 | 2/6/2013 |
0.29.1 | 1,449 | 2/5/2013 |
0.29.0-alpha | 1,036 | 1/22/2013 |
0.28.4 | 1,495 | 1/21/2013 |
0.28.3 | 1,586 | 1/8/2013 |
0.28.2 | 1,479 | 1/8/2013 |
0.28.1 | 1,526 | 12/27/2012 |
0.28.0 | 1,503 | 12/27/2012 |
0.27.1 | 1,759 | 12/4/2012 |
0.27.0 | 1,911 | 12/4/2012 |
0.26.1 | 1,703 | 12/4/2012 |
0.26.0 | 1,812 | 11/20/2012 |
0.25.9 | 1,772 | 11/20/2012 |
0.25.8 | 1,764 | 11/19/2012 |
0.25.7 | 1,698 | 11/18/2012 |
0.25.5 | 1,733 | 11/15/2012 |
0.25.3 | 1,726 | 11/13/2012 |
0.25.2 | 1,708 | 11/13/2012 |
0.25.1 | 1,765 | 11/13/2012 |
0.25.0 | 1,695 | 11/7/2012 |
0.24.9 | 1,709 | 11/7/2012 |
0.24.8 | 1,675 | 11/7/2012 |
0.24.7 | 1,698 | 11/6/2012 |
0.24.6 | 1,634 | 11/1/2012 |
0.24.5 | 1,733 | 10/30/2012 |
0.24.4 | 1,706 | 10/30/2012 |
0.24.3 | 1,668 | 10/26/2012 |
0.24.2 | 1,625 | 10/26/2012 |
0.24.1 | 1,649 | 10/26/2012 |
0.24.0 | 1,677 | 10/25/2012 |
0.23.9 | 1,602 | 10/25/2012 |
0.23.8 | 1,639 | 10/25/2012 |
0.23.7 | 1,708 | 10/25/2012 |
0.23.6 | 1,653 | 10/24/2012 |
0.23.1 | 1,607 | 10/12/2012 |
0.23.0 | 1,597 | 10/10/2012 |
0.22.8 | 1,660 | 10/10/2012 |
0.22.7 | 1,657 | 10/9/2012 |
0.22.6 | 1,646 | 10/9/2012 |
0.22.5 | 1,680 | 10/3/2012 |
0.22.4 | 1,721 | 10/2/2012 |
0.22.3 | 1,668 | 10/2/2012 |
0.22.2 | 1,631 | 9/30/2012 |
0.22.1 | 1,622 | 9/26/2012 |
0.22.0 | 1,607 | 9/26/2012 |
0.21.7 | 1,590 | 9/25/2012 |
0.21.6 | 1,558 | 9/25/2012 |
0.21.5 | 1,592 | 9/11/2012 |
0.21.4 | 1,597 | 9/10/2012 |
0.21.3 | 1,590 | 9/10/2012 |
0.21.2 | 1,575 | 9/10/2012 |
0.21.1 | 1,611 | 9/10/2012 |
0.21.0 | 1,705 | 9/7/2012 |
0.20.9 | 1,560 | 9/7/2012 |
0.20.8 | 1,647 | 9/6/2012 |
0.20.7 | 1,633 | 9/6/2012 |
0.20.6 | 1,549 | 9/6/2012 |
0.20.3 | 1,549 | 9/4/2012 |
0.20.2 | 1,553 | 9/4/2012 |
0.19.7 | 1,618 | 8/29/2012 |
0.19.6 | 1,566 | 8/28/2012 |
0.19.5 | 1,598 | 8/28/2012 |
0.19.4 | 1,605 | 8/28/2012 |
0.19.3 | 1,620 | 8/28/2012 |
0.19.2 | 1,626 | 8/28/2012 |
0.19.1 | 1,563 | 8/26/2012 |
0.18.6 | 1,655 | 8/23/2012 |
0.16.0 | 1,731 | 8/20/2012 |
0.15.9-alpha | 1,098 | 8/14/2012 |
0.15.8-alpha | 1,126 | 8/8/2012 |
0.15.7-alpha | 1,105 | 8/8/2012 |
0.15.6-alpha | 1,074 | 8/8/2012 |
0.15.4-alpha | 1,213 | 8/7/2012 |
0.15.3-alpha | 1,091 | 8/7/2012 |
0.15.2-alpha | 1,100 | 8/7/2012 |
0.15.1-alpha | 1,076 | 8/2/2012 |
0.15.0-alpha | 1,107 | 8/1/2012 |
0.14.0-alpha | 1,040 | 7/30/2012 |
0.13.0-alpha | 1,124 | 7/14/2012 |
0.12.9-alpha | 1,113 | 6/18/2012 |
0.12.8-alpha | 1,102 | 6/18/2012 |
0.12.7-alpha | 1,107 | 6/13/2012 |
0.12.6-alpha | 1,152 | 6/8/2012 |
0.12.5-alpha | 1,098 | 6/5/2012 |
0.12.4-alpha | 1,134 | 6/5/2012 |
0.12.3-alpha | 1,085 | 6/1/2012 |
0.12.2-alpha | 1,126 | 5/31/2012 |
0.12.1-alpha | 1,147 | 5/30/2012 |
0.11.10-alpha | 1,139 | 5/30/2012 |
0.11.9-alpha | 1,103 | 5/30/2012 |
0.11.8-alpha | 1,179 | 5/30/2012 |
0.11.7-alpha | 1,078 | 5/30/2012 |
0.11.6-alpha | 1,080 | 5/29/2012 |
0.11.5-alpha | 1,150 | 5/22/2012 |
0.11.4-alpha | 1,157 | 5/22/2012 |
0.11.3-alpha | 1,172 | 5/15/2012 |
0.11.2-alpha | 1,092 | 5/8/2012 |
0.11.1-alpha | 1,084 | 5/8/2012 |
0.11.0-alpha | 1,105 | 5/8/2012 |
0.10.9-alpha | 1,157 | 4/10/2012 |
0.10.8-alpha | 1,143 | 3/21/2012 |
0.10.7-alpha | 1,208 | 3/20/2012 |
0.10.6-alpha | 1,082 | 3/17/2012 |
0.10.5-alpha | 1,153 | 3/16/2012 |
0.10.4-alpha | 1,148 | 3/16/2012 |
0.10.3-alpha | 1,152 | 3/15/2012 |
0.10.1-alpha | 1,124 | 3/15/2012 |
0.9.1-alpha | 1,153 | 2/26/2012 |