Serilog 3.0.1

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
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Serilog --version 3.0.1
NuGet\Install-Package Serilog -Version 3.0.1
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.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog --version 3.0.1
#r "nuget: Serilog, 3.0.1"
#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.0.1

// Install Serilog as a Cake Tool
#tool nuget:?package=Serilog&version=3.0.1

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.

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 Serilog 1.x? Check out the 2.0 Upgrade Guide and Release Notes.

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.

using Serilog;

public class Program
{
    public static void Main()
    {
        Log.Logger = new LoggerConfiguration()
            .MinimumLevel.Information()
            .WriteTo.Console()
            .WriteTo.File("log.txt",
                rollingInterval: RollingInterval.Day,
                rollOnFileSizeLimit: true)
            .CreateLogger();

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

        Log.CloseAndFlush();
    }
}

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 bug reports and suggestions through our issue tracker here on GitHub.

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 © 2013-2020 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. 
.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.
  • .NETFramework 4.6.2

  • .NETFramework 4.7.1

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net5.0

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.

NuGet packages (3.1K)

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

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.
IdentityServer/IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
spectreconsole/spectre.console
A .NET library that makes it easier to create beautiful console applications.
Version Downloads Last updated
3.0.2-dev-02056 2,294 9/20/2023
3.0.2-dev-02044 33,845 7/10/2023
3.0.2-dev-02042 4,703 7/6/2023
3.0.1 3,900,344 6/21/2023
3.0.1-dev-02033 508 6/21/2023
3.0.0 247,175 6/19/2023
3.0.0-dev-02028 2,524 6/19/2023
3.0.0-dev-02025 407 6/19/2023
3.0.0-dev-02022 21,840 5/31/2023
3.0.0-dev-02018 1,175 5/29/2023
3.0.0-dev-02012 3,279 5/24/2023
3.0.0-dev-02010 1,272 5/24/2023
3.0.0-dev-02008 394 5/24/2023
3.0.0-dev-01998 25,419 5/9/2023
3.0.0-dev-01993 1,444 5/5/2023
3.0.0-dev-01984 6,112 5/3/2023
3.0.0-dev-01982 439 5/3/2023
3.0.0-dev-01977 425 5/3/2023
3.0.0-dev-01974 1,052 5/2/2023
3.0.0-dev-01970 1,588 5/1/2023
3.0.0-dev-01969 422 5/1/2023
3.0.0-dev-01958 32,811 3/30/2023
3.0.0-dev-01957 533 3/30/2023
3.0.0-dev-01954 1,362 3/29/2023
3.0.0-dev-01950 1,627 3/29/2023
3.0.0-dev-01949 404 3/29/2023
3.0.0-dev-01948 466 3/29/2023
3.0.0-dev-01943 454 3/29/2023
3.0.0-dev-01942 443 3/29/2023
3.0.0-dev-01939 2,109 3/28/2023
3.0.0-dev-01927 2,773 3/26/2023
3.0.0-dev-01926 16,822 3/13/2023
3.0.0-dev-01924 537 3/12/2023
3.0.0-dev-01923 403 3/12/2023
3.0.0-dev-01921 4,290 3/9/2023
3.0.0-dev-01910 13,399 3/3/2023
3.0.0-dev-01909 1,545 3/3/2023
3.0.0-dev-01907 561 3/2/2023
3.0.0-dev-01901 4,727 2/28/2023
3.0.0-dev-01900 449 2/28/2023
3.0.0-dev-01899 911 2/28/2023
3.0.0-dev-01885 2,351 2/27/2023
3.0.0-dev-01884 2,415 2/25/2023
3.0.0-dev-01873 440 2/25/2023
3.0.0-dev-01870 456 2/25/2023
3.0.0-dev-01862 59,198 2/3/2023
3.0.0-dev-01860 472 2/3/2023
3.0.0-dev-01857 430 2/3/2023
3.0.0-dev-01856 457 2/3/2023
3.0.0-dev-01853 439 2/3/2023
3.0.0-dev-01850 3,852 2/3/2023
3.0.0-dev-01842 11,589 1/30/2023
3.0.0-dev-01840 974 1/30/2023
3.0.0-dev-01839 457 1/30/2023
3.0.0-dev-01838 420 1/30/2023
3.0.0-dev-01837 485 1/30/2023
3.0.0-dev-01836 447 1/30/2023
3.0.0-dev-01835 511 1/30/2023
3.0.0-dev-01828 447 1/30/2023
3.0.0-dev-01822 450 1/30/2023
3.0.0-dev-01817 564 1/30/2023
3.0.0-dev-01812 3,220 1/28/2023
3.0.0-dev-01811 423 1/28/2023
3.0.0-dev-01809 480 1/28/2023
3.0.0-dev-01801 3,678 1/27/2023
3.0.0-dev-01800 484 1/27/2023
3.0.0-dev-01794 731 1/26/2023
3.0.0-dev-01787 689 1/26/2023
3.0.0-dev-01774 1,031 1/25/2023
3.0.0-dev-01771 471 1/25/2023
3.0.0-dev-01768 442 1/25/2023
3.0.0-dev-01739 705 1/25/2023
3.0.0-dev-01728 484 1/25/2023
3.0.0-dev-01723 496 1/25/2023
3.0.0-dev-01722 453 1/25/2023
3.0.0-dev-01716 452 1/25/2023
3.0.0-dev-01703 7,173 1/25/2023
3.0.0-dev-01701 1,581 1/25/2023
3.0.0-dev-01691 557 1/25/2023
3.0.0-dev-01688 440 1/25/2023
3.0.0-dev-01685 487 1/25/2023
3.0.0-dev-01680 467 1/25/2023
3.0.0-dev-01675 432 1/25/2023
3.0.0-dev-01671 453 1/24/2023
3.0.0-dev-01670 469 1/24/2023
3.0.0-dev-01669 479 1/24/2023
3.0.0-dev-01668 474 1/24/2023
3.0.0-dev-01667 460 1/24/2023
3.0.0-dev-01666 459 1/24/2023
3.0.0-dev-01645 2,466 1/24/2023
2.12.1-dev-01635 122,450 12/14/2022
2.12.1-dev-01634 480 12/14/2022
2.12.1-dev-01629 1,418 12/13/2022
2.12.1-dev-01621 2,355 12/13/2022
2.12.1-dev-01620 423 12/13/2022
2.12.1-dev-01594 33,027 11/30/2022
2.12.1-dev-01587 87,366 10/24/2022
2.12.0 44,867,533 9/13/2022
2.12.0-dev-01571 523 9/13/2022
2.12.0-dev-01568 2,104 9/12/2022
2.12.0-dev-01564 1,110 9/9/2022
2.12.0-dev-01559 1,171 9/6/2022
2.12.0-dev-01555 1,269 9/5/2022
2.12.0-dev-01553 469 9/5/2022
2.12.0-dev-01551 692 9/5/2022
2.12.0-dev-01543 3,928 9/1/2022
2.12.0-dev-01538 605 8/31/2022
2.12.0-dev-01535 3,919 8/30/2022
2.12.0-dev-01533 4,826 8/26/2022
2.12.0-dev-01525 2,161 8/25/2022
2.12.0-dev-01520 979 8/25/2022
2.12.0-dev-01518 439 8/25/2022
2.12.0-dev-01516 457 8/25/2022
2.12.0-dev-01511 491 8/25/2022
2.12.0-dev-01504 824 8/23/2022
2.12.0-dev-01501 9,684 8/17/2022
2.12.0-dev-01499 906 8/17/2022
2.12.0-dev-01494 3,612 8/9/2022
2.12.0-dev-01492 521 8/9/2022
2.12.0-dev-01490 512 8/9/2022
2.12.0-dev-01489 519 8/9/2022
2.12.0-dev-01479 22,082 8/2/2022
2.12.0-dev-01477 477 8/2/2022
2.12.0-dev-01474 489 8/2/2022
2.12.0-dev-01471 501 8/1/2022
2.12.0-dev-01463 3,001 7/29/2022
2.12.0-dev-01458 556 7/28/2022
2.12.0-dev-01451 1,698 7/27/2022
2.12.0-dev-01449 493 7/27/2022
2.12.0-dev-01447 849 7/27/2022
2.12.0-dev-01445 529 7/27/2022
2.12.0-dev-01439 6,609 7/26/2022
2.12.0-dev-01435 681 7/25/2022
2.11.1-dev-01397 119,548 5/4/2022
2.11.0 36,027,165 4/24/2022
2.11.0-dev-01391 549 4/23/2022
2.11.0-dev-01387 824 4/23/2022
2.11.0-dev-01380 242,935 1/23/2022
2.11.0-dev-01377 223,591 12/8/2021
2.11.0-dev-01371 228,580 9/8/2021
2.11.0-dev-01367 37,493 8/20/2021
2.10.1-dev-01366 7,962 8/19/2021
2.10.1-dev-01365 6,925 8/19/2021
2.10.1-dev-01343 187,031 6/23/2021
2.10.1-dev-01338 2,645 6/22/2021
2.10.1-dev-01337 2,574 6/22/2021
2.10.1-dev-01334 730 6/22/2021
2.10.1-dev-01324 1,510 6/21/2021
2.10.1-dev-01321 654 6/20/2021
2.10.1-dev-01315 5,500 6/15/2021
2.10.1-dev-01314 650 6/15/2021
2.10.1-dev-01308 30,903 5/17/2021
2.10.1-dev-01306 14,236 5/11/2021
2.10.1-dev-01285 221,127 2/9/2021
2.10.1-dev-01265 218,183 12/10/2020
2.10.1-dev-01256 98,542 11/4/2020
2.10.1-dev-01249 95,766 9/10/2020
2.10.1-dev-01248 36,564 9/10/2020
2.10.0 208,707,086 9/10/2020
2.10.0-dev-01245 1,074 9/9/2020
2.10.0-dev-01240 28,555 8/16/2020
2.10.0-dev-01226 12,224 8/2/2020
2.10.0-dev-01221 3,391 7/30/2020
2.10.0-dev-01219 1,057 7/30/2020
2.10.0-dev-01213 8,980 7/25/2020
2.10.0-dev-01211 1,279 7/25/2020
2.10.0-dev-01191 209,065 6/12/2020
2.10.0-dev-01187 24,657 5/26/2020
2.9.1-dev-01177 77,590 5/5/2020
2.9.1-dev-01172 8,999 5/1/2020
2.9.1-dev-01169 3,813 4/30/2020
2.9.1-dev-01167 17,127 4/27/2020
2.9.1-dev-01166 1,375 4/26/2020
2.9.1-dev-01165 3,151 4/23/2020
2.9.1-dev-01154 593,339 11/25/2019
2.9.1-dev-01151 59,141 10/29/2019
2.9.1-dev-01149 1,720 10/29/2019
2.9.1-dev-01148 1,667 10/29/2019
2.9.1-dev-01141 35,019 10/16/2019
2.9.1-dev-01138 9,702 10/15/2019
2.9.0 121,713,796 10/13/2019
2.9.0-dev-01133 10,752 10/5/2019
2.9.0-dev-01124 83,867 8/31/2019
2.9.0-dev-01119 36,919 7/29/2019
2.9.0-dev-01116 37,995 7/11/2019
2.9.0-dev-01102 23,256 6/24/2019
2.9.0-dev-01099 8,392 6/22/2019
2.9.0-dev-01098 6,762 6/21/2019
2.9.0-dev-01091 27,164 6/3/2019
2.8.1-dev-01090 11,073 5/31/2019
2.8.1-dev-01086 9,724 5/29/2019
2.8.1-dev-01085 6,150 5/29/2019
2.8.1-dev-01063 18,563 5/24/2019
2.8.1-dev-01058 14,500 5/19/2019
2.8.1-dev-01054 29,728 5/2/2019
2.8.1-dev-01052 7,985 4/30/2019
2.8.1-dev-01049 6,965 4/26/2019
2.8.1-dev-01048 6,082 4/26/2019
2.8.1-dev-01047 26,667 4/22/2019
2.8.0 143,431,976 1/16/2019
2.8.0-dev-01042 13,671 1/14/2019
2.7.2-dev-01041 7,063 1/10/2019
2.7.2-dev-01033 125,731 10/15/2018
2.7.2-dev-01032 6,424 10/15/2018
2.7.2-dev-01030 6,835 10/14/2018
2.7.2-dev-01027 52,985 9/22/2018
2.7.2-dev-01024 62,926 8/1/2018
2.7.2-dev-01023 7,317 7/31/2018
2.7.2-dev-01017 73,136 7/17/2018
2.7.2-dev-01013 20,114 7/9/2018
2.7.2-dev-01010 16,601 6/29/2018
2.7.2-dev-01005 62,426 6/13/2018
2.7.1 33,381,937 5/18/2018
2.7.1-dev-01000 6,737 5/18/2018
2.7.1-dev-00993 9,788 5/13/2018
2.7.1-dev-00990 7,025 5/13/2018
2.7.1-dev-00985 7,757 5/13/2018
2.7.1-dev-00983 8,924 5/12/2018
2.7.1-dev-00980 20,371 5/8/2018
2.7.1-dev-00972 30,537 3/24/2018
2.7.1-dev-00967 8,171 3/21/2018
2.7.1-dev-00963 7,762 3/20/2018
2.7.1-dev-00960 68,273 2/21/2018
2.7.1-dev-00956 7,842 2/20/2018
2.7.1-dev-00950 31,621 1/28/2018
2.6.1-dev-00948 9,216 1/28/2018
2.6.1-dev-00938 10,715 1/22/2018
2.6.1-dev-00936 62,398 12/29/2017
2.6.0 66,922,480 12/4/2017
2.6.0-dev-00932 10,104 11/27/2017
2.6.0-dev-00929 7,857 11/23/2017
2.6.0-dev-00925 76,600 11/15/2017
2.6.0-dev-00923 17,217 11/10/2017
2.6.0-dev-00922 10,788 11/8/2017
2.6.0-dev-00919 9,210 11/7/2017
2.6.0-dev-00915 56,823 10/23/2017
2.6.0-dev-00911 12,305 10/19/2017
2.6.0-dev-00904 10,508 10/11/2017
2.6.0-dev-00902 9,651 10/9/2017
2.6.0-dev-00894 28,269 9/23/2017
2.6.0-dev-00892 11,542 9/20/2017
2.5.1-dev-00890 8,860 9/20/2017
2.5.1-dev-00886 9,854 9/17/2017
2.5.1-dev-00873 34,460 7/28/2017
2.5.1-dev-00869 27,567 7/4/2017
2.5.1-dev-00863 8,720 7/2/2017
2.5.1-dev-00862 8,202 7/2/2017
2.5.1-dev-00859 10,013 6/21/2017
2.5.0 105,367,572 6/21/2017
2.5.0-dev-00855 9,632 6/15/2017
2.5.0-dev-00853 9,579 6/13/2017
2.5.0-dev-00848 9,488 6/6/2017
2.5.0-dev-00842 8,967 6/4/2017
2.5.0-dev-00841 8,083 6/4/2017
2.5.0-dev-00839 7,890 6/3/2017
2.5.0-dev-00833 8,058 6/1/2017
2.5.0-dev-00822 8,625 5/28/2017
2.5.0-dev-00820 7,676 5/28/2017
2.5.0-dev-00817 38,895 4/7/2017
2.5.0-dev-00814 9,352 4/5/2017
2.5.0-dev-00812 9,318 4/2/2017
2.4.1-dev-00811 6,922 4/2/2017
2.4.1-dev-00805 10,367 3/22/2017
2.4.1-dev-00801 18,174 3/10/2017
2.4.1-dev-00799 6,841 3/10/2017
2.4.1-dev-00796 7,049 3/9/2017
2.4.0 5,351,111 2/3/2017
2.4.0-dev-00771 9,648 1/29/2017
2.4.0-dev-00769 9,058 1/19/2017
2.4.0-dev-00767 16,976 11/30/2016
2.4.0-dev-00766 8,719 11/29/2016
2.4.0-dev-00760 7,086 11/23/2016
2.4.0-dev-00757 7,451 11/23/2016
2.4.0-dev-00755 6,716 11/23/2016
2.4.0-dev-00750 8,243 11/17/2016
2.4.0-dev-00746 9,290 11/10/2016
2.4.0-dev-00739 8,594 11/8/2016
2.4.0-dev-00736 7,892 11/2/2016
2.4.0-dev-00733 7,512 10/30/2016
2.4.0-dev-00730 15,727 10/20/2016
2.4.0-dev-00728 9,070 10/12/2016
2.4.0-dev-00723 8,637 10/5/2016
2.3.0 74,323,221 10/5/2016
2.3.0-dev-00719 7,800 10/4/2016
2.3.0-dev-00711 8,884 9/19/2016
2.3.0-dev-00707 9,042 9/8/2016
2.3.0-dev-00705 7,388 9/7/2016
2.3.0-dev-00704 7,505 9/7/2016
2.2.1 603,854 8/29/2016
2.2.1-dev-00697 7,218 8/28/2016
2.2.0 617,674 8/26/2016
2.2.0-dev-00693 7,384 8/26/2016
2.2.0-dev-00690 7,402 8/19/2016
2.2.0-dev-00688 9,759 8/15/2016
2.1.1-dev-00686 8,100 8/12/2016
2.1.1-dev-00680 7,411 8/11/2016
2.1.0 799,338 7/26/2016
2.1.0-dev-00674 9,177 7/22/2016
2.1.0-dev-00670 13,741 7/6/2016
2.1.0-dev-00668 7,699 7/5/2016
2.1.0-dev-00666 7,654 7/5/2016
2.0.1-dev-00665 7,338 7/4/2016
2.0.0 41,249,652 6/27/2016
2.0.0-rc-640 9,516 6/20/2016
2.0.0-rc-634 7,019 6/19/2016
2.0.0-rc-633 8,689 6/19/2016
2.0.0-rc-628 7,035 6/18/2016
2.0.0-rc-622 7,155 6/17/2016
2.0.0-rc-621 6,863 6/17/2016
2.0.0-rc-619 7,615 6/15/2016
2.0.0-rc-618 7,018 6/15/2016
2.0.0-rc-606 8,338 6/12/2016
2.0.0-rc-602 7,940 6/7/2016
2.0.0-rc-600 9,103 6/2/2016
2.0.0-rc-598 7,819 5/31/2016
2.0.0-rc-596 7,002 5/31/2016
2.0.0-rc-594 7,041 5/31/2016
2.0.0-rc-587 7,564 5/30/2016
2.0.0-rc-577 8,570 5/26/2016
2.0.0-rc-576 12,667 5/26/2016
2.0.0-rc-573 6,960 5/25/2016
2.0.0-rc-563 8,501 5/23/2016
2.0.0-rc-556 19,706 5/17/2016
2.0.0-beta-541 9,080 5/5/2016
2.0.0-beta-537 7,372 5/2/2016
2.0.0-beta-533 7,190 4/29/2016
2.0.0-beta-531 8,410 4/20/2016
2.0.0-beta-530 7,230 4/19/2016
2.0.0-beta-523 10,561 3/18/2016
2.0.0-beta-521 6,932 3/18/2016
2.0.0-beta-519 7,395 3/16/2016
2.0.0-beta-516 7,717 3/15/2016
2.0.0-beta-513 7,080 3/15/2016
2.0.0-beta-511 8,158 3/14/2016
2.0.0-beta-509 7,245 3/13/2016
2.0.0-beta-507 12,932 3/1/2016
2.0.0-beta-505 10,738 2/25/2016
2.0.0-beta-502 7,654 2/22/2016
2.0.0-beta-499 7,018 2/21/2016
2.0.0-beta-495 7,001 2/19/2016
2.0.0-beta-494 7,593 2/18/2016
2.0.0-beta-493 7,669 2/18/2016
2.0.0-beta-487 7,248 2/16/2016
2.0.0-beta-486 7,843 2/11/2016
2.0.0-beta-479 7,232 2/9/2016
2.0.0-beta-478 7,081 2/9/2016
2.0.0-beta-465 38,251 1/26/2016
2.0.0-beta-456 7,483 1/20/2016
2.0.0-beta-450 8,003 1/14/2016
2.0.0-beta-449 7,610 1/14/2016
2.0.0-beta-432 7,183 1/12/2016
2.0.0-beta-423 19,202 12/28/2015
2.0.0-beta-418 7,119 12/26/2015
2.0.0-beta-416 6,996 12/23/2015
2.0.0-beta-403 8,342 12/3/2015
2.0.0-beta-395 8,638 11/23/2015
1.5.14 7,119,515 11/13/2015
1.5.13 11,261 11/13/2015
1.5.12 65,717 10/21/2015
1.5.11 125,934 9/9/2015
1.5.10 81,310 9/3/2015
1.5.9 162,341 7/20/2015
1.5.8 26,967 7/15/2015
1.5.7 131,605 6/11/2015
1.5.6 85,341 5/17/2015
1.5.5 72,879 4/28/2015
1.5.1 90,839 4/9/2015
1.4.214 18,734 4/7/2015
1.4.204 203,545 3/7/2015
1.4.196 35,979 2/22/2015
1.4.182 21,112 2/15/2015
1.4.168 25,823 2/8/2015
1.4.155 18,852 2/1/2015
1.4.154 9,641 2/1/2015
1.4.152 8,246 2/1/2015
1.4.139 28,775 1/23/2015
1.4.128 11,514 1/17/2015
1.4.126 8,633 1/17/2015
1.4.118 16,770 1/13/2015
1.4.113 19,709 1/6/2015
1.4.102 30,207 12/21/2014
1.4.99 16,108 12/18/2014
1.4.97 14,788 12/18/2014
1.4.95 12,102 12/16/2014
1.4.76 22,824 12/8/2014
1.4.75 11,143 12/7/2014
1.4.39 17,431 11/26/2014
1.4.34 17,671 11/24/2014
1.4.28 14,786 11/24/2014
1.4.27 14,584 11/23/2014
1.4.23 14,705 11/21/2014
1.4.22 12,195 11/21/2014
1.4.21 14,360 11/21/2014
1.4.18 16,687 11/18/2014
1.4.17 8,465 11/18/2014
1.4.16 385,986 11/18/2014
1.4.15 58,387 11/4/2014
1.4.14 19,588 10/23/2014
1.4.13 8,206 10/23/2014
1.4.12 12,784 10/12/2014
1.4.11 10,665 10/8/2014
1.4.10 13,035 9/26/2014
1.4.9 17,902 9/17/2014
1.4.8 11,015 9/11/2014
1.4.7 32,298 9/1/2014
1.4.6 8,430 8/31/2014
1.4.5 9,052 8/27/2014
1.4.4 9,108 8/27/2014
1.4.3 10,072 8/25/2014
1.4.2 8,414 8/23/2014
1.4.1 147,924 8/23/2014
1.3.43 40,761 8/4/2014
1.3.42 8,926 7/30/2014
1.3.41 10,051 7/28/2014
1.3.40 8,126 7/26/2014
1.3.39 8,714 7/25/2014
1.3.38 8,034 7/25/2014
1.3.37 8,052 7/25/2014
1.3.36 10,335 7/20/2014
1.3.35 8,961 7/17/2014
1.3.34 12,834 7/6/2014
1.3.33 17,172 6/30/2014
1.3.30 9,338 6/19/2014
1.3.29 8,170 6/19/2014
1.3.28 8,329 6/19/2014
1.3.27 8,175 6/18/2014
1.3.26 9,482 6/18/2014
1.3.25 20,681 6/9/2014
1.3.24 26,909 5/21/2014
1.3.23 8,308 5/20/2014
1.3.20 9,086 5/18/2014
1.3.19 8,253 5/17/2014
1.3.18 8,416 5/17/2014
1.3.17 8,342 5/17/2014
1.3.16 8,340 5/17/2014
1.3.15 27,694 5/16/2014
1.3.14 8,191 5/16/2014
1.3.13 7,995 5/16/2014
1.3.12 8,432 5/14/2014
1.3.7 9,231 5/11/2014
1.3.6 8,844 5/9/2014
1.3.5 8,556 5/6/2014
1.3.4 8,298 5/4/2014
1.3.3 29,112 4/28/2014
1.3.1 12,892 4/26/2014
1.2.53 15,583 4/26/2014
1.2.52 8,298 4/24/2014
1.2.51 8,723 4/18/2014
1.2.50 8,203 4/18/2014
1.2.49 8,187 4/17/2014
1.2.48 8,707 4/14/2014
1.2.47 8,451 4/14/2014
1.2.45 8,259 4/13/2014
1.2.44 8,703 4/9/2014
1.2.41 8,555 4/7/2014
1.2.40 8,357 4/7/2014
1.2.39 8,861 3/29/2014
1.2.38 8,290 3/29/2014
1.2.37 8,416 3/29/2014
1.2.29 8,728 3/16/2014
1.2.27 8,466 3/14/2014
1.2.26 8,326 3/12/2014
1.2.25 12,419 2/20/2014
1.2.8 8,523 2/12/2014
1.2.7 9,811 1/13/2014
1.2.6 8,311 1/13/2014
1.2.5 8,204 1/10/2014
1.2.4 9,206 12/16/2013
1.2.3 13,118 11/30/2013
1.1.2 18,122 11/24/2013
1.1.1 18,115 11/23/2013
1.0.3 22,102 11/1/2013
1.0.2 9,311 10/14/2013
1.0.1 156,617 10/10/2013
0.9.5 8,306 10/7/2013
0.9.4 9,302 9/14/2013
0.9.3 8,133 9/12/2013
0.9.2 8,361 9/3/2013
0.9.1 9,170 8/24/2013
0.8.5 12,792 7/22/2013
0.8.4 8,167 7/20/2013
0.8.3 10,169 7/13/2013
0.8.2 8,525 7/11/2013
0.8.1 8,392 7/9/2013
0.7.2 8,429 7/6/2013
0.6.5 8,596 7/4/2013
0.6.4 8,490 7/3/2013
0.6.3 8,556 6/28/2013
0.6.1 11,870 6/13/2013
0.5.5 8,294 6/12/2013
0.5.4 8,367 6/4/2013
0.5.3 8,167 5/30/2013
0.5.2 8,166 5/27/2013
0.5.1 8,218 5/26/2013
0.4.3 8,349 5/25/2013
0.3.2 8,308 5/19/2013
0.3.1 8,326 5/19/2013
0.2.11 8,374 5/14/2013
0.2.10 8,338 5/13/2013
0.2.9 8,230 5/10/2013
0.2.8 9,711 5/9/2013
0.2.4 8,344 4/29/2013
0.2.3 8,595 4/23/2013
0.2.2 8,391 4/8/2013
0.2.1 8,437 4/8/2013
0.1.18 8,447 4/6/2013
0.1.17 8,273 4/4/2013
0.1.16 8,176 4/3/2013
0.1.12 8,348 4/1/2013
0.1.11 8,299 3/30/2013
0.1.10 8,230 3/27/2013
0.1.9 8,397 3/26/2013
0.1.8 8,457 3/24/2013
0.1.7 8,474 3/23/2013
0.1.6 508,988 3/23/2013