Serilog 4.2.0-dev-02328

Prefix Reserved
This is a prerelease version of Serilog.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Serilog --version 4.2.0-dev-02328
                    
NuGet\Install-Package Serilog -Version 4.2.0-dev-02328
                    
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="4.2.0-dev-02328" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Serilog" Version="4.2.0-dev-02328" />
                    
Directory.Packages.props
<PackageReference Include="Serilog" />
                    
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 Serilog --version 4.2.0-dev-02328
                    
#r "nuget: Serilog, 4.2.0-dev-02328"
                    
#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.
#:package Serilog@4.2.0-dev-02328
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Serilog&version=4.2.0-dev-02328&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Serilog&version=4.2.0-dev-02328&prerelease
                    
Install as a Cake Tool

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.

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 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 is compatible.  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 is compatible.  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 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)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4.3K)

Showing the top 5 NuGet packages that depend on Serilog:

Package Downloads
Serilog.Sinks.File

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

Serilog.Sinks.Console

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

Serilog.Extensions.Logging

Low-level Serilog provider for Microsoft.Extensions.Logging

Serilog.Settings.Configuration

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

Serilog.Formatting.Compact

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

GitHub repositories (512)

Showing the top 20 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. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
reactiveui/refit
The automatic type-safe REST library for .NET Core, Xamarin and .NET. Heavily inspired by Square's Retrofit library, Refit turns your REST API into a live interface.
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
ThreeMammals/Ocelot
.NET API Gateway
RayWangQvQ/BiliBiliToolPro
B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。敏感肌也能用。
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
subhra74/xdm
Powerfull download accelerator and video downloader
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
quartznet/quartznet
Quartz Enterprise Scheduler .NET
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 9 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
win-acme/win-acme
A simple ACME client for Windows (for use with Let's Encrypt et al.)
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
beeradmoore/dlss-swapper
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
Richasy/Bili.Copilot
B站第三方 Windows 桌面客户端,使用 Windows App SDK 构建的原生应用
Sophia-Community/SophiApp
:zap: The most powerful open source tweaker on GitHub for fine-tuning Windows 10 & Windows 11
Version Downloads Last Updated
4.3.1-dev-02387 5,390 9/26/2025
4.3.1-dev-02385 20,818 9/5/2025
4.3.1-dev-02383 433 9/4/2025
4.3.1-dev-02373 76,921 5/20/2025
4.3.0 15,704,625 5/18/2025
4.3.0-dev-02364 4,995 5/14/2025
4.3.0-dev-02363 406 5/14/2025
4.3.0-dev-02361 490 5/14/2025
4.3.0-dev-02360 401 5/14/2025
4.3.0-dev-02358 1,650 5/10/2025
4.3.0-dev-02357 256 5/10/2025
4.2.1-dev-02356 4,178 5/10/2025
4.2.1-dev-02355 411 5/10/2025
4.2.1-dev-02352 89,162 3/18/2025
4.2.1-dev-02340 68,103 2/10/2025
4.2.1-dev-02337 75,294 12/29/2024
4.2.0 63,098,877 12/6/2024
4.2.0-dev-02332 28,593 11/28/2024
4.2.0-dev-02331 422 11/28/2024
4.2.0-dev-02330 1,496 11/28/2024
4.2.0-dev-02328 68,545 11/18/2024
4.1.1-dev-02320 1,609 11/16/2024
4.1.1-dev-02318 52,167 10/30/2024
4.1.1-dev-02314 10,894 10/25/2024
4.1.0 37,434,375 10/22/2024
4.1.0-dev-02312 2,928 10/19/2024
4.1.0-dev-02311 441 10/19/2024
4.1.0-dev-02302 471 10/19/2024
4.1.0-dev-02301 433 10/19/2024
4.1.0-dev-02238 28,778 10/2/2024
4.1.0-dev-02235 1,381 10/1/2024
4.0.2 9,542,368 9/28/2024
4.0.2-dev-02232 807 9/27/2024
4.0.2-dev-02226 104,366 8/26/2024
4.0.2-dev-02224 10,757 8/20/2024
4.0.2-dev-02220 67,276 7/25/2024
4.0.1 17,705,390 7/25/2024
4.0.1-dev-02215 485 7/25/2024
4.0.1-dev-02212 480 7/24/2024
4.0.1-dev-02209 2,845 7/24/2024
4.0.1-dev-02205 16,628 7/11/2024
4.0.0 90,846,495 6/1/2024
4.0.0-dev-02201 18,834 5/30/2024
4.0.0-dev-02195 15,121 5/28/2024
4.0.0-dev-02191 18,571 5/27/2024
4.0.0-dev-02184 23,071 5/22/2024
4.0.0-dev-02183 18,116 5/22/2024
4.0.0-dev-02174 35,292 5/16/2024
4.0.0-dev-02167 56,689 5/8/2024
4.0.0-dev-02166 16,002 5/7/2024
4.0.0-dev-02163 17,058 5/5/2024
4.0.0-dev-02160 29,345 4/24/2024
4.0.0-dev-02159 12,254 4/24/2024
4.0.0-dev-02149 114,253 4/4/2024
4.0.0-dev-02122 83,313 3/11/2024
4.0.0-dev-02113 44,951 3/1/2024
4.0.0-dev-02108 19,717 2/25/2024
3.1.2-dev-02097 453,105 11/17/2023
3.1.1 152,369,940 11/10/2023
3.1.1-dev-02091 9,743 11/10/2023
3.1.0 29,257,810 11/9/2023
3.1.0-dev-02086 481,441 10/26/2023
3.1.0-dev-02083 17,721 10/22/2023
3.1.0-dev-02078 129,344 10/10/2023
3.1.0-dev-02077 43,812 10/9/2023
3.1.0-dev-02072 2,452 10/9/2023
3.1.0-dev-02071 37,094 10/3/2023
3.1.0-dev-02070 3,071 10/3/2023
3.1.0-dev-02064 7,272 10/2/2023
3.0.2-dev-02063 2,775 10/2/2023
3.0.2-dev-02056 18,702 9/20/2023
3.0.2-dev-02044 149,868 7/10/2023
3.0.2-dev-02042 11,624 7/6/2023
3.0.1 32,518,240 6/21/2023
3.0.1-dev-02033 2,572 6/21/2023
3.0.0 2,904,455 6/19/2023
3.0.0-dev-02028 8,160 6/19/2023
3.0.0-dev-02025 2,334 6/19/2023
3.0.0-dev-02022 92,962 5/31/2023
3.0.0-dev-02018 3,460 5/29/2023
3.0.0-dev-02012 7,738 5/24/2023
3.0.0-dev-02010 3,265 5/24/2023
3.0.0-dev-02008 2,306 5/24/2023
3.0.0-dev-01998 96,221 5/9/2023
3.0.0-dev-01993 3,820 5/5/2023
3.0.0-dev-01984 15,083 5/3/2023
3.0.0-dev-01982 2,392 5/3/2023
3.0.0-dev-01977 2,290 5/3/2023
3.0.0-dev-01974 3,389 5/2/2023
3.0.0-dev-01970 4,725 5/1/2023
3.0.0-dev-01969 2,292 5/1/2023
3.0.0-dev-01958 74,575 3/30/2023
3.0.0-dev-01957 2,454 3/30/2023
3.0.0-dev-01954 3,363 3/29/2023
3.0.0-dev-01950 4,993 3/29/2023
3.0.0-dev-01949 2,341 3/29/2023
3.0.0-dev-01948 2,384 3/29/2023
3.0.0-dev-01943 2,246 3/29/2023
3.0.0-dev-01942 2,336 3/29/2023
3.0.0-dev-01939 4,648 3/28/2023
3.0.0-dev-01927 4,977 3/26/2023
3.0.0-dev-01926 31,720 3/13/2023
3.0.0-dev-01924 2,458 3/12/2023
3.0.0-dev-01923 2,345 3/12/2023
3.0.0-dev-01921 9,247 3/9/2023
3.0.0-dev-01910 29,690 3/3/2023
3.0.0-dev-01909 3,622 3/3/2023
3.0.0-dev-01907 2,519 3/2/2023
3.0.0-dev-01901 10,177 2/28/2023
3.0.0-dev-01900 2,366 2/28/2023
3.0.0-dev-01899 2,739 2/28/2023
3.0.0-dev-01885 6,240 2/27/2023
3.0.0-dev-01884 6,477 2/25/2023
3.0.0-dev-01873 2,362 2/25/2023
3.0.0-dev-01870 2,343 2/25/2023
3.0.0-dev-01862 115,724 2/3/2023
3.0.0-dev-01860 2,323 2/3/2023
3.0.0-dev-01857 2,272 2/3/2023
3.0.0-dev-01856 2,334 2/3/2023
3.0.0-dev-01853 2,303 2/3/2023
3.0.0-dev-01850 19,466 2/3/2023
3.0.0-dev-01842 29,647 1/30/2023
3.0.0-dev-01840 3,684 1/30/2023
3.0.0-dev-01839 2,354 1/30/2023
3.0.0-dev-01838 2,328 1/30/2023
3.0.0-dev-01837 2,399 1/30/2023
3.0.0-dev-01836 2,277 1/30/2023
3.0.0-dev-01835 2,416 1/30/2023
3.0.0-dev-01828 2,334 1/30/2023
3.0.0-dev-01822 2,306 1/30/2023
3.0.0-dev-01817 2,445 1/30/2023
3.0.0-dev-01812 9,335 1/28/2023
3.0.0-dev-01811 2,250 1/28/2023
3.0.0-dev-01809 2,359 1/28/2023
3.0.0-dev-01801 5,863 1/27/2023
3.0.0-dev-01800 2,326 1/27/2023
3.0.0-dev-01794 2,537 1/26/2023
3.0.0-dev-01787 2,659 1/26/2023
3.0.0-dev-01774 3,576 1/25/2023
3.0.0-dev-01771 2,325 1/25/2023
3.0.0-dev-01768 2,278 1/25/2023
3.0.0-dev-01739 2,607 1/25/2023
3.0.0-dev-01728 2,348 1/25/2023
3.0.0-dev-01723 2,338 1/25/2023
3.0.0-dev-01722 2,324 1/25/2023
3.0.0-dev-01716 2,383 1/25/2023
3.0.0-dev-01703 16,432 1/25/2023
3.0.0-dev-01701 4,439 1/25/2023
3.0.0-dev-01691 2,476 1/25/2023
3.0.0-dev-01688 2,307 1/25/2023
3.0.0-dev-01685 2,344 1/25/2023
3.0.0-dev-01680 2,323 1/25/2023
3.0.0-dev-01675 2,334 1/25/2023
3.0.0-dev-01671 2,294 1/24/2023
3.0.0-dev-01670 2,482 1/24/2023
3.0.0-dev-01669 2,338 1/24/2023
3.0.0-dev-01668 2,344 1/24/2023
3.0.0-dev-01667 2,344 1/24/2023
3.0.0-dev-01666 2,352 1/24/2023
3.0.0-dev-01645 4,744 1/24/2023
2.12.1-dev-01635 252,997 12/14/2022
2.12.1-dev-01634 2,346 12/14/2022
2.12.1-dev-01629 3,447 12/13/2022
2.12.1-dev-01621 4,487 12/13/2022
2.12.1-dev-01620 2,273 12/13/2022
2.12.1-dev-01594 65,996 11/30/2022
2.12.1-dev-01587 145,538 10/24/2022
2.12.0 150,241,226 9/13/2022
2.12.0-dev-01571 2,424 9/13/2022
2.12.0-dev-01568 4,202 9/12/2022
2.12.0-dev-01564 3,140 9/9/2022
2.12.0-dev-01559 3,185 9/6/2022
2.12.0-dev-01555 3,445 9/5/2022
2.12.0-dev-01553 2,385 9/5/2022
2.12.0-dev-01551 2,587 9/5/2022
2.12.0-dev-01543 6,212 9/1/2022
2.12.0-dev-01538 2,483 8/31/2022
2.12.0-dev-01535 9,547 8/30/2022
2.12.0-dev-01533 16,646 8/26/2022
2.12.0-dev-01525 4,118 8/25/2022
2.12.0-dev-01520 2,853 8/25/2022
2.12.0-dev-01518 2,229 8/25/2022
2.12.0-dev-01516 2,264 8/25/2022
2.12.0-dev-01511 2,375 8/25/2022
2.12.0-dev-01504 2,884 8/23/2022
2.12.0-dev-01501 14,649 8/17/2022
2.12.0-dev-01499 2,902 8/17/2022
2.12.0-dev-01494 6,068 8/9/2022
2.12.0-dev-01492 2,408 8/9/2022
2.12.0-dev-01490 2,308 8/9/2022
2.12.0-dev-01489 2,432 8/9/2022
2.12.0-dev-01479 33,656 8/2/2022
2.12.0-dev-01477 2,356 8/2/2022
2.12.0-dev-01474 2,400 8/2/2022
2.12.0-dev-01471 2,336 8/1/2022
2.12.0-dev-01463 5,101 7/29/2022
2.12.0-dev-01458 2,484 7/28/2022
2.12.0-dev-01451 3,625 7/27/2022
2.12.0-dev-01449 2,383 7/27/2022
2.12.0-dev-01447 2,867 7/27/2022
2.12.0-dev-01445 2,348 7/27/2022
2.12.0-dev-01439 8,631 7/26/2022
2.12.0-dev-01435 3,371 7/25/2022
2.11.1-dev-01397 172,184 5/4/2022
2.11.0 87,791,062 4/24/2022
2.11.0-dev-01391 2,446 4/23/2022
2.11.0-dev-01387 2,805 4/23/2022
2.11.0-dev-01380 327,453 1/23/2022
2.11.0-dev-01377 328,903 12/8/2021
2.11.0-dev-01371 298,941 9/8/2021
2.11.0-dev-01367 49,421 8/20/2021
2.10.1-dev-01366 10,357 8/19/2021
2.10.1-dev-01365 8,969 8/19/2021
2.10.1-dev-01343 323,203 6/23/2021
2.10.1-dev-01338 4,731 6/22/2021
2.10.1-dev-01337 5,183 6/22/2021
2.10.1-dev-01334 2,614 6/22/2021
2.10.1-dev-01324 4,289 6/21/2021
2.10.1-dev-01321 2,662 6/20/2021
2.10.1-dev-01315 12,529 6/15/2021
2.10.1-dev-01314 2,521 6/15/2021
2.10.1-dev-01308 36,507 5/17/2021
2.10.1-dev-01306 22,120 5/11/2021
2.10.1-dev-01285 285,582 2/9/2021
2.10.1-dev-01265 252,555 12/10/2020
2.10.1-dev-01256 129,347 11/4/2020
2.10.1-dev-01249 116,499 9/10/2020
2.10.1-dev-01248 49,444 9/10/2020
2.10.0 395,141,126 9/10/2020
2.10.0-dev-01245 3,128 9/9/2020
2.10.0-dev-01240 32,754 8/16/2020
2.10.0-dev-01226 18,362 8/2/2020
2.10.0-dev-01221 5,690 7/30/2020
2.10.0-dev-01219 3,077 7/30/2020
2.10.0-dev-01213 11,738 7/25/2020
2.10.0-dev-01211 3,358 7/25/2020
2.10.0-dev-01191 282,598 6/12/2020
2.10.0-dev-01187 28,084 5/26/2020
2.9.1-dev-01177 92,423 5/5/2020
2.9.1-dev-01172 11,180 5/1/2020
2.9.1-dev-01169 6,327 4/30/2020
2.9.1-dev-01167 19,458 4/27/2020
2.9.1-dev-01166 3,364 4/26/2020
2.9.1-dev-01165 5,341 4/23/2020
2.9.1-dev-01154 647,682 11/25/2019
2.9.1-dev-01151 62,661 10/29/2019
2.9.1-dev-01149 3,693 10/29/2019
2.9.1-dev-01148 3,581 10/29/2019
2.9.1-dev-01141 38,663 10/16/2019
2.9.1-dev-01138 11,920 10/15/2019
2.9.0 212,439,859 10/13/2019
2.9.0-dev-01133 13,192 10/5/2019
2.9.0-dev-01124 91,992 8/31/2019
2.9.0-dev-01119 40,197 7/29/2019
2.9.0-dev-01116 41,431 7/11/2019
2.9.0-dev-01102 25,704 6/24/2019
2.9.0-dev-01099 10,506 6/22/2019
2.9.0-dev-01098 8,714 6/21/2019
2.9.0-dev-01091 32,496 6/3/2019
2.8.1-dev-01090 13,563 5/31/2019
2.8.1-dev-01086 11,766 5/29/2019
2.8.1-dev-01085 8,264 5/29/2019
2.8.1-dev-01063 21,211 5/24/2019
2.8.1-dev-01058 16,880 5/19/2019
2.8.1-dev-01054 32,521 5/2/2019
2.8.1-dev-01052 10,426 4/30/2019
2.8.1-dev-01049 9,165 4/26/2019
2.8.1-dev-01048 8,143 4/26/2019
2.8.1-dev-01047 28,701 4/22/2019
2.8.0 249,550,593 1/16/2019
2.8.0-dev-01042 15,794 1/14/2019
2.7.2-dev-01041 10,240 1/10/2019
2.7.2-dev-01033 136,884 10/15/2018
2.7.2-dev-01032 8,510 10/15/2018
2.7.2-dev-01030 8,840 10/14/2018
2.7.2-dev-01027 87,836 9/22/2018
2.7.2-dev-01024 70,185 8/1/2018
2.7.2-dev-01023 9,567 7/31/2018
2.7.2-dev-01017 100,073 7/17/2018
2.7.2-dev-01013 30,658 7/9/2018
2.7.2-dev-01010 18,923 6/29/2018
2.7.2-dev-01005 65,432 6/13/2018
2.7.1 45,746,843 5/18/2018
2.7.1-dev-01000 9,168 5/18/2018
2.7.1-dev-00993 12,120 5/13/2018
2.7.1-dev-00990 9,406 5/13/2018
2.7.1-dev-00985 10,061 5/13/2018
2.7.1-dev-00983 16,235 5/12/2018
2.7.1-dev-00980 23,735 5/8/2018
2.7.1-dev-00972 40,440 3/24/2018
2.7.1-dev-00967 10,463 3/21/2018
2.7.1-dev-00963 10,127 3/20/2018
2.7.1-dev-00960 101,187 2/21/2018
2.7.1-dev-00956 10,208 2/20/2018
2.7.1-dev-00950 38,554 1/28/2018
2.6.1-dev-00948 13,917 1/28/2018
2.6.1-dev-00938 13,683 1/22/2018
2.6.1-dev-00936 83,941 12/29/2017
2.6.0 91,795,958 12/4/2017
2.6.0-dev-00932 12,409 11/27/2017
2.6.0-dev-00929 10,066 11/23/2017
2.6.0-dev-00925 88,406 11/15/2017
2.6.0-dev-00923 19,444 11/10/2017
2.6.0-dev-00922 19,145 11/8/2017
2.6.0-dev-00919 11,390 11/7/2017
2.6.0-dev-00915 63,994 10/23/2017
2.6.0-dev-00911 14,553 10/19/2017
2.6.0-dev-00904 12,804 10/11/2017
2.6.0-dev-00902 11,758 10/9/2017
2.6.0-dev-00894 35,142 9/23/2017
2.6.0-dev-00892 13,814 9/20/2017
2.5.1-dev-00890 14,502 9/20/2017
2.5.1-dev-00886 12,063 9/17/2017
2.5.1-dev-00873 37,420 7/28/2017
2.5.1-dev-00869 29,849 7/4/2017
2.5.1-dev-00863 10,925 7/2/2017
2.5.1-dev-00862 10,473 7/2/2017
2.5.1-dev-00859 12,214 6/21/2017
2.5.0 145,348,149 6/21/2017
2.5.0-dev-00855 13,603 6/15/2017
2.5.0-dev-00853 11,794 6/13/2017
2.5.0-dev-00848 11,654 6/6/2017
2.5.0-dev-00842 11,198 6/4/2017
2.5.0-dev-00841 10,261 6/4/2017
2.5.0-dev-00839 10,111 6/3/2017
2.5.0-dev-00833 11,190 6/1/2017
2.5.0-dev-00822 10,862 5/28/2017
2.5.0-dev-00820 9,800 5/28/2017
2.5.0-dev-00817 41,792 4/7/2017
2.5.0-dev-00814 11,539 4/5/2017
2.5.0-dev-00812 11,436 4/2/2017
2.4.1-dev-00811 9,524 4/2/2017
2.4.1-dev-00805 12,592 3/22/2017
2.4.1-dev-00801 20,404 3/10/2017
2.4.1-dev-00799 9,056 3/10/2017
2.4.1-dev-00796 9,304 3/9/2017
2.4.0 8,164,255 2/3/2017
2.4.0-dev-00771 11,875 1/29/2017
2.4.0-dev-00769 11,262 1/19/2017
2.4.0-dev-00767 19,421 11/30/2016
2.4.0-dev-00766 10,902 11/29/2016
2.4.0-dev-00760 9,222 11/23/2016
2.4.0-dev-00757 9,628 11/23/2016
2.4.0-dev-00755 8,929 11/23/2016
2.4.0-dev-00750 10,538 11/17/2016
2.4.0-dev-00746 11,504 11/10/2016
2.4.0-dev-00739 10,783 11/8/2016
2.4.0-dev-00736 10,157 11/2/2016
2.4.0-dev-00733 9,666 10/30/2016
2.4.0-dev-00730 18,200 10/20/2016
2.4.0-dev-00728 11,283 10/12/2016
2.4.0-dev-00723 10,814 10/5/2016
2.3.0 135,259,725 10/5/2016
2.3.0-dev-00719 9,982 10/4/2016
2.3.0-dev-00711 11,143 9/19/2016
2.3.0-dev-00707 11,172 9/8/2016
2.3.0-dev-00705 9,681 9/7/2016
2.3.0-dev-00704 9,734 9/7/2016
2.2.1 759,297 8/29/2016
2.2.1-dev-00697 9,418 8/28/2016
2.2.0 822,283 8/26/2016
2.2.0-dev-00693 9,570 8/26/2016
2.2.0-dev-00690 9,658 8/19/2016
2.2.0-dev-00688 13,626 8/15/2016
2.1.1-dev-00686 10,296 8/12/2016
2.1.1-dev-00680 9,501 8/11/2016
2.1.0 1,644,828 7/26/2016
2.1.0-dev-00674 11,320 7/22/2016
2.1.0-dev-00670 16,262 7/6/2016
2.1.0-dev-00668 9,929 7/5/2016
2.1.0-dev-00666 9,796 7/5/2016
2.0.1-dev-00665 9,772 7/4/2016
2.0.0 76,032,904 6/27/2016
2.0.0-rc-640 13,318 6/20/2016
2.0.0-rc-634 9,234 6/19/2016
2.0.0-rc-633 14,422 6/19/2016
2.0.0-rc-628 9,212 6/18/2016
2.0.0-rc-622 9,397 6/17/2016
2.0.0-rc-621 9,014 6/17/2016
2.0.0-rc-619 9,847 6/15/2016
2.0.0-rc-618 9,176 6/15/2016
2.0.0-rc-606 10,624 6/12/2016
2.0.0-rc-602 10,309 6/7/2016
2.0.0-rc-600 11,763 6/2/2016
2.0.0-rc-598 10,098 5/31/2016
2.0.0-rc-596 9,255 5/31/2016
2.0.0-rc-594 9,225 5/31/2016
2.0.0-rc-587 9,778 5/30/2016
2.0.0-rc-577 10,902 5/26/2016
2.0.0-rc-576 17,681 5/26/2016
2.0.0-rc-573 9,169 5/25/2016
2.0.0-rc-563 10,688 5/23/2016
2.0.0-rc-556 31,500 5/17/2016
2.0.0-beta-541 11,444 5/5/2016
2.0.0-beta-537 9,558 5/2/2016
2.0.0-beta-533 9,364 4/29/2016
2.0.0-beta-531 10,693 4/20/2016
2.0.0-beta-530 9,427 4/19/2016
2.0.0-beta-523 22,013 3/18/2016
2.0.0-beta-521 9,086 3/18/2016
2.0.0-beta-519 11,345 3/16/2016
2.0.0-beta-516 9,903 3/15/2016
2.0.0-beta-513 9,305 3/15/2016
2.0.0-beta-511 10,395 3/14/2016
2.0.0-beta-509 9,565 3/13/2016
2.0.0-beta-507 15,130 3/1/2016
2.0.0-beta-505 12,948 2/25/2016
2.0.0-beta-502 9,845 2/22/2016
2.0.0-beta-499 9,234 2/21/2016
2.0.0-beta-495 9,180 2/19/2016
2.0.0-beta-494 9,808 2/18/2016
2.0.0-beta-493 9,914 2/18/2016
2.0.0-beta-487 9,487 2/16/2016
2.0.0-beta-486 10,089 2/11/2016
2.0.0-beta-479 9,384 2/9/2016
2.0.0-beta-478 9,281 2/9/2016
2.0.0-beta-465 40,478 1/26/2016
2.0.0-beta-456 9,751 1/20/2016
2.0.0-beta-450 10,279 1/14/2016
2.0.0-beta-449 9,983 1/14/2016
2.0.0-beta-432 9,358 1/12/2016
2.0.0-beta-423 21,408 12/28/2015
2.0.0-beta-418 9,315 12/26/2015
2.0.0-beta-416 9,113 12/23/2015
2.0.0-beta-403 10,751 12/3/2015
2.0.0-beta-395 10,965 11/23/2015
1.5.14 31,378,762 11/13/2015
1.5.13 14,143 11/13/2015
1.5.12 95,745 10/21/2015
1.5.11 153,916 9/9/2015
1.5.10 95,175 9/3/2015
1.5.9 186,131 7/20/2015
1.5.8 29,948 7/15/2015
1.5.7 175,058 6/11/2015
1.5.6 95,937 5/17/2015
1.5.5 94,842 4/28/2015
1.5.1 135,621 4/9/2015
1.4.214 30,048 4/7/2015
1.4.204 241,265 3/7/2015
1.4.196 47,284 2/22/2015
1.4.182 28,455 2/15/2015
1.4.168 36,128 2/8/2015
1.4.155 25,223 2/1/2015
1.4.154 12,225 2/1/2015
1.4.152 10,653 2/1/2015
1.4.139 36,767 1/23/2015
1.4.128 14,703 1/17/2015
1.4.126 11,099 1/17/2015
1.4.118 23,163 1/13/2015
1.4.113 26,780 1/6/2015
1.4.102 36,910 12/21/2014
1.4.99 22,213 12/18/2014
1.4.97 20,944 12/18/2014
1.4.95 15,131 12/16/2014
1.4.76 29,373 12/8/2014
1.4.75 15,502 12/7/2014
1.4.39 23,690 11/26/2014
1.4.34 24,032 11/24/2014
1.4.28 21,120 11/24/2014
1.4.27 20,794 11/23/2014
1.4.23 20,945 11/21/2014
1.4.22 17,323 11/21/2014
1.4.21 20,460 11/21/2014
1.4.18 22,947 11/18/2014
1.4.17 10,935 11/18/2014
1.4.16 848,690 11/18/2014
1.4.15 70,241 11/4/2014
1.4.14 22,067 10/23/2014
1.4.13 10,521 10/23/2014
1.4.12 15,268 10/12/2014
1.4.11 13,082 10/8/2014
1.4.10 15,908 9/26/2014
1.4.9 20,653 9/17/2014
1.4.8 14,313 9/11/2014
1.4.7 37,862 9/1/2014
1.4.6 10,822 8/31/2014
1.4.5 11,452 8/27/2014
1.4.4 12,721 8/27/2014
1.4.3 12,937 8/25/2014
1.4.2 10,846 8/23/2014
1.4.1 210,705 8/23/2014
1.3.43 49,447 8/4/2014
1.3.42 11,474 7/30/2014
1.3.41 14,097 7/28/2014
1.3.40 10,523 7/26/2014
1.3.39 11,203 7/25/2014
1.3.38 10,481 7/25/2014
1.3.37 10,471 7/25/2014
1.3.36 13,935 7/20/2014
1.3.35 11,340 7/17/2014
1.3.34 15,454 7/6/2014
1.3.33 19,976 6/30/2014
1.3.30 11,801 6/19/2014
1.3.29 10,631 6/19/2014
1.3.28 10,831 6/19/2014
1.3.27 10,607 6/18/2014
1.3.26 12,397 6/18/2014
1.3.25 24,911 6/9/2014
1.3.24 33,285 5/21/2014
1.3.23 10,841 5/20/2014
1.3.20 12,477 5/18/2014
1.3.19 10,773 5/17/2014
1.3.18 10,903 5/17/2014
1.3.17 10,794 5/17/2014
1.3.16 10,797 5/17/2014
1.3.15 30,540 5/16/2014
1.3.14 10,633 5/16/2014
1.3.13 10,387 5/16/2014
1.3.12 10,812 5/14/2014
1.3.7 11,683 5/11/2014
1.3.6 13,864 5/9/2014
1.3.5 11,019 5/6/2014
1.3.4 10,794 5/4/2014
1.3.3 59,929 4/28/2014
1.3.1 16,619 4/26/2014
1.2.53 18,080 4/26/2014
1.2.52 10,676 4/24/2014
1.2.51 11,216 4/18/2014
1.2.50 10,616 4/18/2014
1.2.49 10,647 4/17/2014
1.2.48 11,191 4/14/2014
1.2.47 10,870 4/14/2014
1.2.45 10,707 4/13/2014
1.2.44 11,536 4/9/2014
1.2.41 11,094 4/7/2014
1.2.40 10,871 4/7/2014
1.2.39 11,312 3/29/2014
1.2.38 10,734 3/29/2014
1.2.37 10,807 3/29/2014
1.2.29 11,641 3/16/2014
1.2.27 11,354 3/14/2014
1.2.26 10,831 3/12/2014
1.2.25 17,709 2/20/2014
1.2.8 10,981 2/12/2014
1.2.7 12,499 1/13/2014
1.2.6 10,822 1/13/2014
1.2.5 10,674 1/10/2014
1.2.4 11,825 12/16/2013
1.2.3 16,968 11/30/2013
1.1.2 34,241 11/24/2013
1.1.1 23,506 11/23/2013
1.0.3 25,109 11/1/2013
1.0.2 11,858 10/14/2013
1.0.1 229,267 10/10/2013
0.9.5 10,820 10/7/2013
0.9.4 12,784 9/14/2013
0.9.3 10,541 9/12/2013
0.9.2 10,706 9/3/2013
0.9.1 12,584 8/24/2013
0.8.5 24,175 7/22/2013
0.8.4 10,570 7/20/2013
0.8.3 14,025 7/13/2013
0.8.2 10,866 7/11/2013
0.8.1 10,821 7/9/2013
0.7.2 10,788 7/6/2013
0.6.5 10,920 7/4/2013
0.6.4 10,835 7/3/2013
0.6.3 10,877 6/28/2013
0.6.1 32,544 6/13/2013
0.5.5 10,659 6/12/2013
0.5.4 10,717 6/4/2013
0.5.3 10,506 5/30/2013
0.5.2 10,546 5/27/2013
0.5.1 11,083 5/26/2013
0.4.3 10,757 5/25/2013
0.3.2 10,709 5/19/2013
0.3.1 10,723 5/19/2013
0.2.11 10,707 5/14/2013
0.2.10 10,653 5/13/2013
0.2.9 10,557 5/10/2013
0.2.8 19,997 5/9/2013
0.2.4 10,778 4/29/2013
0.2.3 12,752 4/23/2013
0.2.2 10,738 4/8/2013
0.2.1 11,432 4/8/2013
0.1.18 10,859 4/6/2013
0.1.17 10,691 4/4/2013
0.1.16 10,552 4/3/2013
0.1.12 10,753 4/1/2013
0.1.11 10,625 3/30/2013
0.1.10 10,986 3/27/2013
0.1.9 10,837 3/26/2013
0.1.8 10,868 3/24/2013
0.1.7 11,244 3/23/2013
0.1.6 1,076,017 3/23/2013