TUnit.Assertions.FSharp
0.52.60
Prefix Reserved
See the version list below for details.
dotnet add package TUnit.Assertions.FSharp --version 0.52.60
NuGet\Install-Package TUnit.Assertions.FSharp -Version 0.52.60
<PackageReference Include="TUnit.Assertions.FSharp" Version="0.52.60" />
<PackageVersion Include="TUnit.Assertions.FSharp" Version="0.52.60" />
<PackageReference Include="TUnit.Assertions.FSharp" />
paket add TUnit.Assertions.FSharp --version 0.52.60
#r "nuget: TUnit.Assertions.FSharp, 0.52.60"
#:package TUnit.Assertions.FSharp@0.52.60
#addin nuget:?package=TUnit.Assertions.FSharp&version=0.52.60
#tool nuget:?package=TUnit.Assertions.FSharp&version=0.52.60
๐ The Modern Testing Framework for .NET
TUnit is a next-generation testing framework for C# that outpaces traditional frameworks with source-generated tests, parallel execution by default, and Native AOT support. Built on the modern Microsoft.Testing.Platform, TUnit delivers faster test runs, better developer experience, and unmatched flexibility.
<div align="center">
</div>
โก Why Choose TUnit?
| Feature | Traditional Frameworks | TUnit |
|---|---|---|
| Test Discovery | โ Runtime reflection | โ Compile-time generation |
| Execution Speed | โ Sequential by default | โ Parallel by default |
| Modern .NET | โ ๏ธ Limited AOT support | โ Full Native AOT & trimming |
| Test Dependencies | โ Not supported | โ
[DependsOn] chains |
| Resource Management | โ Manual lifecycle | โ Intelligent cleanup |
โก Parallel by Default - Tests run concurrently with intelligent dependency management
๐ฏ Compile-Time Discovery - Know your test structure before runtime
๐ง Modern .NET Ready - Native AOT, trimming, and latest .NET features
๐ญ Extensible - Customize data sources, attributes, and test behavior
<div align="center">
๐ Complete Documentation & Learning Center
๐ New to TUnit? Start with our Getting Started Guide
๐ Migrating? See our Migration Guides
๐ฏ Advanced Features? Explore Data-Driven Testing, Test Dependencies, and Parallelism Control
</div>
๐ Quick Start
Using the Project Template (Recommended)
dotnet new install TUnit.Templates
dotnet new TUnit -n "MyTestProject"
Manual Installation
dotnet add package TUnit --prerelease
๐ ๐ Complete Documentation & Guides - Everything you need to master TUnit
โจ Key Features
<table> <tr> <td width="50%">
๐ Performance & Modern Platform
- ๐ฅ Source-generated tests (no reflection)
- โก Parallel execution by default
- ๐ Native AOT & trimming support
- ๐ Optimized for performance
</td> <td width="50%">
๐ฏ Advanced Test Control
- ๐ Test dependencies with
[DependsOn] - ๐๏ธ Parallel limits & custom scheduling
- ๐ก๏ธ Built-in analyzers & compile-time checks
- ๐ญ Custom attributes & extensible conditions
</td> </tr> <tr> <td>
๐ Rich Data & Assertions
- ๐ Multiple data sources (
[Arguments],[Matrix],[ClassData]) - โ Fluent async assertions
- ๐ Smart retry logic & conditional execution
- ๐ Rich test metadata & context
</td> <td>
๐ง Developer Experience
- ๐ Full dependency injection support
- ๐ช Comprehensive lifecycle hooks
- ๐ฏ IDE integration (VS, Rider, VS Code)
- ๐ Extensive documentation & examples
</td> </tr> </table>
๐ Simple Test Example
[Test]
public async Task User_Creation_Should_Set_Timestamp()
{
// Arrange
var userService = new UserService();
// Act
var user = await userService.CreateUserAsync("john.doe@example.com");
// Assert - TUnit's fluent assertions
await Assert.That(user.CreatedAt)
.IsEqualTo(DateTime.Now)
.Within(TimeSpan.FromMinutes(1));
await Assert.That(user.Email)
.IsEqualTo("john.doe@example.com");
}
๐ฏ Data-Driven Testing
[Test]
[Arguments("user1@test.com", "ValidPassword123")]
[Arguments("user2@test.com", "AnotherPassword456")]
[Arguments("admin@test.com", "AdminPass789")]
public async Task User_Login_Should_Succeed(string email, string password)
{
var result = await authService.LoginAsync(email, password);
await Assert.That(result.IsSuccess).IsTrue();
}
// Matrix testing - tests all combinations
[Test]
[MatrixDataSource]
public async Task Database_Operations_Work(
[Matrix("Create", "Update", "Delete")] string operation,
[Matrix("User", "Product", "Order")] string entity)
{
await Assert.That(await ExecuteOperation(operation, entity))
.IsTrue();
}
๐ Advanced Test Orchestration
[Before(Class)]
public static async Task SetupDatabase(ClassHookContext context)
{
await DatabaseHelper.InitializeAsync();
}
[Test, DisplayName("Register a new account")]
[MethodDataSource(nameof(GetTestUsers))]
public async Task Register_User(string username, string password)
{
// Test implementation
}
[Test, DependsOn(nameof(Register_User))]
[Retry(3)] // Retry on failure
public async Task Login_With_Registered_User(string username, string password)
{
// This test runs after Register_User completes
}
[Test]
[ParallelLimit<LoadTestParallelLimit>] // Custom parallel control
[Repeat(100)] // Run 100 times
public async Task Load_Test_Homepage()
{
// Performance testing
}
// Custom attributes
[Test, WindowsOnly, RetryOnHttpError(5)]
public async Task Windows_Specific_Feature()
{
// Platform-specific test with custom retry logic
}
public class LoadTestParallelLimit : IParallelLimit
{
public int Limit => 10; // Limit to 10 concurrent executions
}
๐ง Smart Test Control
// Custom conditional execution
public class WindowsOnlyAttribute : SkipAttribute
{
public WindowsOnlyAttribute() : base("Windows only test") { }
public override Task<bool> ShouldSkip(TestContext testContext)
=> Task.FromResult(!OperatingSystem.IsWindows());
}
// Custom retry logic
public class RetryOnHttpErrorAttribute : RetryAttribute
{
public RetryOnHttpErrorAttribute(int times) : base(times) { }
public override Task<bool> ShouldRetry(TestInformation testInformation,
Exception exception, int currentRetryCount)
=> Task.FromResult(exception is HttpRequestException { StatusCode: HttpStatusCode.ServiceUnavailable });
}
๐ฏ Perfect For Every Testing Scenario
<table> <tr> <td width="33%">
๐งช Unit Testing
[Test]
[Arguments(1, 2, 3)]
[Arguments(5, 10, 15)]
public async Task Calculate_Sum(int a, int b, int expected)
{
await Assert.That(Calculator.Add(a, b))
.IsEqualTo(expected);
}
Fast, isolated, and reliable
</td> <td width="33%">
๐ Integration Testing
[Test, DependsOn(nameof(CreateUser))]
public async Task Login_After_Registration()
{
// Runs after CreateUser completes
var result = await authService.Login(user);
await Assert.That(result.IsSuccess).IsTrue();
}
Stateful workflows made simple
</td> <td width="33%">
โก Load Testing
[Test]
[ParallelLimit<LoadTestLimit>]
[Repeat(1000)]
public async Task API_Handles_Concurrent_Requests()
{
await Assert.That(await httpClient.GetAsync("/api/health"))
.HasStatusCode(HttpStatusCode.OK);
}
Built-in performance testing
</td> </tr> </table>
๐ What Makes TUnit Different?
Compile-Time Intelligence
Tests are discovered at build time, not runtime - enabling faster discovery, better IDE integration, and precise resource lifecycle management.
Parallel-First Architecture
Built for concurrency from day one with [DependsOn] for test chains, [ParallelLimit] for resource control, and intelligent scheduling.
Extensible by Design
The DataSourceGenerator<T> pattern and custom attribute system let you extend TUnit's capabilities without modifying core framework code.
๐ Community & Ecosystem
<div align="center">
๐ Join thousands of developers modernizing their testing
</div>
๐ค Active Community
- ๐ Official Documentation - Comprehensive guides, tutorials, and API reference
- ๐ฌ GitHub Discussions - Get help and share ideas
- ๐ Issue Tracking - Report bugs and request features
- ๐ข Release Notes - Stay updated with latest improvements
๐ ๏ธ IDE Support
TUnit works seamlessly across all major .NET development environments:
Visual Studio (2022 17.13+)
โ Fully supported - No additional configuration needed for latest versions
โ๏ธ Earlier versions: Enable "Use testing platform server mode" in Tools > Manage Preview Features
JetBrains Rider
โ Fully supported
โ๏ธ Setup: Enable "Testing Platform support" in Settings > Build, Execution, Deployment > Unit Testing > VSTest
Visual Studio Code
โ Fully supported
โ๏ธ Setup: Install C# Dev Kit and enable "Use Testing Platform Protocol"
Command Line
โ
Full CLI support - Works with dotnet test, dotnet run, and direct executable execution
๐ฆ Package Options
| Package | Use Case |
|---|---|
TUnit |
โญ Start here - Complete testing framework (includes Core + Engine + Assertions) |
TUnit.Core |
๐ Test libraries and shared components (no execution engine) |
TUnit.Engine |
๐ Test execution engine and adapter (for test projects) |
TUnit.Assertions |
โ Standalone assertions (works with any test framework) |
TUnit.Playwright |
๐ญ Playwright integration with automatic lifecycle management |
๐ฏ Migration from Other Frameworks
Coming from NUnit or xUnit? TUnit maintains familiar syntax while adding modern capabilities:
// Enhanced with TUnit's advanced features
[Test]
[Arguments("value1")]
[Arguments("value2")]
[Retry(3)]
[ParallelLimit<CustomLimit>]
public async Task Modern_TUnit_Test(string value) { }
๐ Need help migrating? Check our detailed Migration Guides with step-by-step instructions for xUnit, NUnit, and MSTest.
๐ก Current Status
The API is mostly stable, but may have some changes based on feedback or issues before v1.0 release.
<div align="center">
๐ Ready to Experience the Future of .NET Testing?
โก Start in 30 Seconds
# Create a new test project with examples
dotnet new install TUnit.Templates && dotnet new TUnit -n "MyAwesomeTests"
# Or add to existing project
dotnet add package TUnit --prerelease
๐ฏ Why Wait? Join the Movement
<table> <tr> <td align="center" width="25%">
๐ Performance
Optimized execution Parallel by default Zero reflection overhead
</td> <td align="center" width="25%">
๐ฎ Future-Ready
Native AOT support Latest .NET features Source generation
</td> <td align="center" width="25%">
๐ ๏ธ Developer Experience
Compile-time checks Rich IDE integration Intelligent debugging
</td> <td align="center" width="25%">
๐ญ Flexibility
Test dependencies Custom attributes Extensible architecture
</td> </tr> </table>
๐ Learn More: tunit.dev | ๐ฌ Get Help: GitHub Discussions | โญ Show Support: Star on GitHub
TUnit is actively developed and production-ready. Join our growing community of developers who've made the switch!
</div>
Performance Benchmark
Scenario: Building the test project
macos-latest
BenchmarkDotNet v0.15.2, macOS Sonoma 14.7.6 (23H626) [Darwin 23.6.0]
Apple M1 (Virtual), 1 CPU, 3 logical and 3 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), Arm64 RyuJIT AdvSIMD
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), Arm64 RyuJIT AdvSIMD
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev | Median |
|---|---|---|---|---|
| Build_TUnit | 1,066.1 ms | 29.31 ms | 83.62 ms | 1,062.5 ms |
| Build_NUnit | 904.8 ms | 31.24 ms | 91.13 ms | 872.3 ms |
| Build_xUnit | 852.0 ms | 22.08 ms | 64.07 ms | 838.0 ms |
| Build_MSTest | 876.8 ms | 22.93 ms | 66.88 ms | 857.7 ms |
ubuntu-latest
BenchmarkDotNet v0.15.2, Linux Ubuntu 24.04.2 LTS (Noble Numbat)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev |
|---|---|---|---|
| Build_TUnit | 1.918 s | 0.0378 s | 0.0554 s |
| Build_NUnit | 1.466 s | 0.0100 s | 0.0088 s |
| Build_xUnit | 1.457 s | 0.0171 s | 0.0143 s |
| Build_MSTest | 1.481 s | 0.0152 s | 0.0142 s |
windows-latest
BenchmarkDotNet v0.15.2, Windows 10 (10.0.20348.3932) (Hyper-V)
AMD EPYC 7763 2.44GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev |
|---|---|---|---|
| Build_TUnit | 1.925 s | 0.0377 s | 0.0553 s |
| Build_NUnit | 1.503 s | 0.0285 s | 0.0305 s |
| Build_xUnit | 1.488 s | 0.0225 s | 0.0200 s |
| Build_MSTest | 1.531 s | 0.0219 s | 0.0205 s |
Scenario: A single test that completes instantly (including spawning a new process and initialising the test framework)
macos-latest
BenchmarkDotNet v0.15.2, macOS Sonoma 14.7.6 (23H626) [Darwin 23.6.0]
Apple M1 (Virtual), 1 CPU, 3 logical and 3 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), Arm64 RyuJIT AdvSIMD
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), Arm64 RyuJIT AdvSIMD
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev | Median |
|---|---|---|---|---|
| TUnit_AOT | 102.8 ms | 7.73 ms | 22.79 ms | 96.93 ms |
| TUnit | 760.7 ms | 37.55 ms | 109.53 ms | 748.05 ms |
| NUnit | 1,199.5 ms | 68.81 ms | 199.63 ms | 1,151.44 ms |
| xUnit | 1,068.6 ms | 70.21 ms | 202.56 ms | 1,009.93 ms |
| MSTest | 997.2 ms | 42.49 ms | 123.94 ms | 988.26 ms |
ubuntu-latest
BenchmarkDotNet v0.15.2, Linux Ubuntu 24.04.2 LTS (Noble Numbat)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev |
|---|---|---|---|
| TUnit_AOT | 28.40 ms | 0.712 ms | 2.098 ms |
| TUnit | 819.63 ms | 16.258 ms | 21.704 ms |
| NUnit | 1,305.85 ms | 23.357 ms | 21.848 ms |
| xUnit | 1,362.59 ms | 16.531 ms | 15.463 ms |
| MSTest | 1,143.54 ms | 21.293 ms | 19.918 ms |
windows-latest
BenchmarkDotNet v0.15.2, Windows 10 (10.0.20348.3932) (Hyper-V)
AMD EPYC 7763 2.44GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev |
|---|---|---|---|
| TUnit_AOT | 56.55 ms | 1.691 ms | 4.960 ms |
| TUnit | 872.47 ms | 17.371 ms | 25.463 ms |
| NUnit | 1,310.75 ms | 7.107 ms | 6.648 ms |
| xUnit | 1,356.63 ms | 7.240 ms | 6.046 ms |
| MSTest | 1,165.83 ms | 18.593 ms | 16.482 ms |
Scenario: A test that takes 50ms to execute, repeated 100 times (including spawning a new process and initialising the test framework)
macos-latest
BenchmarkDotNet v0.15.2, macOS Sonoma 14.7.6 (23H626) [Darwin 23.6.0]
Apple M1 (Virtual), 1 CPU, 3 logical and 3 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), Arm64 RyuJIT AdvSIMD
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), Arm64 RyuJIT AdvSIMD
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev |
|---|---|---|---|
| TUnit_AOT | 235.8 ms | 12.94 ms | 38.15 ms |
| TUnit | 643.5 ms | 21.41 ms | 63.13 ms |
| NUnit | 13,517.6 ms | 269.19 ms | 644.96 ms |
| xUnit | 13,932.4 ms | 276.32 ms | 505.26 ms |
| MSTest | 13,704.8 ms | 269.71 ms | 614.28 ms |
ubuntu-latest
BenchmarkDotNet v0.15.2, Linux Ubuntu 24.04.2 LTS (Noble Numbat)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev |
|---|---|---|---|
| TUnit_AOT | 74.45 ms | 1.469 ms | 1.227 ms |
| TUnit | 886.67 ms | 17.202 ms | 16.894 ms |
| NUnit | 6,268.07 ms | 6.213 ms | 5.811 ms |
| xUnit | 6,405.78 ms | 8.620 ms | 8.063 ms |
| MSTest | 6,234.85 ms | 8.613 ms | 8.056 ms |
windows-latest
BenchmarkDotNet v0.15.2, Windows 10 (10.0.20348.3932) (Hyper-V)
AMD EPYC 7763 2.44GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.303
[Host] : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
.NET 9.0 : .NET 9.0.7 (9.0.725.31616), X64 RyuJIT AVX2
Job=.NET 9.0 Runtime=.NET 9.0
| Method | Mean | Error | StdDev |
|---|---|---|---|
| TUnit_AOT | 110.6 ms | 2.08 ms | 1.95 ms |
| TUnit | 947.5 ms | 18.55 ms | 27.19 ms |
| NUnit | 7,512.8 ms | 25.16 ms | 23.54 ms |
| xUnit | 7,574.9 ms | 35.17 ms | 32.90 ms |
| MSTest | 7,449.8 ms | 25.62 ms | 23.96 ms |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. net463 was computed. net47 was computed. net471 was computed. 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. |
-
.NETStandard 2.0
- System.Threading.Tasks.Extensions (>= 4.6.3)
- TUnit.Assertions (>= 0.52.60)
-
net8.0
- TUnit.Assertions (>= 0.52.60)
-
net9.0
- TUnit.Assertions (>= 0.52.60)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.2.11 | 94 | 11/18/2025 |
| 1.2.3 | 160 | 11/16/2025 |
| 1.2.0 | 163 | 11/15/2025 |
| 1.1.27 | 214 | 11/15/2025 |
| 1.1.10 | 369 | 11/12/2025 |
| 1.1.0 | 325 | 11/12/2025 |
| 1.0.78 | 445 | 11/11/2025 |
| 1.0.48 | 414 | 11/10/2025 |
| 1.0.39 | 250 | 11/9/2025 |
| 1.0.30 | 229 | 11/8/2025 |
| 1.0.27 | 153 | 11/8/2025 |
| 1.0.0 | 302 | 11/5/2025 |
| 0.90.45 | 232 | 11/5/2025 |
| 0.90.42 | 188 | 11/4/2025 |
| 0.90.38 | 199 | 11/4/2025 |
| 0.90.35 | 189 | 11/4/2025 |
| 0.90.32 | 189 | 11/4/2025 |
| 0.90.28 | 197 | 11/4/2025 |
| 0.90.19 | 224 | 11/3/2025 |
| 0.90.17 | 192 | 11/3/2025 |
| 0.90.6 | 200 | 11/2/2025 |
| 0.90.0 | 155 | 11/2/2025 |
| 0.89.2 | 117 | 11/2/2025 |
| 0.89.0 | 146 | 11/1/2025 |
| 0.88.0 | 180 | 11/1/2025 |
| 0.87.8 | 187 | 10/31/2025 |
| 0.86.10 | 201 | 10/30/2025 |
| 0.86.5 | 237 | 10/30/2025 |
| 0.86.0 | 194 | 10/30/2025 |
| 0.85.1 | 196 | 10/29/2025 |
| 0.85.0 | 177 | 10/29/2025 |
| 0.81.7 | 212 | 10/29/2025 |
| 0.81.0 | 180 | 10/29/2025 |
| 0.80.0 | 227 | 10/28/2025 |
| 0.79.0 | 193 | 10/28/2025 |
| 0.78.0 | 293 | 10/28/2025 |
| 0.77.10 | 268 | 10/27/2025 |
| 0.77.3 | 232 | 10/27/2025 |
| 0.77.0 | 206 | 10/26/2025 |
| 0.76.26 | 212 | 10/26/2025 |
| 0.76.18 | 226 | 10/25/2025 |
| 0.76.11 | 251 | 10/25/2025 |
| 0.76.7 | 254 | 10/24/2025 |
| 0.76.0 | 145 | 10/24/2025 |
| 0.75.30 | 357 | 10/23/2025 |
| 0.75.11 | 331 | 10/22/2025 |
| 0.75.5 | 197 | 10/22/2025 |
| 0.75.4 | 187 | 10/22/2025 |
| 0.75.0 | 240 | 10/21/2025 |
| 0.74.2 | 242 | 10/20/2025 |
| 0.74.0 | 175 | 10/20/2025 |
| 0.73.19 | 232 | 10/18/2025 |
| 0.73.14 | 150 | 10/17/2025 |
| 0.73.11 | 169 | 10/17/2025 |
| 0.73.4 | 243 | 10/16/2025 |
| 0.73.0 | 215 | 10/16/2025 |
| 0.72.0 | 262 | 10/15/2025 |
| 0.71.4 | 192 | 10/14/2025 |
| 0.71.0 | 215 | 10/14/2025 |
| 0.70.7 | 190 | 10/14/2025 |
| 0.70.4 | 199 | 10/14/2025 |
| 0.70.2 | 189 | 10/13/2025 |
| 0.70.0 | 183 | 10/13/2025 |
| 0.67.19 | 693 | 10/10/2025 |
| 0.67.10 | 512 | 10/8/2025 |
| 0.67.9 | 166 | 10/8/2025 |
| 0.67.4 | 273 | 10/7/2025 |
| 0.67.0 | 206 | 10/6/2025 |
| 0.66.13 | 235 | 10/6/2025 |
| 0.66.6 | 232 | 10/6/2025 |
| 0.66.0 | 212 | 10/5/2025 |
| 0.64.0 | 295 | 10/5/2025 |
| 0.63.3 | 494 | 10/2/2025 |
| 0.63.0 | 219 | 10/2/2025 |
| 0.61.58 | 440 | 9/29/2025 |
| 0.61.39 | 374 | 9/25/2025 |
| 0.61.38 | 185 | 9/25/2025 |
| 0.61.31 | 263 | 9/24/2025 |
| 0.61.25 | 217 | 9/23/2025 |
| 0.61.22 | 211 | 9/22/2025 |
| 0.61.13 | 377 | 9/21/2025 |
| 0.61.6 | 263 | 9/21/2025 |
| 0.61.2 | 221 | 9/20/2025 |
| 0.60.15 | 192 | 9/20/2025 |
| 0.60.1 | 441 | 9/19/2025 |
| 0.59.0 | 272 | 9/19/2025 |
| 0.58.3 | 391 | 9/18/2025 |
| 0.58.0 | 316 | 9/18/2025 |
| 0.57.65 | 672 | 9/10/2025 |
| 0.57.63 | 199 | 9/10/2025 |
| 0.57.24 | 647 | 8/30/2025 |
| 0.57.1 | 425 | 8/21/2025 |
| 0.57.0 | 171 | 8/21/2025 |
| 0.56.50 | 310 | 8/20/2025 |
| 0.56.44 | 290 | 8/18/2025 |
| 0.56.35 | 267 | 8/17/2025 |
| 0.56.5 | 1,010 | 8/14/2025 |
| 0.55.23 | 555 | 8/13/2025 |
| 0.55.21 | 247 | 8/13/2025 |
| 0.55.6 | 527 | 8/12/2025 |
| 0.55.0 | 265 | 8/11/2025 |
| 0.53.0 | 725 | 8/8/2025 |
| 0.52.64 | 336 | 8/7/2025 |
| 0.52.60 | 281 | 8/7/2025 |
| 0.52.56 | 330 | 8/7/2025 |
| 0.52.51 | 269 | 8/7/2025 |
| 0.52.49 | 328 | 8/7/2025 |
| 0.52.47 | 257 | 8/7/2025 |
| 0.52.30 | 407 | 8/6/2025 |
| 0.52.25 | 423 | 8/6/2025 |
| 0.52.24 | 269 | 8/6/2025 |
| 0.52.22 | 326 | 8/6/2025 |
| 0.52.8 | 318 | 8/6/2025 |
| 0.52.2 | 249 | 8/6/2025 |
| 0.52.0 | 249 | 8/6/2025 |
| 0.50.0 | 554 | 8/3/2025 |
| 0.25.21 | 382 | 6/10/2025 |
| 0.25.6 | 180 | 6/5/2025 |
| 0.25.0 | 217 | 6/5/2025 |
| 0.24.0 | 2,450 | 6/1/2025 |
| 0.23.5 | 230 | 6/1/2025 |
| 0.23.0 | 144 | 5/31/2025 |
| 0.22.31 | 147 | 5/30/2025 |
| 0.22.24 | 250 | 5/28/2025 |
| 0.22.20 | 221 | 5/27/2025 |
| 0.22.12 | 276 | 5/25/2025 |
| 0.22.10 | 256 | 5/25/2025 |
| 0.22.6 | 164 | 5/24/2025 |
| 0.21.16 | 353 | 5/21/2025 |
| 0.21.13 | 212 | 5/20/2025 |
| 0.21.7 | 219 | 5/20/2025 |
| 0.21.1 | 286 | 5/19/2025 |
| 0.20.18 | 211 | 5/19/2025 |
| 0.20.16 | 209 | 5/18/2025 |
| 0.20.11 | 192 | 5/18/2025 |
| 0.20.4 | 172 | 5/17/2025 |