Serilog 3.1.2-dev-02097

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
.NET 5.0 .NET Standard 2.0 .NET Framework 4.6.2
This is a prerelease version of Serilog.
dotnet add package Serilog --version 3.1.2-dev-02097
NuGet\Install-Package Serilog -Version 3.1.2-dev-02097
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="Serilog" Version="3.1.2-dev-02097" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog --version 3.1.2-dev-02097
#r "nuget: Serilog, 3.1.2-dev-02097"
#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 Serilog as a Cake Addin
#addin nuget:?package=Serilog&version=3.1.2-dev-02097&prerelease

// Install Serilog as a Cake Tool
#tool nuget:?package=Serilog&version=3.1.2-dev-02097&prerelease

Serilog Build status NuGet Version NuGet Downloads Stack Overflow

Serilog is a diagnostic logging library for .NET applications. It is easy to set up, has a clean API, and runs on all recent .NET platforms. While it's useful even in the simplest applications, Serilog's support for structured logging shines when instrumenting complex, distributed, and asynchronous applications and systems.

Serilog

Like many other libraries for .NET, Serilog provides diagnostic logging to files, the console, and many other outputs.

using var log = new LoggerConfiguration()
    .WriteTo.Console()
    .WriteTo.File("log.txt")
    .CreateLogger();

log.Information("Hello, Serilog!");

Unlike other logging libraries, Serilog is built from the ground up to record structured event data.

var position = new { Latitude = 25, Longitude = 134 };
var elapsedMs = 34;

log.Information("Processed {@Position} in {Elapsed} ms", position, elapsedMs);

Serilog uses message templates, a simple DSL that extends .NET format strings with named as well as positional parameters. Instead of formatting events immediately into text, Serilog captures the values associated with each named parameter.

The example above records two properties, Position and Elapsed, in the log event. The @ operator in front of Position tells Serilog to serialize the object passed in, rather than convert it using ToString(). Serilog's deep and rich support for structured event data opens up a huge range of diagnostic possibilities not available when using traditional loggers.

Rendered into JSON format for example, these properties appear alongside the timestamp, level, and message like:

{"Position": {"Latitude": 25, "Longitude": 134}, "Elapsed": 34}

Back-ends that are capable of recording structured event data make log searches and analysis possible without log parsing or regular expressions.

Supporting structured data doesn't mean giving up text: when Serilog writes events to files or the console, the template and properties are rendered into friendly human-readable text just like a traditional logging library would produce:

09:14:22 [INF] Processed {"Latitude": 25, "Longitude": 134} in 34 ms.

Upgrading from an earlier Serilog version? Find release notes here.

Features

  • Community-backed and actively developed
  • Format-based logging API with familiar levels like Debug, Information, Warning, Error, and so-on
  • Discoverable C# configuration syntax and optional XML or JSON configuration support
  • Efficient when enabled, extremely low overhead when a logging level is switched off
  • Best-in-class .NET Core support, including rich integration with ASP.NET Core
  • Support for a comprehensive range of sinks, including files, the console, on-premises and cloud-based log servers, databases, and message queues
  • Sophisticated enrichment of log events with contextual information, including scoped (LogContext) properties, thread and process identifiers, and domain-specific correlation ids such as HttpRequestId
  • Zero-shared-state Logger objects, with an optional global static Log class
  • Format-agnostic logging pipeline that can emit events in plain text, JSON, in-memory LogEvent objects (including Rx pipelines) and other formats

Getting started

Serilog is installed from NuGet. To view log events, one or more sinks need to be installed as well, here we'll use the pretty-printing console sink, and a rolling file set:

dotnet add package Serilog
dotnet add package Serilog.Sinks.Console
dotnet add package Serilog.Sinks.File

The simplest way to set up Serilog is using the static Log class. A LoggerConfiguration is used to create and assign the default logger, normally in Program.cs:

using Serilog;

Log.Logger = new LoggerConfiguration()
    .WriteTo.Console()
    .WriteTo.File("log.txt",
        rollingInterval: RollingInterval.Day,
        rollOnFileSizeLimit: true)
    .CreateLogger();

try
{
    // Your program here...
    const string name = "Serilog";
    Log.Information("Hello, {Name}!", name);
    throw new InvalidOperationException("Oops...");
}
catch (Exception ex)
{
    Log.Error(ex, "Unhandled exception");
}
finally
{
    await Log.CloseAndFlushAsync(); // ensure all logs written before app exits
}

Find more, including a runnable example application, under the Getting Started topic in the documentation.

Getting help

To learn more about Serilog, check out the documentation - you'll find information there on the most common scenarios. If Serilog isn't working the way you expect, you may find the troubleshooting guide useful.

Serilog has an active and helpful community who are happy to help point you in the right direction or work through any issues you might encounter. You can get in touch via:

We welcome reproducible bug reports and detailed feature requests through our GitHub issue tracker; note the other resource are much better for quick questions or seeking usage help.

Contributing

Would you like to help make Serilog even better? We keep a list of issues that are approachable for newcomers under the up-for-grabs label (accessible only when logged into GitHub). Before starting work on a pull request, we suggest commenting on, or raising, an issue on the issue tracker so that we can help and coordinate efforts. For more details check out our contributing guide.

When contributing please keep in mind our Code of Conduct.

Detailed build status

Branch AppVeyor
dev Build status
main Build status

Serilog is copyright © Serilog Contributors - Provided under the Apache License, Version 2.0. Needle and thread logo a derivative of work by Kenneth Appiah.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 was computed.  net8.0-android 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 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 is compatible.  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)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3.2K)

Showing the top 5 NuGet packages that depend on Serilog:

Package Downloads
Serilog.Sinks.File The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Write Serilog events to text files in plain or JSON format.

Serilog.Sinks.Console The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A Serilog sink that writes log events to the console/terminal.

Serilog.Extensions.Logging The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Low-level Serilog provider for Microsoft.Extensions.Logging

Serilog.Formatting.Compact The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A simple, compact JSON-based event format for Serilog.

Serilog.Settings.Configuration The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.

GitHub repositories (379)

Showing the top 5 popular GitHub repositories that depend on Serilog:

Repository Stars
netchx/netch
A simple proxy client
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.
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
IdentityServer/IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
spectreconsole/spectre.console
A .NET library that makes it easier to create beautiful console applications.
Version Downloads Last updated
3.1.2-dev-02097 4,942 11/17/2023
3.1.1 738,181 11/10/2023
3.1.1-dev-02091 71 11/10/2023
3.1.0 336,026 11/9/2023
3.1.0-dev-02086 6,919 10/26/2023
3.1.0-dev-02083 4,853 10/22/2023
3.1.0-dev-02078 29,513 10/10/2023
3.1.0-dev-02077 3,158 10/9/2023
3.1.0-dev-02072 624 10/9/2023
3.1.0-dev-02071 7,572 10/3/2023
3.1.0-dev-02070 885 10/3/2023
3.1.0-dev-02064 1,655 10/2/2023
3.0.2-dev-02063 608 10/2/2023
3.0.2-dev-02056 7,824 9/20/2023
3.0.2-dev-02044 59,179 7/10/2023
3.0.2-dev-02042 6,844 7/6/2023
3.0.1 8,727,480 6/21/2023
3.0.1-dev-02033 764 6/21/2023
3.0.0 402,951 6/19/2023
3.0.0-dev-02028 4,300 6/19/2023
3.0.0-dev-02025 620 6/19/2023
3.0.0-dev-02022 29,759 5/31/2023
3.0.0-dev-02018 1,434 5/29/2023
3.0.0-dev-02012 3,962 5/24/2023
3.0.0-dev-02010 1,495 5/24/2023
3.0.0-dev-02008 626 5/24/2023
3.0.0-dev-01998 34,110 5/9/2023
3.0.0-dev-01993 1,771 5/5/2023
3.0.0-dev-01984 7,219 5/3/2023
3.0.0-dev-01982 655 5/3/2023
3.0.0-dev-01977 654 5/3/2023
3.0.0-dev-01974 1,385 5/2/2023
3.0.0-dev-01970 2,192 5/1/2023
3.0.0-dev-01969 638 5/1/2023
3.0.0-dev-01958 40,187 3/30/2023
3.0.0-dev-01957 744 3/30/2023
3.0.0-dev-01954 1,669 3/29/2023
3.0.0-dev-01950 2,094 3/29/2023
3.0.0-dev-01949 600 3/29/2023
3.0.0-dev-01948 671 3/29/2023
3.0.0-dev-01943 665 3/29/2023
3.0.0-dev-01942 633 3/29/2023
3.0.0-dev-01939 2,518 3/28/2023
3.0.0-dev-01927 3,064 3/26/2023
3.0.0-dev-01926 20,134 3/13/2023
3.0.0-dev-01924 769 3/12/2023
3.0.0-dev-01923 628 3/12/2023
3.0.0-dev-01921 5,180 3/9/2023
3.0.0-dev-01910 15,538 3/3/2023
3.0.0-dev-01909 1,806 3/3/2023
3.0.0-dev-01907 794 3/2/2023
3.0.0-dev-01901 5,699 2/28/2023
3.0.0-dev-01900 701 2/28/2023
3.0.0-dev-01899 1,122 2/28/2023
3.0.0-dev-01885 3,094 2/27/2023
3.0.0-dev-01884 2,755 2/25/2023
3.0.0-dev-01873 660 2/25/2023
3.0.0-dev-01870 679 2/25/2023
3.0.0-dev-01862 70,077 2/3/2023
3.0.0-dev-01860 686 2/3/2023
3.0.0-dev-01857 641 2/3/2023
3.0.0-dev-01856 679 2/3/2023
3.0.0-dev-01853 661 2/3/2023
3.0.0-dev-01850 5,729 2/3/2023
3.0.0-dev-01842 14,619 1/30/2023
3.0.0-dev-01840 1,244 1/30/2023
3.0.0-dev-01839 659 1/30/2023
3.0.0-dev-01838 608 1/30/2023
3.0.0-dev-01837 708 1/30/2023
3.0.0-dev-01836 660 1/30/2023
3.0.0-dev-01835 735 1/30/2023
3.0.0-dev-01828 659 1/30/2023
3.0.0-dev-01822 676 1/30/2023
3.0.0-dev-01817 778 1/30/2023
3.0.0-dev-01812 4,301 1/28/2023
3.0.0-dev-01811 608 1/28/2023
3.0.0-dev-01809 699 1/28/2023
3.0.0-dev-01801 3,919 1/27/2023
3.0.0-dev-01800 673 1/27/2023
3.0.0-dev-01794 918 1/26/2023
3.0.0-dev-01787 917 1/26/2023
3.0.0-dev-01774 1,277 1/25/2023
3.0.0-dev-01771 672 1/25/2023
3.0.0-dev-01768 662 1/25/2023
3.0.0-dev-01739 929 1/25/2023
3.0.0-dev-01728 684 1/25/2023
3.0.0-dev-01723 719 1/25/2023
3.0.0-dev-01722 658 1/25/2023
3.0.0-dev-01716 668 1/25/2023
3.0.0-dev-01703 8,503 1/25/2023
3.0.0-dev-01701 1,890 1/25/2023
3.0.0-dev-01691 761 1/25/2023
3.0.0-dev-01688 668 1/25/2023
3.0.0-dev-01685 673 1/25/2023
3.0.0-dev-01680 674 1/25/2023
3.0.0-dev-01675 653 1/25/2023
3.0.0-dev-01671 668 1/24/2023
3.0.0-dev-01670 684 1/24/2023
3.0.0-dev-01669 685 1/24/2023
3.0.0-dev-01668 670 1/24/2023
3.0.0-dev-01667 654 1/24/2023
3.0.0-dev-01666 668 1/24/2023
3.0.0-dev-01645 2,713 1/24/2023
2.12.1-dev-01635 144,250 12/14/2022
2.12.1-dev-01634 678 12/14/2022
2.12.1-dev-01629 1,631 12/13/2022
2.12.1-dev-01621 2,667 12/13/2022
2.12.1-dev-01620 619 12/13/2022
2.12.1-dev-01594 36,269 11/30/2022
2.12.1-dev-01587 95,500 10/24/2022
2.12.0 57,256,575 9/13/2022
2.12.0-dev-01571 737 9/13/2022
2.12.0-dev-01568 2,314 9/12/2022
2.12.0-dev-01564 1,293 9/9/2022
2.12.0-dev-01559 1,383 9/6/2022
2.12.0-dev-01555 1,554 9/5/2022
2.12.0-dev-01553 673 9/5/2022
2.12.0-dev-01551 886 9/5/2022
2.12.0-dev-01543 4,202 9/1/2022
2.12.0-dev-01538 792 8/31/2022
2.12.0-dev-01535 4,766 8/30/2022
2.12.0-dev-01533 6,143 8/26/2022
2.12.0-dev-01525 2,372 8/25/2022
2.12.0-dev-01520 1,165 8/25/2022
2.12.0-dev-01518 642 8/25/2022
2.12.0-dev-01516 615 8/25/2022
2.12.0-dev-01511 702 8/25/2022
2.12.0-dev-01504 1,042 8/23/2022
2.12.0-dev-01501 10,876 8/17/2022
2.12.0-dev-01499 1,145 8/17/2022
2.12.0-dev-01494 3,952 8/9/2022
2.12.0-dev-01492 726 8/9/2022
2.12.0-dev-01490 690 8/9/2022
2.12.0-dev-01489 701 8/9/2022
2.12.0-dev-01479 23,437 8/2/2022
2.12.0-dev-01477 643 8/2/2022
2.12.0-dev-01474 672 8/2/2022
2.12.0-dev-01471 703 8/1/2022
2.12.0-dev-01463 3,224 7/29/2022
2.12.0-dev-01458 717 7/28/2022
2.12.0-dev-01451 1,913 7/27/2022
2.12.0-dev-01449 673 7/27/2022
2.12.0-dev-01447 1,026 7/27/2022
2.12.0-dev-01445 709 7/27/2022
2.12.0-dev-01439 6,833 7/26/2022
2.12.0-dev-01435 894 7/25/2022
2.11.1-dev-01397 129,536 5/4/2022
2.11.0 40,273,652 4/24/2022
2.11.0-dev-01391 749 4/23/2022
2.11.0-dev-01387 1,037 4/23/2022
2.11.0-dev-01380 251,736 1/23/2022
2.11.0-dev-01377 254,445 12/8/2021
2.11.0-dev-01371 239,192 9/8/2021
2.11.0-dev-01367 38,656 8/20/2021
2.10.1-dev-01366 8,246 8/19/2021
2.10.1-dev-01365 7,170 8/19/2021
2.10.1-dev-01343 203,891 6/23/2021
2.10.1-dev-01338 2,913 6/22/2021
2.10.1-dev-01337 2,859 6/22/2021
2.10.1-dev-01334 923 6/22/2021
2.10.1-dev-01324 1,738 6/21/2021
2.10.1-dev-01321 829 6/20/2021
2.10.1-dev-01315 6,026 6/15/2021
2.10.1-dev-01314 848 6/15/2021
2.10.1-dev-01308 32,088 5/17/2021
2.10.1-dev-01306 15,306 5/11/2021
2.10.1-dev-01285 230,953 2/9/2021
2.10.1-dev-01265 223,414 12/10/2020
2.10.1-dev-01256 101,253 11/4/2020
2.10.1-dev-01249 97,846 9/10/2020
2.10.1-dev-01248 38,145 9/10/2020
2.10.0 226,537,040 9/10/2020
2.10.0-dev-01245 1,315 9/9/2020
2.10.0-dev-01240 29,265 8/16/2020
2.10.0-dev-01226 12,747 8/2/2020
2.10.0-dev-01221 3,609 7/30/2020
2.10.0-dev-01219 1,251 7/30/2020
2.10.0-dev-01213 9,293 7/25/2020
2.10.0-dev-01211 1,460 7/25/2020
2.10.0-dev-01191 216,456 6/12/2020
2.10.0-dev-01187 24,972 5/26/2020
2.9.1-dev-01177 79,010 5/5/2020
2.9.1-dev-01172 9,209 5/1/2020
2.9.1-dev-01169 4,107 4/30/2020
2.9.1-dev-01167 17,435 4/27/2020
2.9.1-dev-01166 1,598 4/26/2020
2.9.1-dev-01165 3,373 4/23/2020
2.9.1-dev-01154 599,746 11/25/2019
2.9.1-dev-01151 59,534 10/29/2019
2.9.1-dev-01149 1,921 10/29/2019
2.9.1-dev-01148 1,870 10/29/2019
2.9.1-dev-01141 35,429 10/16/2019
2.9.1-dev-01138 9,947 10/15/2019
2.9.0 129,286,997 10/13/2019
2.9.0-dev-01133 10,976 10/5/2019
2.9.0-dev-01124 84,885 8/31/2019
2.9.0-dev-01119 37,344 7/29/2019
2.9.0-dev-01116 38,426 7/11/2019
2.9.0-dev-01102 23,523 6/24/2019
2.9.0-dev-01099 8,623 6/22/2019
2.9.0-dev-01098 6,962 6/21/2019
2.9.0-dev-01091 27,656 6/3/2019
2.8.1-dev-01090 11,320 5/31/2019
2.8.1-dev-01086 9,974 5/29/2019
2.8.1-dev-01085 6,391 5/29/2019
2.8.1-dev-01063 18,778 5/24/2019
2.8.1-dev-01058 14,790 5/19/2019
2.8.1-dev-01054 29,987 5/2/2019
2.8.1-dev-01052 8,214 4/30/2019
2.8.1-dev-01049 7,195 4/26/2019
2.8.1-dev-01048 6,295 4/26/2019
2.8.1-dev-01047 26,880 4/22/2019
2.8.0 151,486,809 1/16/2019
2.8.0-dev-01042 13,887 1/14/2019
2.7.2-dev-01041 7,252 1/10/2019
2.7.2-dev-01033 127,067 10/15/2018
2.7.2-dev-01032 6,618 10/15/2018
2.7.2-dev-01030 7,025 10/14/2018
2.7.2-dev-01027 54,807 9/22/2018
2.7.2-dev-01024 63,624 8/1/2018
2.7.2-dev-01023 7,544 7/31/2018
2.7.2-dev-01017 74,684 7/17/2018
2.7.2-dev-01013 20,913 7/9/2018
2.7.2-dev-01010 16,819 6/29/2018
2.7.2-dev-01005 62,722 6/13/2018
2.7.1 34,530,510 5/18/2018
2.7.1-dev-01000 6,947 5/18/2018
2.7.1-dev-00993 10,015 5/13/2018
2.7.1-dev-00990 7,230 5/13/2018
2.7.1-dev-00985 7,954 5/13/2018
2.7.1-dev-00983 9,657 5/12/2018
2.7.1-dev-00980 20,601 5/8/2018
2.7.1-dev-00972 31,391 3/24/2018
2.7.1-dev-00967 8,347 3/21/2018
2.7.1-dev-00963 7,964 3/20/2018
2.7.1-dev-00960 71,635 2/21/2018
2.7.1-dev-00956 8,053 2/20/2018
2.7.1-dev-00950 32,280 1/28/2018
2.6.1-dev-00948 9,479 1/28/2018
2.6.1-dev-00938 11,150 1/22/2018
2.6.1-dev-00936 64,770 12/29/2017
2.6.0 68,941,757 12/4/2017
2.6.0-dev-00932 10,337 11/27/2017
2.6.0-dev-00929 8,049 11/23/2017
2.6.0-dev-00925 78,309 11/15/2017
2.6.0-dev-00923 17,396 11/10/2017
2.6.0-dev-00922 11,808 11/8/2017
2.6.0-dev-00919 9,468 11/7/2017
2.6.0-dev-00915 57,540 10/23/2017
2.6.0-dev-00911 12,526 10/19/2017
2.6.0-dev-00904 10,798 10/11/2017
2.6.0-dev-00902 9,857 10/9/2017
2.6.0-dev-00894 28,991 9/23/2017
2.6.0-dev-00892 11,768 9/20/2017
2.5.1-dev-00890 9,087 9/20/2017
2.5.1-dev-00886 10,080 9/17/2017
2.5.1-dev-00873 34,883 7/28/2017
2.5.1-dev-00869 27,802 7/4/2017
2.5.1-dev-00863 8,927 7/2/2017
2.5.1-dev-00862 8,405 7/2/2017
2.5.1-dev-00859 10,254 6/21/2017
2.5.0 108,797,330 6/21/2017
2.5.0-dev-00855 10,077 6/15/2017
2.5.0-dev-00853 9,786 6/13/2017
2.5.0-dev-00848 9,688 6/6/2017
2.5.0-dev-00842 9,197 6/4/2017
2.5.0-dev-00841 8,308 6/4/2017
2.5.0-dev-00839 8,146 6/3/2017
2.5.0-dev-00833 8,348 6/1/2017
2.5.0-dev-00822 8,821 5/28/2017
2.5.0-dev-00820 7,898 5/28/2017
2.5.0-dev-00817 39,150 4/7/2017
2.5.0-dev-00814 9,556 4/5/2017
2.5.0-dev-00812 9,531 4/2/2017
2.4.1-dev-00811 7,145 4/2/2017
2.4.1-dev-00805 10,565 3/22/2017
2.4.1-dev-00801 18,383 3/10/2017
2.4.1-dev-00799 7,040 3/10/2017
2.4.1-dev-00796 7,309 3/9/2017
2.4.0 5,522,898 2/3/2017
2.4.0-dev-00771 9,879 1/29/2017
2.4.0-dev-00769 9,268 1/19/2017
2.4.0-dev-00767 17,243 11/30/2016
2.4.0-dev-00766 8,930 11/29/2016
2.4.0-dev-00760 7,324 11/23/2016
2.4.0-dev-00757 7,667 11/23/2016
2.4.0-dev-00755 6,948 11/23/2016
2.4.0-dev-00750 8,471 11/17/2016
2.4.0-dev-00746 9,517 11/10/2016
2.4.0-dev-00739 8,827 11/8/2016
2.4.0-dev-00736 8,105 11/2/2016
2.4.0-dev-00733 7,710 10/30/2016
2.4.0-dev-00730 15,958 10/20/2016
2.4.0-dev-00728 9,308 10/12/2016
2.4.0-dev-00723 8,832 10/5/2016
2.3.0 80,088,099 10/5/2016
2.3.0-dev-00719 8,012 10/4/2016
2.3.0-dev-00711 9,129 9/19/2016
2.3.0-dev-00707 9,224 9/8/2016
2.3.0-dev-00705 7,601 9/7/2016
2.3.0-dev-00704 7,748 9/7/2016
2.2.1 616,596 8/29/2016
2.2.1-dev-00697 7,447 8/28/2016
2.2.0 636,945 8/26/2016
2.2.0-dev-00693 7,614 8/26/2016
2.2.0-dev-00690 7,639 8/19/2016
2.2.0-dev-00688 10,188 8/15/2016
2.1.1-dev-00686 8,321 8/12/2016
2.1.1-dev-00680 7,611 8/11/2016
2.1.0 841,328 7/26/2016
2.1.0-dev-00674 9,403 7/22/2016
2.1.0-dev-00670 13,972 7/6/2016
2.1.0-dev-00668 7,928 7/5/2016
2.1.0-dev-00666 7,911 7/5/2016
2.0.1-dev-00665 7,563 7/4/2016
2.0.0 43,137,944 6/27/2016
2.0.0-rc-640 9,939 6/20/2016
2.0.0-rc-634 7,229 6/19/2016
2.0.0-rc-633 9,302 6/19/2016
2.0.0-rc-628 7,255 6/18/2016
2.0.0-rc-622 7,362 6/17/2016
2.0.0-rc-621 7,086 6/17/2016
2.0.0-rc-619 7,849 6/15/2016
2.0.0-rc-618 7,232 6/15/2016
2.0.0-rc-606 8,532 6/12/2016
2.0.0-rc-602 8,181 6/7/2016
2.0.0-rc-600 9,379 6/2/2016
2.0.0-rc-598 8,054 5/31/2016
2.0.0-rc-596 7,219 5/31/2016
2.0.0-rc-594 7,255 5/31/2016
2.0.0-rc-587 7,786 5/30/2016
2.0.0-rc-577 8,802 5/26/2016
2.0.0-rc-576 13,288 5/26/2016
2.0.0-rc-573 7,194 5/25/2016
2.0.0-rc-563 8,718 5/23/2016
2.0.0-rc-556 21,080 5/17/2016
2.0.0-beta-541 9,325 5/5/2016
2.0.0-beta-537 7,603 5/2/2016
2.0.0-beta-533 7,418 4/29/2016
2.0.0-beta-531 8,656 4/20/2016
2.0.0-beta-530 7,436 4/19/2016
2.0.0-beta-523 11,237 3/18/2016
2.0.0-beta-521 7,138 3/18/2016
2.0.0-beta-519 7,621 3/16/2016
2.0.0-beta-516 7,934 3/15/2016
2.0.0-beta-513 7,309 3/15/2016
2.0.0-beta-511 8,394 3/14/2016
2.0.0-beta-509 7,474 3/13/2016
2.0.0-beta-507 13,172 3/1/2016
2.0.0-beta-505 10,967 2/25/2016
2.0.0-beta-502 7,859 2/22/2016
2.0.0-beta-499 7,237 2/21/2016
2.0.0-beta-495 7,227 2/19/2016
2.0.0-beta-494 7,838 2/18/2016
2.0.0-beta-493 7,878 2/18/2016
2.0.0-beta-487 7,448 2/16/2016
2.0.0-beta-486 8,080 2/11/2016
2.0.0-beta-479 7,453 2/9/2016
2.0.0-beta-478 7,314 2/9/2016
2.0.0-beta-465 38,463 1/26/2016
2.0.0-beta-456 7,741 1/20/2016
2.0.0-beta-450 8,236 1/14/2016
2.0.0-beta-449 7,860 1/14/2016
2.0.0-beta-432 7,414 1/12/2016
2.0.0-beta-423 19,436 12/28/2015
2.0.0-beta-418 7,370 12/26/2015
2.0.0-beta-416 7,256 12/23/2015
2.0.0-beta-403 8,557 12/3/2015
2.0.0-beta-395 8,880 11/23/2015
1.5.14 7,156,034 11/13/2015
1.5.13 11,505 11/13/2015
1.5.12 69,848 10/21/2015
1.5.11 127,489 9/9/2015
1.5.10 82,394 9/3/2015
1.5.9 164,222 7/20/2015
1.5.8 27,220 7/15/2015
1.5.7 134,774 6/11/2015
1.5.6 86,390 5/17/2015
1.5.5 73,694 4/28/2015
1.5.1 93,468 4/9/2015
1.4.214 19,048 4/7/2015
1.4.204 207,248 3/7/2015
1.4.196 36,625 2/22/2015
1.4.182 21,840 2/15/2015
1.4.168 26,867 2/8/2015
1.4.155 19,451 2/1/2015
1.4.154 9,855 2/1/2015
1.4.152 8,469 2/1/2015
1.4.139 29,573 1/23/2015
1.4.128 11,786 1/17/2015
1.4.126 8,895 1/17/2015
1.4.118 17,386 1/13/2015
1.4.113 20,400 1/6/2015
1.4.102 30,864 12/21/2014
1.4.99 16,753 12/18/2014
1.4.97 15,442 12/18/2014
1.4.95 12,357 12/16/2014
1.4.76 23,474 12/8/2014
1.4.75 11,615 12/7/2014
1.4.39 18,042 11/26/2014
1.4.34 18,347 11/24/2014
1.4.28 15,435 11/24/2014
1.4.27 15,201 11/23/2014
1.4.23 15,338 11/21/2014
1.4.22 12,695 11/21/2014
1.4.21 15,025 11/21/2014
1.4.18 17,356 11/18/2014
1.4.17 8,744 11/18/2014
1.4.16 421,928 11/18/2014
1.4.15 59,707 11/4/2014
1.4.14 19,839 10/23/2014
1.4.13 8,432 10/23/2014
1.4.12 13,018 10/12/2014
1.4.11 10,904 10/8/2014
1.4.10 13,313 9/26/2014
1.4.9 18,181 9/17/2014
1.4.8 11,402 9/11/2014
1.4.7 32,544 9/1/2014
1.4.6 8,670 8/31/2014
1.4.5 9,296 8/27/2014
1.4.4 9,396 8/27/2014
1.4.3 10,382 8/25/2014
1.4.2 8,671 8/23/2014
1.4.1 154,670 8/23/2014
1.3.43 41,435 8/4/2014
1.3.42 9,151 7/30/2014
1.3.41 10,449 7/28/2014
1.3.40 8,348 7/26/2014
1.3.39 8,985 7/25/2014
1.3.38 8,271 7/25/2014
1.3.37 8,270 7/25/2014
1.3.36 10,685 7/20/2014
1.3.35 9,188 7/17/2014
1.3.34 13,066 7/6/2014
1.3.33 17,426 6/30/2014
1.3.30 9,596 6/19/2014
1.3.29 8,382 6/19/2014
1.3.28 8,588 6/19/2014
1.3.27 8,426 6/18/2014
1.3.26 9,816 6/18/2014
1.3.25 20,947 6/9/2014
1.3.24 27,430 5/21/2014
1.3.23 8,554 5/20/2014
1.3.20 9,405 5/18/2014
1.3.19 8,499 5/17/2014
1.3.18 8,645 5/17/2014
1.3.17 8,606 5/17/2014
1.3.16 8,592 5/17/2014
1.3.15 27,945 5/16/2014
1.3.14 8,443 5/16/2014
1.3.13 8,233 5/16/2014
1.3.12 8,641 5/14/2014
1.3.7 9,475 5/11/2014
1.3.6 9,277 5/9/2014
1.3.5 8,785 5/6/2014
1.3.4 8,558 5/4/2014
1.3.3 30,737 4/28/2014
1.3.1 13,202 4/26/2014
1.2.53 15,853 4/26/2014
1.2.52 8,525 4/24/2014
1.2.51 8,935 4/18/2014
1.2.50 8,416 4/18/2014
1.2.49 8,439 4/17/2014
1.2.48 8,942 4/14/2014
1.2.47 8,688 4/14/2014
1.2.45 8,496 4/13/2014
1.2.44 8,956 4/9/2014
1.2.41 8,801 4/7/2014
1.2.40 8,611 4/7/2014
1.2.39 9,086 3/29/2014
1.2.38 8,527 3/29/2014
1.2.37 8,651 3/29/2014
1.2.29 9,036 3/16/2014
1.2.27 8,765 3/14/2014
1.2.26 8,555 3/12/2014
1.2.25 12,952 2/20/2014
1.2.8 8,755 2/12/2014
1.2.7 10,027 1/13/2014
1.2.6 8,552 1/13/2014
1.2.5 8,443 1/10/2014
1.2.4 9,456 12/16/2013
1.2.3 13,469 11/30/2013
1.1.2 19,085 11/24/2013
1.1.1 18,557 11/23/2013
1.0.3 22,423 11/1/2013
1.0.2 9,545 10/14/2013
1.0.1 163,438 10/10/2013
0.9.5 8,538 10/7/2013
0.9.4 9,638 9/14/2013
0.9.3 8,353 9/12/2013
0.9.2 8,589 9/3/2013
0.9.1 9,510 8/24/2013
0.8.5 13,481 7/22/2013
0.8.4 8,405 7/20/2013
0.8.3 10,401 7/13/2013
0.8.2 8,727 7/11/2013
0.8.1 8,622 7/9/2013
0.7.2 8,657 7/6/2013
0.6.5 8,793 7/4/2013
0.6.4 8,703 7/3/2013
0.6.3 8,770 6/28/2013
0.6.1 13,043 6/13/2013
0.5.5 8,507 6/12/2013
0.5.4 8,569 6/4/2013
0.5.3 8,402 5/30/2013
0.5.2 8,373 5/27/2013
0.5.1 8,537 5/26/2013
0.4.3 8,570 5/25/2013
0.3.2 8,547 5/19/2013
0.3.1 8,561 5/19/2013
0.2.11 8,597 5/14/2013
0.2.10 8,562 5/13/2013
0.2.9 8,454 5/10/2013
0.2.8 10,446 5/9/2013
0.2.4 8,558 4/29/2013
0.2.3 9,047 4/23/2013
0.2.2 8,644 4/8/2013
0.2.1 8,762 4/8/2013
0.1.18 8,668 4/6/2013
0.1.17 8,501 4/4/2013
0.1.16 8,373 4/3/2013
0.1.12 8,553 4/1/2013
0.1.11 8,511 3/30/2013
0.1.10 8,514 3/27/2013
0.1.9 8,639 3/26/2013
0.1.8 8,693 3/24/2013
0.1.7 8,759 3/23/2013
0.1.6 547,385 3/23/2013