Serilog 4.3.1-dev-02395

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.

Showing the top 20 packages that depend on Serilog.

Packages Downloads
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
167
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
210
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
300
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
354
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
495
Serilog.AspNetCore.Plus
Serilog support for ASP.NET Core logging with some plus features
182
Serilog.Enrichers.WithCaller
Log message Enrichter, adding caller and code line infos
198
Serilog.Enrichers.WithCaller
Log message Enrichter, adding caller and code line infos
250
Serilog.Extensions.Hosting
Serilog support for .NET Core logging in hosted services
183
Serilog.Extensions.Logging
Low-level Serilog provider for Microsoft.Extensions.Logging
174
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
181
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
210
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
184
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
192
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
165
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
210
Serilog.Sinks.Debug
A Serilog sink that writes log events to the debug output window.
311
Serilog.Sinks.File
Write Serilog events to text files in plain or JSON format.
301
Serilog.Sinks.PeriodicBatching
The periodic batching sink for Serilog
184
Serilog.Sinks.PostgreSQL
Serilog sink for writing to PostgreSQL table
632

.NET Framework 4.6.2

.NET Standard 2.0

.NET 10.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET 8.0

  • No dependencies.

.NET Framework 4.7.1

.NET 6.0

  • No dependencies.

Version Downloads Last updated
4.3.1-dev-02395 3 11/12/2025
4.3.1-dev-02390 9 11/02/2025
4.3.1-dev-02387 31 09/27/2025
4.3.1-dev-02385 34 09/07/2025
4.3.1-dev-02383 19 09/05/2025
4.3.1-dev-02373 49 05/21/2025
4.3.0 57 05/20/2025
4.3.0-dev-02364 52 05/15/2025
4.3.0-dev-02363 52 05/15/2025
4.3.0-dev-02361 43 05/15/2025
4.3.0-dev-02360 46 05/15/2025
4.3.0-dev-02358 40 05/13/2025
4.3.0-dev-02357 44 05/13/2025
4.2.1-dev-02356 38 05/13/2025
4.2.1-dev-02355 48 05/13/2025
4.2.1-dev-02352 55 03/31/2025
4.2.1-dev-02340 49 04/02/2025
4.2.1-dev-02337 40 01/01/2025
4.2.0 69 12/07/2024
4.2.0-dev-02332 55 12/05/2024
4.2.0-dev-02331 51 12/04/2024
4.2.0-dev-02330 52 12/02/2024
4.2.0-dev-02328 53 11/20/2024
4.1.1-dev-02320 48 11/20/2024
4.1.1-dev-02318 55 11/03/2024
4.1.1-dev-02314 47 10/30/2024
4.1.0 55 10/23/2024
4.1.0-dev-02312 55 10/22/2024
4.1.0-dev-02311 45 10/22/2024
4.1.0-dev-02302 54 10/21/2024
4.1.0-dev-02301 52 10/21/2024
4.1.0-dev-02238 52 10/05/2024
4.1.0-dev-02235 54 10/04/2024
4.0.2 64 10/05/2024
4.0.2-dev-02232 49 10/05/2024
4.0.2-dev-02226 56 08/27/2024
4.0.2-dev-02224 61 08/23/2024
4.0.2-dev-02220 58 07/25/2024
4.0.1 46 08/25/2024
4.0.1-dev-02215 63 07/25/2024
4.0.1-dev-02212 63 08/25/2024
4.0.1-dev-02209 55 07/24/2024
4.0.1-dev-02205 57 07/24/2024
4.0.0 206 07/25/2024
4.0.0-dev-02201 64 07/24/2024
4.0.0-dev-02195 50 07/24/2024
4.0.0-dev-02191 51 07/24/2024
4.0.0-dev-02184 67 07/24/2024
4.0.0-dev-02183 55 07/24/2024
4.0.0-dev-02174 50 07/26/2024
4.0.0-dev-02167 59 07/24/2024
4.0.0-dev-02166 53 07/24/2024
4.0.0-dev-02163 51 08/25/2024
4.0.0-dev-02160 56 07/24/2024
4.0.0-dev-02159 57 07/24/2024
4.0.0-dev-02149 60 07/24/2024
4.0.0-dev-02122 59 07/24/2024
4.0.0-dev-02113 61 07/24/2024
4.0.0-dev-02108 59 07/24/2024
3.1.2-dev-02097 58 07/18/2024
3.1.1 164 02/04/2024
3.1.1-dev-02091 56 07/24/2024
3.1.0 77 07/24/2024
3.1.0-dev-02086 59 07/24/2024
3.1.0-dev-02083 52 07/24/2024
3.1.0-dev-02078 54 07/24/2024
3.1.0-dev-02077 54 08/26/2024
3.1.0-dev-02072 61 07/24/2024
3.1.0-dev-02071 64 08/25/2024
3.1.0-dev-02070 49 07/24/2024
3.1.0-dev-02064 42 10/01/2024
3.0.2-dev-02063 50 07/24/2024
3.0.2-dev-02056 56 07/24/2024
3.0.2-dev-02044 48 08/25/2024
3.0.2-dev-02042 45 08/25/2024
3.0.1 61 07/24/2024
3.0.1-dev-02033 57 07/24/2024
3.0.0 52 07/24/2024
3.0.0-dev-02028 64 07/24/2024
3.0.0-dev-02025 62 07/24/2024
3.0.0-dev-02022 55 07/24/2024
3.0.0-dev-02018 49 07/24/2024
3.0.0-dev-02012 48 08/25/2024
3.0.0-dev-02010 52 07/24/2024
3.0.0-dev-02008 54 08/25/2024
3.0.0-dev-01998 58 07/24/2024
3.0.0-dev-01993 55 07/24/2024
3.0.0-dev-01984 64 08/25/2024
3.0.0-dev-01982 58 07/24/2024
3.0.0-dev-01977 60 07/24/2024
3.0.0-dev-01974 55 10/01/2024
3.0.0-dev-01970 61 07/24/2024
3.0.0-dev-01969 55 07/24/2024
3.0.0-dev-01958 58 07/24/2024
3.0.0-dev-01957 55 07/24/2024
3.0.0-dev-01954 60 07/24/2024
3.0.0-dev-01950 52 07/24/2024
3.0.0-dev-01949 64 07/24/2024
3.0.0-dev-01948 59 07/24/2024
3.0.0-dev-01943 58 07/24/2024
3.0.0-dev-01942 60 07/24/2024
3.0.0-dev-01939 55 07/24/2024
3.0.0-dev-01927 62 08/24/2024
3.0.0-dev-01926 53 07/24/2024
3.0.0-dev-01924 65 08/25/2024
3.0.0-dev-01923 57 07/24/2024
3.0.0-dev-01921 54 07/24/2024
3.0.0-dev-01910 53 07/26/2024
3.0.0-dev-01909 55 07/24/2024
3.0.0-dev-01907 63 07/24/2024
3.0.0-dev-01901 48 07/24/2024
3.0.0-dev-01900 47 08/25/2024
3.0.0-dev-01899 51 07/24/2024
3.0.0-dev-01885 57 07/24/2024
3.0.0-dev-01884 56 07/24/2024
3.0.0-dev-01873 60 07/24/2024
3.0.0-dev-01870 62 07/24/2024
3.0.0-dev-01862 54 07/24/2024
3.0.0-dev-01860 55 07/24/2024
3.0.0-dev-01857 63 07/24/2024
3.0.0-dev-01856 53 07/24/2024
3.0.0-dev-01853 52 07/24/2024
3.0.0-dev-01850 51 08/25/2024
3.0.0-dev-01842 47 07/24/2024
3.0.0-dev-01840 57 07/24/2024
3.0.0-dev-01839 60 08/25/2024
3.0.0-dev-01838 53 07/24/2024
3.0.0-dev-01837 58 07/24/2024
3.0.0-dev-01836 53 08/25/2024
3.0.0-dev-01835 66 07/24/2024
3.0.0-dev-01828 66 07/24/2024
3.0.0-dev-01822 61 07/24/2024
3.0.0-dev-01817 63 10/10/2024
3.0.0-dev-01812 52 07/24/2024
3.0.0-dev-01811 55 07/24/2024
3.0.0-dev-01809 55 08/19/2024
3.0.0-dev-01801 61 07/24/2024
3.0.0-dev-01800 57 07/24/2024
3.0.0-dev-01794 58 07/24/2024
3.0.0-dev-01787 60 07/24/2024
3.0.0-dev-01774 56 07/24/2024
3.0.0-dev-01771 57 07/24/2024
3.0.0-dev-01768 57 07/24/2024
3.0.0-dev-01739 55 07/24/2024
3.0.0-dev-01728 63 08/25/2024
3.0.0-dev-01723 58 07/24/2024
3.0.0-dev-01722 63 07/24/2024
3.0.0-dev-01716 46 07/24/2024
3.0.0-dev-01703 57 07/24/2024
3.0.0-dev-01701 61 07/24/2024
3.0.0-dev-01691 46 07/24/2024
3.0.0-dev-01688 56 07/24/2024
3.0.0-dev-01685 46 08/25/2024
3.0.0-dev-01680 53 07/24/2024
3.0.0-dev-01675 60 07/24/2024
3.0.0-dev-01671 59 07/24/2024
3.0.0-dev-01670 55 07/24/2024
3.0.0-dev-01669 60 07/24/2024
3.0.0-dev-01668 50 08/25/2024
3.0.0-dev-01667 54 07/24/2024
3.0.0-dev-01666 52 07/25/2024
3.0.0-dev-01645 57 07/24/2024
2.12.1-dev-01635 59 07/24/2024
2.12.1-dev-01634 53 07/24/2024
2.12.1-dev-01629 53 07/24/2024
2.12.1-dev-01621 50 07/24/2024
2.12.1-dev-01620 59 07/24/2024
2.12.1-dev-01594 52 08/25/2024
2.12.1-dev-01587 54 07/24/2024
2.12.0 60 02/05/2024
2.12.0-dev-01571 58 07/24/2024
2.12.0-dev-01568 56 07/24/2024
2.12.0-dev-01564 57 07/24/2024
2.12.0-dev-01559 50 07/24/2024
2.12.0-dev-01555 61 08/07/2024
2.12.0-dev-01553 57 07/24/2024
2.12.0-dev-01551 51 07/24/2024
2.12.0-dev-01543 58 07/25/2024
2.12.0-dev-01538 60 07/24/2024
2.12.0-dev-01535 56 07/24/2024
2.12.0-dev-01533 52 08/25/2024
2.12.0-dev-01525 62 07/24/2024
2.12.0-dev-01520 53 07/24/2024
2.12.0-dev-01518 58 07/24/2024
2.12.0-dev-01516 64 07/24/2024
2.12.0-dev-01511 51 07/24/2024
2.12.0-dev-01504 58 07/24/2024
2.12.0-dev-01501 62 07/24/2024
2.12.0-dev-01499 61 08/25/2024
2.12.0-dev-01494 63 07/24/2024
2.12.0-dev-01492 55 07/24/2024
2.12.0-dev-01490 52 07/24/2024
2.12.0-dev-01489 57 07/24/2024
2.12.0-dev-01479 60 07/24/2024
2.12.0-dev-01477 54 07/24/2024
2.12.0-dev-01474 56 07/24/2024
2.12.0-dev-01471 53 07/26/2024
2.12.0-dev-01463 55 07/24/2024
2.12.0-dev-01458 52 07/24/2024
2.12.0-dev-01451 49 07/24/2024
2.12.0-dev-01449 56 07/25/2024
2.12.0-dev-01447 58 07/24/2024
2.12.0-dev-01445 57 07/26/2024
2.12.0-dev-01439 53 07/24/2024
2.12.0-dev-01435 51 07/24/2024
2.11.1-dev-01397 61 08/25/2024
2.11.0 62 07/24/2024
2.11.0-dev-01391 59 07/26/2024
2.11.0-dev-01387 56 07/24/2024
2.11.0-dev-01380 62 08/25/2024
2.11.0-dev-01377 51 07/24/2024
2.11.0-dev-01371 61 07/24/2024
2.11.0-dev-01367 60 08/25/2024
2.10.1-dev-01366 55 07/24/2024
2.10.1-dev-01365 51 07/24/2024
2.10.1-dev-01343 59 08/25/2024
2.10.1-dev-01338 50 07/24/2024
2.10.1-dev-01337 53 07/24/2024
2.10.1-dev-01334 57 07/24/2024
2.10.1-dev-01324 54 08/25/2024
2.10.1-dev-01321 52 07/24/2024
2.10.1-dev-01315 52 07/24/2024
2.10.1-dev-01314 58 07/24/2024
2.10.1-dev-01308 58 07/24/2024
2.10.1-dev-01306 63 07/24/2024
2.10.1-dev-01285 56 07/24/2024
2.10.1-dev-01265 49 07/24/2024
2.10.1-dev-01256 62 07/24/2024
2.10.1-dev-01249 63 07/24/2024
2.10.1-dev-01248 65 07/24/2024
2.10.0 387 02/04/2024
2.10.0-dev-01245 59 08/24/2024
2.10.0-dev-01240 55 07/24/2024
2.10.0-dev-01226 55 07/25/2024
2.10.0-dev-01221 59 07/24/2024
2.10.0-dev-01219 59 07/24/2024
2.10.0-dev-01213 57 08/25/2024
2.10.0-dev-01211 56 07/24/2024
2.10.0-dev-01191 49 07/24/2024
2.10.0-dev-01187 63 08/25/2024
2.9.1-dev-01177 59 07/24/2024
2.9.1-dev-01172 57 07/24/2024
2.9.1-dev-01169 53 07/24/2024
2.9.1-dev-01167 64 07/24/2024
2.9.1-dev-01166 53 07/24/2024
2.9.1-dev-01165 62 07/24/2024
2.9.1-dev-01154 55 09/04/2024
2.9.1-dev-01151 47 07/24/2024
2.9.1-dev-01149 49 07/24/2024
2.9.1-dev-01148 55 07/24/2024
2.9.1-dev-01141 60 07/24/2024
2.9.1-dev-01138 53 08/25/2024
2.9.0 63 07/24/2024
2.9.0-dev-01133 58 07/24/2024
2.9.0-dev-01124 57 07/24/2024
2.9.0-dev-01119 58 07/24/2024
2.9.0-dev-01116 59 07/26/2024
2.9.0-dev-01102 57 07/24/2024
2.9.0-dev-01099 53 07/25/2024
2.9.0-dev-01098 53 08/25/2024
2.9.0-dev-01091 62 07/24/2024
2.8.1-dev-01090 52 08/25/2024
2.8.1-dev-01086 57 07/24/2024
2.8.1-dev-01085 56 07/24/2024
2.8.1-dev-01063 52 07/25/2024
2.8.1-dev-01058 58 07/24/2024
2.8.1-dev-01054 59 07/24/2024
2.8.1-dev-01052 57 07/24/2024
2.8.1-dev-01049 48 07/26/2024
2.8.1-dev-01048 51 07/24/2024
2.8.1-dev-01047 52 07/24/2024
2.8.0 66 08/25/2024
2.8.0-dev-01042 62 07/24/2024
2.7.2-dev-01041 60 07/24/2024
2.7.2-dev-01033 51 08/25/2024
2.7.2-dev-01032 51 07/23/2024
2.7.2-dev-01030 58 07/24/2024
2.7.2-dev-01027 53 08/25/2024
2.7.2-dev-01024 56 07/24/2024
2.7.2-dev-01023 59 07/24/2024
2.7.2-dev-01017 53 07/24/2024
2.7.2-dev-01013 62 08/25/2024
2.7.2-dev-01010 55 08/06/2024
2.7.2-dev-01005 56 07/24/2024
2.7.1 181 02/04/2024
2.7.1-dev-01000 61 07/24/2024
2.7.1-dev-00993 50 08/25/2024
2.7.1-dev-00990 64 07/25/2024
2.7.1-dev-00985 59 07/24/2024
2.7.1-dev-00983 51 07/24/2024
2.7.1-dev-00980 55 08/25/2024
2.7.1-dev-00972 59 07/24/2024
2.7.1-dev-00967 58 07/24/2024
2.7.1-dev-00963 51 07/24/2024
2.7.1-dev-00960 47 07/24/2024
2.7.1-dev-00956 59 08/25/2024
2.7.1-dev-00950 52 07/24/2024
2.6.1-dev-00948 54 07/24/2024
2.6.1-dev-00938 57 07/24/2024
2.6.1-dev-00936 60 07/24/2024
2.6.0 58 07/24/2024
2.6.0-dev-00932 61 07/24/2024
2.6.0-dev-00929 52 07/24/2024
2.6.0-dev-00925 60 07/24/2024
2.6.0-dev-00923 54 08/25/2024
2.6.0-dev-00922 63 07/24/2024
2.6.0-dev-00919 55 07/24/2024
2.6.0-dev-00915 68 08/25/2024
2.6.0-dev-00911 66 07/24/2024
2.6.0-dev-00904 62 07/26/2024
2.6.0-dev-00902 59 07/24/2024
2.6.0-dev-00894 48 07/24/2024
2.6.0-dev-00892 63 08/25/2024
2.5.1-dev-00890 65 08/25/2024
2.5.1-dev-00886 57 08/25/2024
2.5.1-dev-00873 56 07/24/2024
2.5.1-dev-00869 54 07/24/2024
2.5.1-dev-00863 55 07/24/2024
2.5.1-dev-00862 59 07/24/2024
2.5.1-dev-00859 52 07/24/2024
2.5.0 132 02/04/2024
2.5.0-dev-00855 56 07/24/2024
2.5.0-dev-00853 52 08/25/2024
2.5.0-dev-00848 55 07/24/2024
2.5.0-dev-00842 48 07/24/2024
2.5.0-dev-00841 56 07/24/2024
2.5.0-dev-00839 58 07/24/2024
2.5.0-dev-00833 52 07/24/2024
2.5.0-dev-00822 53 07/24/2024
2.5.0-dev-00820 56 07/26/2024
2.5.0-dev-00817 58 07/24/2024
2.5.0-dev-00814 57 07/24/2024
2.5.0-dev-00812 56 08/25/2024
2.4.1-dev-00811 58 07/24/2024
2.4.1-dev-00805 56 07/24/2024
2.4.1-dev-00801 49 08/25/2024
2.4.1-dev-00799 50 07/24/2024
2.4.1-dev-00796 56 07/24/2024
2.4.0 47 07/24/2024
2.4.0-dev-00771 56 08/25/2024
2.4.0-dev-00769 63 07/24/2024
2.4.0-dev-00767 63 07/24/2024
2.4.0-dev-00766 53 07/24/2024
2.4.0-dev-00760 58 07/24/2024
2.4.0-dev-00757 56 08/25/2024
2.4.0-dev-00755 57 07/24/2024
2.4.0-dev-00750 57 08/25/2024
2.4.0-dev-00746 51 07/24/2024
2.4.0-dev-00739 58 07/24/2024
2.4.0-dev-00736 57 08/25/2024
2.4.0-dev-00733 56 07/24/2024
2.4.0-dev-00730 53 08/25/2024
2.4.0-dev-00728 57 08/25/2024
2.4.0-dev-00723 55 07/24/2024
2.3.0 69 07/24/2024
2.3.0-dev-00719 55 07/24/2024
2.3.0-dev-00711 62 07/24/2024
2.3.0-dev-00707 55 07/25/2024
2.3.0-dev-00705 57 07/24/2024
2.3.0-dev-00704 54 07/24/2024
2.2.1 52 08/25/2024
2.2.1-dev-00697 52 07/24/2024
2.2.0 51 07/24/2024
2.2.0-dev-00693 56 07/24/2024
2.2.0-dev-00690 52 07/24/2024
2.2.0-dev-00688 55 07/24/2024
2.1.1-dev-00686 58 07/24/2024
2.1.1-dev-00680 53 08/25/2024
2.1.0 54 07/24/2024
2.1.0-dev-00674 52 07/24/2024
2.1.0-dev-00670 58 07/24/2024
2.1.0-dev-00668 53 07/25/2024
2.1.0-dev-00666 58 07/24/2024
2.0.1-dev-00665 62 08/19/2024
2.0.0 126 02/04/2024
2.0.0-rc-640 48 07/24/2024
2.0.0-rc-634 59 07/24/2024
2.0.0-rc-633 57 08/25/2024
2.0.0-rc-628 51 07/24/2024
2.0.0-rc-622 60 07/24/2024
2.0.0-rc-621 56 07/24/2024
2.0.0-rc-619 48 08/25/2024
2.0.0-rc-618 49 07/24/2024
2.0.0-rc-606 59 07/24/2024
2.0.0-rc-602 59 07/24/2024
2.0.0-rc-600 56 07/24/2024
2.0.0-rc-598 53 07/24/2024
2.0.0-rc-596 54 07/25/2024
2.0.0-rc-594 52 09/19/2024
2.0.0-rc-587 51 07/24/2024
2.0.0-rc-577 62 07/24/2024
2.0.0-rc-576 55 07/24/2024
2.0.0-rc-573 55 07/24/2024
2.0.0-rc-563 64 07/24/2024
2.0.0-rc-556 53 09/17/2024
2.0.0-beta-541 60 08/25/2024
2.0.0-beta-537 49 07/24/2024
2.0.0-beta-533 50 07/24/2024
2.0.0-beta-531 51 07/26/2024
2.0.0-beta-530 60 07/24/2024
2.0.0-beta-523 58 07/24/2024
2.0.0-beta-521 49 07/26/2024
2.0.0-beta-519 57 08/25/2024
2.0.0-beta-516 53 07/24/2024
2.0.0-beta-513 66 07/24/2024
2.0.0-beta-511 55 07/24/2024
2.0.0-beta-509 64 07/24/2024
2.0.0-beta-507 58 08/25/2024
2.0.0-beta-505 57 07/24/2024
2.0.0-beta-502 59 07/24/2024
2.0.0-beta-499 56 07/24/2024
2.0.0-beta-495 51 07/26/2024
2.0.0-beta-494 60 08/25/2024
2.0.0-beta-493 55 08/25/2024
2.0.0-beta-487 58 07/24/2024
2.0.0-beta-486 64 07/25/2024
2.0.0-beta-479 59 07/24/2024
2.0.0-beta-478 54 07/24/2024
2.0.0-beta-465 55 07/24/2024
2.0.0-beta-456 68 07/24/2024
2.0.0-beta-450 65 07/24/2024
2.0.0-beta-449 57 07/24/2024
2.0.0-beta-432 55 07/24/2024
2.0.0-beta-423 57 07/24/2024
2.0.0-beta-418 49 08/25/2024
2.0.0-beta-416 52 07/24/2024
2.0.0-beta-403 55 07/24/2024
2.0.0-beta-395 51 08/25/2024
1.5.14 62 07/24/2024
1.5.13 48 07/24/2024
1.5.12 60 07/24/2024
1.5.11 55 07/24/2024
1.5.10 57 07/24/2024
1.5.9 53 08/25/2024
1.5.8 47 07/24/2024
1.5.7 52 08/25/2024
1.5.6 56 07/24/2024
1.5.5 54 07/24/2024
1.5.1 53 08/25/2024
1.4.214 58 07/24/2024
1.4.204 52 07/24/2024
1.4.196 52 07/24/2024
1.4.182 60 07/24/2024
1.4.168 56 07/24/2024
1.4.155 60 07/24/2024
1.4.154 61 07/24/2024
1.4.152 61 07/24/2024
1.4.139 58 07/24/2024
1.4.128 56 07/24/2024
1.4.126 67 07/24/2024
1.4.118 60 07/24/2024
1.4.113 66 07/24/2024
1.4.102 55 07/24/2024
1.4.99 57 07/24/2024
1.4.97 54 07/24/2024
1.4.95 57 07/24/2024
1.4.76 59 07/24/2024
1.4.75 49 07/24/2024
1.4.39 53 07/24/2024
1.4.34 57 07/24/2024
1.4.28 56 07/24/2024
1.4.27 60 07/24/2024
1.4.23 54 07/24/2024
1.4.22 54 07/24/2024
1.4.21 53 07/24/2024
1.4.18 53 07/24/2024
1.4.17 60 07/24/2024
1.4.16 54 07/24/2024
1.4.15 61 07/24/2024
1.4.14 60 07/24/2024
1.4.13 56 07/24/2024
1.4.12 64 07/24/2024
1.4.11 60 07/24/2024
1.4.10 57 07/24/2024
1.4.9 52 07/24/2024
1.4.8 56 07/21/2024
1.4.7 53 07/24/2024
1.4.6 66 07/24/2024
1.4.5 53 07/24/2024
1.4.4 50 08/25/2024
1.4.3 62 07/24/2024
1.4.2 56 07/24/2024
1.4.1 59 07/24/2024
1.3.43 57 07/24/2024
1.3.42 56 07/24/2024
1.3.41 62 07/24/2024
1.3.40 53 07/24/2024
1.3.39 52 07/24/2024
1.3.38 56 07/24/2024
1.3.37 51 07/24/2024
1.3.36 60 07/24/2024
1.3.35 49 07/24/2024
1.3.34 58 07/24/2024
1.3.33 58 07/24/2024
1.3.30 55 07/24/2024
1.3.29 51 07/24/2024
1.3.28 55 07/24/2024
1.3.27 57 07/24/2024
1.3.26 57 07/24/2024
1.3.25 61 07/24/2024
1.3.24 57 07/24/2024
1.3.23 55 07/24/2024
1.3.20 52 07/24/2024
1.3.19 46 07/24/2024
1.3.18 54 07/24/2024
1.3.17 59 07/24/2024
1.3.16 64 07/24/2024
1.3.15 56 07/24/2024
1.3.14 53 07/24/2024
1.3.13 51 07/24/2024
1.3.12 60 07/24/2024
1.3.7 58 07/24/2024
1.3.6 57 07/24/2024
1.3.5 51 08/25/2024
1.3.4 46 07/24/2024
1.3.3 60 07/24/2024
1.3.1 49 07/24/2024
1.2.53 63 07/24/2024
1.2.52 58 07/24/2024
1.2.51 57 07/24/2024
1.2.50 62 07/24/2024
1.2.49 56 07/24/2024
1.2.48 60 07/24/2024
1.2.47 62 07/24/2024
1.2.45 64 07/24/2024
1.2.44 51 07/24/2024
1.2.41 54 07/24/2024
1.2.40 57 07/24/2024
1.2.39 56 07/24/2024
1.2.38 65 07/24/2024
1.2.37 57 07/24/2024
1.2.29 61 07/24/2024
1.2.27 47 07/24/2024
1.2.26 56 07/24/2024
1.2.25 60 07/24/2024
1.2.8 49 07/24/2024
1.2.7 58 07/24/2024
1.2.6 56 07/24/2024
1.2.5 56 08/25/2024
1.2.4 53 07/24/2024
1.2.3 54 07/24/2024
1.1.2 61 08/25/2024
1.1.1 65 07/24/2024
1.0.3 57 07/24/2024
1.0.2 57 07/24/2024
1.0.1 53 07/24/2024
0.9.5 55 07/24/2024
0.9.4 51 07/24/2024
0.9.3 54 07/24/2024
0.9.2 49 08/25/2024
0.9.1 64 07/24/2024
0.8.5 56 07/24/2024
0.8.4 49 07/24/2024
0.8.3 57 07/24/2024
0.8.2 61 07/24/2024
0.8.1 54 07/24/2024
0.7.2 60 08/25/2024
0.6.5 49 07/24/2024
0.6.4 59 07/24/2024
0.6.3 60 07/24/2024
0.6.1 62 07/24/2024
0.5.5 51 07/24/2024
0.5.4 56 07/24/2024
0.5.3 56 07/24/2024
0.5.2 55 07/25/2024
0.5.1 48 08/25/2024
0.4.3 47 07/24/2024
0.3.2 54 07/24/2024
0.3.1 45 08/25/2024
0.2.11 56 07/24/2024
0.2.10 58 07/24/2024
0.2.9 50 07/24/2024
0.2.8 53 07/24/2024
0.2.4 54 07/24/2024
0.2.3 55 07/24/2024
0.2.2 54 08/25/2024
0.2.1 69 07/24/2024
0.1.18 60 07/24/2024
0.1.17 58 07/24/2024
0.1.16 55 07/24/2024
0.1.12 61 07/24/2024
0.1.11 58 07/24/2024
0.1.10 54 07/24/2024
0.1.9 51 07/24/2024
0.1.8 54 07/24/2024
0.1.7 64 07/24/2024
0.1.6 49 07/24/2024