Serilog 3.0.2-dev-02042

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.

Showing the top 20 packages that depend on Serilog.

Packages Downloads
Quantum.Framework.WebApp
Package Description
114
Quantum.Framework.WebApp
Package Description
132
Quantum.Framework.WebApp
Package Description
160
Quantum.Framework.WebApp
Package Description
174
Quantum.Framework.WebApp
提供TMS/WMS/OMS/AMS等共享的组件
163
Quantum.Framework.WebApp
提供TMS/WMS/OMS/AMS等共享的组件
195
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
206
Serilog.Extensions.Hosting
Serilog support for .NET Core logging in hosted services
189
Serilog.Extensions.Hosting
Serilog support for .NET Core logging in hosted services
237
Serilog.Extensions.Hosting
Serilog support for .NET Core logging in hosted services
13,952
Serilog.Extensions.Logging
Low-level Serilog provider for Microsoft.Extensions.Logging
211
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
273
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
14,126
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
206
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
109
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
257
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
357
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
14,320
Serilog.Sinks.File
Write Serilog events to text files in plain or JSON format.
193
Serilog.Sinks.File
Write Serilog events to text files in plain or JSON format.
14,385

.NET Framework 4.6.2

.NET Framework 4.7.1

  • No dependencies.

.NET 5.0

  • No dependencies.

.NET 6.0

  • No dependencies.

.NET 7.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
4.3.1-dev-02387 2 09/29/2025
4.3.1-dev-02385 6 09/07/2025
4.3.1-dev-02383 5 09/06/2025
4.3.1-dev-02373 24 05/22/2025
4.3.0 10 05/23/2025
4.3.0-dev-02364 11 05/15/2025
4.3.0-dev-02363 9 05/17/2025
4.3.0-dev-02361 10 05/16/2025
4.3.0-dev-02360 7 05/16/2025
4.3.0-dev-02358 11 05/15/2025
4.3.0-dev-02357 10 05/15/2025
4.2.1-dev-02356 20 05/15/2025
4.2.1-dev-02355 10 05/14/2025
4.2.1-dev-02352 13 03/22/2025
4.2.1-dev-02340 12 03/13/2025
4.2.1-dev-02337 16 12/29/2024
4.2.0 19 12/26/2024
4.2.0-dev-02332 15 12/06/2024
4.2.0-dev-02331 22 12/06/2024
4.2.0-dev-02330 19 12/05/2024
4.2.0-dev-02328 16 11/26/2024
4.1.1-dev-02320 19 11/28/2024
4.1.1-dev-02318 19 11/21/2024
4.1.1-dev-02314 23 11/30/2024
4.1.0 21 11/12/2024
4.1.0-dev-02312 16 11/11/2024
4.1.0-dev-02311 17 12/06/2024
4.1.0-dev-02302 15 11/14/2024
4.1.0-dev-02301 19 12/14/2024
4.1.0-dev-02238 16 11/20/2024
4.1.0-dev-02235 17 11/14/2024
4.0.2 20 11/28/2024
4.0.2-dev-02232 21 11/12/2024
4.0.2-dev-02226 23 12/14/2024
4.0.2-dev-02224 27 11/28/2024
4.0.2-dev-02220 18 12/10/2024
4.0.1 19 11/14/2024
4.0.1-dev-02215 25 11/14/2024
4.0.1-dev-02212 18 11/27/2024
4.0.1-dev-02209 25 11/12/2024
4.0.1-dev-02205 18 11/27/2024
4.0.0 19 11/14/2024
4.0.0-dev-02201 19 12/02/2024
4.0.0-dev-02195 16 11/25/2024
4.0.0-dev-02191 20 05/29/2024
4.0.0-dev-02184 24 05/29/2024
4.0.0-dev-02183 24 05/23/2024
4.0.0-dev-02174 19 12/06/2024
4.0.0-dev-02167 24 06/02/2024
4.0.0-dev-02166 18 06/02/2024
4.0.0-dev-02163 21 06/02/2024
4.0.0-dev-02160 20 06/02/2024
4.0.0-dev-02159 21 06/02/2024
4.0.0-dev-02149 17 11/13/2024
4.0.0-dev-02122 21 06/02/2024
4.0.0-dev-02113 20 06/02/2024
4.0.0-dev-02108 23 06/02/2024
3.1.2-dev-02097 20 06/02/2024
3.1.1 188 01/26/2024
3.1.1-dev-02091 21 06/02/2024
3.1.0 49 11/14/2024
3.1.0-dev-02086 26 06/02/2024
3.1.0-dev-02083 22 06/02/2024
3.1.0-dev-02078 21 06/02/2024
3.1.0-dev-02077 19 06/02/2024
3.1.0-dev-02072 22 06/02/2024
3.1.0-dev-02071 21 06/02/2024
3.1.0-dev-02070 25 06/02/2024
3.1.0-dev-02064 26 06/02/2024
3.0.2-dev-02063 28 05/29/2024
3.0.2-dev-02056 25 06/02/2024
3.0.2-dev-02044 20 12/10/2024
3.0.2-dev-02042 22 06/02/2024
3.0.1 22 12/06/2024
3.0.1-dev-02033 28 06/02/2024
3.0.0 17 11/14/2024
3.0.0-dev-02028 23 06/02/2024
3.0.0-dev-02025 23 06/02/2024
3.0.0-dev-02022 23 06/02/2024
3.0.0-dev-02018 25 05/29/2024
3.0.0-dev-02012 29 06/02/2024
3.0.0-dev-02010 39 06/02/2024
3.0.0-dev-02008 29 06/02/2024
3.0.0-dev-01998 25 06/02/2024
3.0.0-dev-01993 18 06/02/2024
3.0.0-dev-01984 24 06/02/2024
3.0.0-dev-01982 18 05/29/2024
3.0.0-dev-01977 20 06/02/2024
3.0.0-dev-01974 20 06/02/2024
3.0.0-dev-01970 20 06/02/2024
3.0.0-dev-01969 22 06/02/2024
3.0.0-dev-01958 24 06/02/2024
3.0.0-dev-01957 20 06/02/2024
3.0.0-dev-01954 20 06/02/2024
3.0.0-dev-01950 19 06/02/2024
3.0.0-dev-01949 23 06/02/2024
3.0.0-dev-01948 40 06/02/2024
3.0.0-dev-01943 19 06/02/2024
3.0.0-dev-01942 25 06/02/2024
3.0.0-dev-01939 20 06/02/2024
3.0.0-dev-01927 24 06/02/2024
3.0.0-dev-01926 20 06/02/2024
3.0.0-dev-01924 18 06/02/2024
3.0.0-dev-01923 20 06/02/2024
3.0.0-dev-01921 19 06/02/2024
3.0.0-dev-01910 28 06/02/2024
3.0.0-dev-01909 21 06/02/2024
3.0.0-dev-01907 19 06/02/2024
3.0.0-dev-01901 20 06/02/2024
3.0.0-dev-01900 21 06/02/2024
3.0.0-dev-01899 27 06/02/2024
3.0.0-dev-01885 30 06/02/2024
3.0.0-dev-01884 18 06/02/2024
3.0.0-dev-01873 19 06/02/2024
3.0.0-dev-01870 22 06/02/2024
3.0.0-dev-01862 23 06/02/2024
3.0.0-dev-01860 21 06/02/2024
3.0.0-dev-01857 23 06/02/2024
3.0.0-dev-01856 22 06/02/2024
3.0.0-dev-01853 19 06/02/2024
3.0.0-dev-01850 19 06/02/2024
3.0.0-dev-01842 22 06/02/2024
3.0.0-dev-01840 22 06/02/2024
3.0.0-dev-01839 24 06/02/2024
3.0.0-dev-01838 21 06/02/2024
3.0.0-dev-01837 20 11/14/2024
3.0.0-dev-01836 20 06/02/2024
3.0.0-dev-01835 17 11/16/2024
3.0.0-dev-01828 27 11/28/2024
3.0.0-dev-01822 21 06/02/2024
3.0.0-dev-01817 19 11/12/2024
3.0.0-dev-01812 23 06/02/2024
3.0.0-dev-01811 16 06/02/2024
3.0.0-dev-01809 29 06/02/2024
3.0.0-dev-01801 17 06/02/2024
3.0.0-dev-01800 15 11/15/2024
3.0.0-dev-01794 24 06/02/2024
3.0.0-dev-01787 26 06/02/2024
3.0.0-dev-01774 24 06/02/2024
3.0.0-dev-01771 18 06/02/2024
3.0.0-dev-01768 21 06/02/2024
3.0.0-dev-01739 23 06/02/2024
3.0.0-dev-01728 23 06/02/2024
3.0.0-dev-01723 22 06/02/2024
3.0.0-dev-01722 20 06/02/2024
3.0.0-dev-01716 21 06/02/2024
3.0.0-dev-01703 28 06/02/2024
3.0.0-dev-01701 24 06/02/2024
3.0.0-dev-01691 22 06/02/2024
3.0.0-dev-01688 19 06/02/2024
3.0.0-dev-01685 25 11/14/2024
3.0.0-dev-01680 19 06/02/2024
3.0.0-dev-01675 22 06/02/2024
3.0.0-dev-01671 21 06/02/2024
3.0.0-dev-01670 25 06/02/2024
3.0.0-dev-01669 25 06/02/2024
3.0.0-dev-01668 23 05/24/2024
3.0.0-dev-01667 22 06/02/2024
3.0.0-dev-01666 25 06/02/2024
3.0.0-dev-01645 26 06/02/2024
2.12.1-dev-01635 24 06/02/2024
2.12.1-dev-01634 26 06/02/2024
2.12.1-dev-01629 21 06/02/2024
2.12.1-dev-01621 21 06/02/2024
2.12.1-dev-01620 26 06/02/2024
2.12.1-dev-01594 24 06/02/2024
2.12.1-dev-01587 23 06/02/2024
2.12.0 50 11/23/2022
2.12.0-dev-01571 24 06/02/2024
2.12.0-dev-01568 19 06/02/2024
2.12.0-dev-01564 22 06/02/2024
2.12.0-dev-01559 21 06/02/2024
2.12.0-dev-01555 20 06/02/2024
2.12.0-dev-01553 24 06/02/2024
2.12.0-dev-01551 19 06/02/2024
2.12.0-dev-01543 26 06/02/2024
2.12.0-dev-01538 18 06/02/2024
2.12.0-dev-01535 18 06/02/2024
2.12.0-dev-01533 22 06/02/2024
2.12.0-dev-01525 21 06/02/2024
2.12.0-dev-01520 21 06/02/2024
2.12.0-dev-01518 21 06/02/2024
2.12.0-dev-01516 20 06/02/2024
2.12.0-dev-01511 21 06/02/2024
2.12.0-dev-01504 25 06/02/2024
2.12.0-dev-01501 23 06/02/2024
2.12.0-dev-01499 28 06/02/2024
2.12.0-dev-01494 17 06/02/2024
2.12.0-dev-01492 26 06/02/2024
2.12.0-dev-01490 24 06/02/2024
2.12.0-dev-01489 19 06/02/2024
2.12.0-dev-01479 21 06/02/2024
2.12.0-dev-01477 18 11/27/2024
2.12.0-dev-01474 21 06/02/2024
2.12.0-dev-01471 19 06/02/2024
2.12.0-dev-01463 22 06/02/2024
2.12.0-dev-01458 27 05/29/2024
2.12.0-dev-01451 15 06/02/2024
2.12.0-dev-01449 19 06/02/2024
2.12.0-dev-01447 30 06/02/2024
2.12.0-dev-01445 21 06/02/2024
2.12.0-dev-01439 19 06/02/2024
2.12.0-dev-01435 24 06/02/2024
2.11.1-dev-01397 22 06/02/2024
2.11.0 13,632 07/13/2022
2.11.0-dev-01391 22 06/02/2024
2.11.0-dev-01387 26 06/02/2024
2.11.0-dev-01367 26 05/08/2022
2.10.1-dev-01366 22 06/02/2024
2.10.1-dev-01338 25 06/02/2024
2.10.1-dev-01324 27 06/02/2024
2.10.1-dev-01321 32 06/02/2024
2.10.1-dev-01308 20 06/02/2024
2.10.1-dev-01306 21 06/02/2024
2.10.1-dev-01285 24 06/02/2024
2.10.1-dev-01265 26 06/02/2024
2.10.1-dev-01256 35 06/02/2024
2.10.0-dev-01245 31 06/02/2024
2.10.0-dev-01240 20 06/02/2024
2.10.0-dev-01219 21 06/02/2024
2.10.0-dev-01187 23 06/02/2024
2.9.1-dev-01166 19 06/02/2024
2.9.1-dev-01165 24 06/02/2024
2.9.1-dev-01151 23 06/02/2024
2.9.1-dev-01149 17 11/26/2024
2.9.1-dev-01148 26 06/02/2024
2.9.1-dev-01141 18 06/02/2024
2.8.1-dev-01090 25 06/02/2024
2.8.1-dev-01086 26 06/02/2024
2.8.1-dev-01058 20 06/02/2024
2.8.1-dev-01052 22 06/02/2024
2.8.1-dev-01049 28 06/02/2024
2.8.1-dev-01047 22 06/02/2024
2.8.0 86 05/10/2022
2.7.2-dev-01010 26 06/02/2024
2.7.1 20 12/06/2024
2.7.1-dev-01000 25 06/02/2024
2.7.1-dev-00993 22 06/02/2024
2.7.1-dev-00990 20 06/02/2024
2.7.1-dev-00985 36 06/02/2024
2.7.1-dev-00980 24 06/02/2024
2.7.1-dev-00972 24 06/02/2024
2.7.1-dev-00967 30 06/02/2024
2.7.1-dev-00960 19 06/02/2024
2.7.1-dev-00956 21 06/02/2024
2.6.1-dev-00948 20 06/02/2024
2.6.1-dev-00938 20 06/02/2024
2.6.1-dev-00936 23 06/02/2024
2.6.0 39 11/28/2024
2.6.0-dev-00932 19 06/02/2024
2.6.0-dev-00925 26 06/02/2024
2.6.0-dev-00911 18 06/02/2024
2.6.0-dev-00904 23 06/02/2024
2.6.0-dev-00892 20 06/02/2024
2.5.1-dev-00890 21 06/02/2024
2.5.1-dev-00886 24 05/09/2022
2.5.1-dev-00862 26 06/02/2024
2.5.0-dev-00855 23 06/02/2024
2.5.0-dev-00853 25 06/02/2024
2.5.0-dev-00822 36 06/02/2024
2.4.1-dev-00811 20 06/02/2024
2.4.1-dev-00805 20 06/02/2024
2.4.0-dev-00766 22 06/02/2024
2.4.0-dev-00760 17 06/02/2024
2.4.0-dev-00739 20 06/02/2024
2.4.0-dev-00736 22 06/02/2024
2.4.0-dev-00733 27 06/02/2024
2.3.0-dev-00711 22 06/02/2024
2.3.0-dev-00707 22 06/02/2024
2.2.1-dev-00697 19 06/02/2024
2.2.0-dev-00688 20 06/02/2024
2.1.1-dev-00686 17 06/02/2024
2.1.1-dev-00680 30 06/02/2024
2.1.0-dev-00668 22 05/10/2022
2.0.0-rc-622 24 06/02/2024
2.0.0-rc-621 19 06/02/2024
2.0.0-rc-619 22 06/02/2024
2.0.0-rc-606 28 06/02/2024
2.0.0-rc-602 21 06/02/2024
2.0.0-rc-600 30 06/02/2024
2.0.0-rc-598 20 06/02/2024
2.0.0-rc-596 24 06/02/2024
2.0.0-rc-594 31 06/02/2024
2.0.0-rc-577 24 06/02/2024
2.0.0-rc-576 26 06/02/2024
2.0.0-rc-573 24 06/02/2024
2.0.0-rc-563 25 06/02/2024
2.0.0-rc-556 22 06/02/2024
2.0.0-beta-541 20 06/02/2024
2.0.0-beta-537 29 06/02/2024
2.0.0-beta-531 22 06/02/2024
2.0.0-beta-519 19 06/02/2024
2.0.0-beta-516 21 06/02/2024
2.0.0-beta-513 20 06/02/2024
2.0.0-beta-507 24 06/02/2024
2.0.0-beta-505 40 06/02/2024
2.0.0-beta-502 24 06/02/2024
2.0.0-beta-499 22 06/02/2024
2.0.0-beta-493 21 06/02/2024
2.0.0-beta-487 23 06/02/2024
2.0.0-beta-478 21 06/02/2024
2.0.0-beta-456 15 06/02/2024
2.0.0-beta-450 21 06/02/2024
2.0.0-beta-449 22 06/02/2024
2.0.0-beta-423 18 06/02/2024
2.0.0-beta-418 23 06/02/2024
2.0.0-beta-416 22 06/02/2024
2.0.0-beta-403 24 06/02/2024
2.0.0-beta-395 25 06/02/2024
1.5.14 33 06/02/2024
1.5.12 19 12/10/2024
1.5.10 36 06/02/2024
1.5.9 23 05/10/2022
1.5.8 19 11/14/2024
1.5.7 22 11/26/2024
1.5.6 18 11/25/2024
1.5.5 22 12/06/2024
1.5.1 24 11/14/2024
1.4.204 16 06/02/2024
1.4.182 28 06/02/2024
1.4.168 18 06/02/2024
1.4.155 23 06/02/2024
1.4.154 35 06/02/2024
1.4.152 28 06/02/2024
1.4.128 26 06/02/2024
1.4.118 18 06/02/2024
1.4.113 17 06/02/2024
1.4.99 18 06/02/2024
1.4.97 25 06/02/2024
1.4.75 20 06/02/2024
1.4.39 22 06/02/2024
1.4.34 18 06/02/2024
1.4.28 35 05/28/2024
1.4.27 18 06/02/2024
1.4.22 21 06/02/2024
1.4.21 20 06/02/2024
1.4.18 23 06/02/2024
1.4.17 18 06/02/2024
1.4.16 23 06/02/2024
1.4.15 24 06/02/2024
1.4.14 24 06/02/2024
1.4.13 17 06/02/2024
1.4.12 17 06/02/2024
1.4.11 20 11/28/2024
1.4.10 17 11/14/2024
1.4.8 19 11/12/2024
1.4.7 20 11/14/2024
1.4.6 19 11/29/2024
1.4.5 20 11/12/2024
1.4.4 16 11/11/2024
1.4.3 17 11/11/2024
1.4.2 20 11/11/2024
1.3.43 18 12/12/2024
1.3.40 22 11/12/2024
1.3.39 20 11/28/2024
1.3.38 16 11/26/2024
1.3.36 16 11/14/2024
1.3.35 18 12/02/2024
1.3.34 16 12/13/2024
1.3.33 33 11/27/2024
1.3.29 18 12/07/2024
1.3.28 32 11/25/2024
1.3.27 20 11/26/2024
1.3.24 26 11/26/2024
1.3.23 20 11/29/2024
1.3.20 19 03/01/2023
1.3.19 18 11/11/2024
1.3.18 17 11/12/2024
1.3.17 28 11/28/2024
1.3.16 26 11/27/2024
1.3.14 25 12/02/2024
1.3.13 22 12/06/2024
1.3.12 15 11/26/2024
1.3.6 21 11/12/2024
1.3.5 19 11/27/2024
1.3.4 19 12/06/2024
1.3.3 23 12/02/2024
1.3.1 22 05/15/2024
1.2.53 22 11/27/2024
1.2.52 20 11/28/2024
1.2.51 18 12/04/2024
1.2.49 26 11/27/2024
1.2.45 19 11/13/2024
1.2.41 18 11/14/2024
1.2.40 27 11/26/2024
1.2.38 19 11/27/2024
1.2.27 18 11/11/2024
1.2.26 18 11/26/2024
1.2.25 19 11/14/2024
1.2.8 21 11/27/2024
1.2.7 29 11/26/2024
1.2.6 17 11/28/2024
1.2.5 25 11/12/2024
1.2.4 19 11/29/2024
1.2.3 19 11/12/2024
1.1.2 19 06/02/2024
1.1.1 18 11/26/2024
1.0.3 26 11/27/2024
1.0.1 19 11/14/2024
0.9.4 16 12/02/2024
0.9.3 19 12/04/2024
0.8.3 22 11/12/2024
0.8.2 20 04/28/2024
0.8.1 19 11/27/2024
0.7.2 19 11/27/2024
0.6.5 16 11/26/2024
0.6.1 22 11/11/2024
0.5.4 16 11/26/2024
0.5.1 36 11/13/2024
0.4.3 30 11/26/2024
0.3.1 19 11/27/2024
0.2.11 18 12/02/2024
0.2.10 26 11/14/2024
0.2.9 31 12/02/2024
0.2.1 34 11/12/2024
0.1.18 31 11/29/2024
0.1.16 18 11/27/2024
0.1.12 24 11/27/2024
0.1.10 24 05/09/2022
0.1.8 17 11/30/2024
0.1.7 20 11/20/2024