TUnit.Analyzers 0.1.397-alpha01

Prefix Reserved
Suggested Alternatives

TUnit.Core

Additional Details

TUnit.Core handles analysis now

This is a prerelease version of TUnit.Analyzers.
There is a newer version of this package available.
See the version list below for details.
dotnet add package TUnit.Analyzers --version 0.1.397-alpha01
                    
NuGet\Install-Package TUnit.Analyzers -Version 0.1.397-alpha01
                    
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="TUnit.Analyzers" Version="0.1.397-alpha01" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TUnit.Analyzers" Version="0.1.397-alpha01" />
                    
Directory.Packages.props
<PackageReference Include="TUnit.Analyzers" />
                    
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 TUnit.Analyzers --version 0.1.397-alpha01
                    
#r "nuget: TUnit.Analyzers, 0.1.397-alpha01"
                    
#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 TUnit.Analyzers@0.1.397-alpha01
                    
#: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=TUnit.Analyzers&version=0.1.397-alpha01&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=TUnit.Analyzers&version=0.1.397-alpha01&prerelease
                    
Install as a Cake Tool

TUnit

T(est)Unit!

Documentation

See here: https://thomhurst.github.io/TUnit/

Features

  • Source generated tests
  • Full async support
  • Parallel by default, with mechanisms to switch it off for certain tests
  • Test ordering (if running not in parallel)
  • Tests can depend on other tests to form chains
  • Easy to read assertions
  • Injectable test data functionality
  • Hooks before and after: Assembly, Class, Test
  • Designed to avoid common pitfalls such as leaky test states
  • Ability to view metadata and results (if in a cleanup method) for a test from a TestContext object

Installation

dotnet add package TUnit --prerelease

Example test

    [Test]
    public async Task Test1()
    {
        var value = "Hello world!";

        await Assert.That(value)
            .Is.Not.Null
            .And.Does.StartWith("H")
            .And.Has.Count().EqualTo(12)
            .And.Is.EqualTo("hello world!", StringComparison.InvariantCultureIgnoreCase);
    }

or with more complex test orchestration needs

    [BeforeAllTestsInClass]
    public static async Task ClearDatabase() { ... }

    [AfterAllTestsInClass]
    public static async Task AssertDatabaseIsAsExpected() { ... }

    [BeforeEachTest]
    public async Task CreatePlaywrightBrowser() { ... }

    [AfterEachTest]
    public async Task DisposePlaywrightBrowser() { ... }

    [Retry(3)]
    [Test, DisplayName("Register an account")]
    [EnumerableMethodData(nameof(GetAuthDetails))]
    public async Task Register(string username, string password) { ... }

    [DataSourceDrivenTest, DependsOn(nameof(Register))]
    [EnumerableMethodData(nameof(GetAuthDetails))]
    public async Task Login(string username, string password) { ... }

    [DataSourceDrivenTest, DependsOn(nameof(Login))]
    [EnumerableMethodData(nameof(GetAuthDetails))]
    public async Task DeleteAccount(string username, string password) { ... }

    [Category("Downloads")]
    [Timeout(300_000)]
    [Test, NotInParallel(Order = 1)]
    public async Task DownloadFile1() { ... }

    [Category("Downloads")]
    [Timeout(300_000)]
    [Test, NotInParallel(Order = 2)]
    public async Task DownloadFile2() { ... }

    [Repeat(10)]
    [DataDrivenTest]
    [Arguments(1)]
    [Arguments(2)]
    [Arguments(3)]
    public async Task GoToPage(int page) { ... }

    [Category("Cookies")]
    [Test, Skip("Not yet built!")]
    public async Task CheckCookies() { ... }

    [Test, Explicit]
    [Property("Some Key", "Some Value")]
    public async Task Ping() { ... }

    public static IEnumerable<(string Username, string Password)> GetAuthDetails()
    {
        yield return ("user1", "password1");
        yield return ("user2", "password2");
        yield return ("user3", "password3");
    }

Motivations

There are only three main testing frameworks in the .NET world - xUnit, NUnit and MSTest. More frameworks means more options, and more options motivates more features or improvements.

These testing frameworks are amazing, but I've had some issues with them. You might not have had any of these, but these are my experiences:

xUnit

There is no way to tap into information about a test in a generic way. For example, I've had some Playwright tests run before, and I want them to save a screenshot or video ONLY when the test fails. If the test passes, I don't have anything to investigate, and it'll use up unnecessary storage, and it'll probably slow my test suite down if I had hundreds or thousands of tests all trying to save screenshots.

However, if I'm in a Dispose method which is called when the test ends, then there's no way for me to know if my test succeeded or failed. I'd have to do some really clunky workaround involving try catch and setting a boolean or exception to a class field and checking that. And to do that for every test was just not ideal.

Assertions

I have stumbled across assertions so many times where the arguments are the wrong way round. This can result in really confusing error messages.

var one = 2;
Assert.Equal(1, one)
Assert.Equal(one, 1)

NUnit

Assertions

I absolutely love the newer assertion syntax in NUnit. The Assert.That(something, Is.Something). I think it's really clear to read, it's clear what is being asserted, and it's clear what you're trying to achieve.

However, there is a lack of type checking on assertions. (Yes, there are analyzer packages to help with this, but this still isn't strict type checking.)

Assert.That("1", Throws.Exception);

This assertion makes no sense, because we're passing in a string. This can never throw an exception because it isn't a delegate that can be executed. But it's still perfectly valid code that will compile.

As does this: Assert.That(1, Does.Contain("Foo!"));

An integer can not contain a string. Of course these will fail at runtime, but we could move these errors up to compile time for faster feedback. This is very useful for long pipelines or build times.

Some methods also just read a little bit weird: Assert.That(() => Something(), Throws.Exception.Message.Contain(someMessage));

"Throws Exception Message Contain someMessage" - It's not terrible, but it could read a little better.

With TUnit assertions, I wanted to make these impossible to compile. So type constraints are built into the assertions themselves. There should be no way for a non-delegate to be able to do a Throws assertion, or for an int assertion to check for string conditions.

So in TUnit, this will compile:

await Assert.That(() => GetSomeValue()).Throws.Nothing;

This won't:

await Assert.That(GetSomeValue()).Throws.Nothing;
Product 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 was computed.  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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
0.1.984 2,143 10/7/2024 0.1.984 is deprecated.
0.1.980 174 10/7/2024 0.1.980 is deprecated.
0.1.971 155 10/7/2024 0.1.971 is deprecated.
0.1.966 286 10/7/2024 0.1.966 is deprecated.
0.1.962 167 10/6/2024 0.1.962 is deprecated.
0.1.961 169 10/6/2024 0.1.961 is deprecated.
0.1.958 160 10/6/2024 0.1.958 is deprecated.
0.1.954 161 10/6/2024 0.1.954 is deprecated.
0.1.949 162 10/6/2024 0.1.949 is deprecated.
0.1.942 189 10/5/2024 0.1.942 is deprecated.
0.1.939 150 10/5/2024 0.1.939 is deprecated.
0.1.937 158 10/5/2024 0.1.937 is deprecated.
0.1.934 157 10/5/2024 0.1.934 is deprecated.
0.1.931 163 10/5/2024 0.1.931 is deprecated.
0.1.928 167 10/4/2024 0.1.928 is deprecated.
0.1.923 155 10/4/2024 0.1.923 is deprecated.
0.1.916 177 10/3/2024 0.1.916 is deprecated.
0.1.911 188 10/3/2024 0.1.911 is deprecated.
0.1.897 168 10/2/2024 0.1.897 is deprecated.
0.1.894 155 10/2/2024 0.1.894 is deprecated.
0.1.891 171 10/2/2024 0.1.891 is deprecated.
0.1.885 167 10/1/2024 0.1.885 is deprecated.
0.1.877 176 9/29/2024 0.1.877 is deprecated.
0.1.872 175 9/29/2024 0.1.872 is deprecated.
0.1.869 186 9/29/2024 0.1.869 is deprecated.
0.1.864 161 9/28/2024 0.1.864 is deprecated.
0.1.863 164 9/28/2024 0.1.863 is deprecated.
0.1.857 186 9/28/2024 0.1.857 is deprecated.
0.1.842 193 9/26/2024 0.1.842 is deprecated.
0.1.827 174 9/25/2024 0.1.827 is deprecated.
0.1.818 183 9/24/2024 0.1.818 is deprecated.
0.1.817 181 9/24/2024 0.1.817 is deprecated.
0.1.816 170 9/24/2024 0.1.816 is deprecated.
0.1.812 200 9/23/2024 0.1.812 is deprecated.
0.1.807 186 9/23/2024 0.1.807 is deprecated.
0.1.804 181 9/22/2024 0.1.804 is deprecated.
0.1.801 159 9/22/2024 0.1.801 is deprecated.
0.1.797 173 9/22/2024 0.1.797 is deprecated.
0.1.793 211 9/21/2024 0.1.793 is deprecated.
0.1.791 160 9/21/2024 0.1.791 is deprecated.
0.1.790 198 9/21/2024 0.1.790 is deprecated.
0.1.783 194 9/20/2024 0.1.783 is deprecated.
0.1.773 180 9/20/2024 0.1.773 is deprecated.
0.1.767 157 9/19/2024 0.1.767 is deprecated.
0.1.763 168 9/19/2024 0.1.763 is deprecated.
0.1.762 176 9/19/2024 0.1.762 is deprecated.
0.1.759 178 9/19/2024 0.1.759 is deprecated.
0.1.752 173 9/18/2024 0.1.752 is deprecated.
0.1.741 172 9/17/2024 0.1.741 is deprecated.
0.1.738 191 9/16/2024 0.1.738 is deprecated.
0.1.732 199 9/16/2024 0.1.732 is deprecated.
0.1.720 172 9/15/2024 0.1.720 is deprecated.
0.1.716 182 9/15/2024 0.1.716 is deprecated.
0.1.714 171 9/15/2024 0.1.714 is deprecated.
0.1.711 169 9/15/2024 0.1.711 is deprecated.
0.1.703 378 9/14/2024 0.1.703 is deprecated.
0.1.697 285 9/14/2024 0.1.697 is deprecated.
0.1.691 359 9/13/2024 0.1.691 is deprecated.
0.1.686 226 9/13/2024 0.1.686 is deprecated.
0.1.672 442 9/12/2024 0.1.672 is deprecated.
0.1.667 252 9/11/2024 0.1.667 is deprecated.
0.1.664 214 9/11/2024 0.1.664 is deprecated.
0.1.653 312 9/11/2024 0.1.653 is deprecated.
0.1.639 393 9/10/2024 0.1.639 is deprecated.
0.1.634 220 9/10/2024 0.1.634 is deprecated.
0.1.623 391 9/7/2024 0.1.623 is deprecated.
0.1.600 660 9/6/2024 0.1.600 is deprecated.
0.1.582 379 9/5/2024 0.1.582 is deprecated.
0.1.578 184 9/5/2024 0.1.578 is deprecated.
0.1.575 202 9/4/2024 0.1.575 is deprecated.
0.1.518 414 9/2/2024 0.1.518 is deprecated.
0.1.512 1,222 8/30/2024 0.1.512 is deprecated.
0.1.508 200 8/29/2024 0.1.508 is deprecated.
0.1.506 276 8/28/2024 0.1.506 is deprecated.
0.1.505 215 8/28/2024 0.1.505 is deprecated.
0.1.504 177 8/28/2024 0.1.504 is deprecated.
0.1.503 235 8/27/2024 0.1.503 is deprecated.
0.1.502 221 8/27/2024 0.1.502 is deprecated.
0.1.497 175 8/27/2024 0.1.497 is deprecated.
0.1.495 249 8/27/2024 0.1.495 is deprecated.
0.1.492 204 8/16/2024 0.1.492 is deprecated.
0.1.491 201 8/15/2024 0.1.491 is deprecated.
0.1.486 204 8/9/2024 0.1.486 is deprecated.
0.1.481 327 8/8/2024 0.1.481 is deprecated.
0.1.479 207 8/8/2024 0.1.479 is deprecated.
0.1.476 576 8/7/2024 0.1.476 is deprecated.
0.1.474 211 8/7/2024 0.1.474 is deprecated.
0.1.472 199 8/7/2024 0.1.472 is deprecated.
0.1.471 197 8/7/2024 0.1.471 is deprecated.
0.1.470 187 8/7/2024 0.1.470 is deprecated.
0.1.469 180 8/7/2024 0.1.469 is deprecated.
0.1.467 183 8/7/2024 0.1.467 is deprecated.
0.1.465 164 8/7/2024 0.1.465 is deprecated.
0.1.460 199 8/6/2024 0.1.460 is deprecated.
0.1.459 160 8/6/2024 0.1.459 is deprecated.
0.1.458 158 8/5/2024 0.1.458 is deprecated.
0.1.457 173 8/1/2024 0.1.457 is deprecated.
0.1.456 171 8/1/2024 0.1.456 is deprecated.
0.1.455 149 7/31/2024 0.1.455 is deprecated.
0.1.454 143 7/30/2024 0.1.454 is deprecated.
0.1.442 473 7/13/2024 0.1.442 is deprecated.
0.1.441 201 7/13/2024 0.1.441 is deprecated.
0.1.440 178 7/13/2024 0.1.440 is deprecated.
0.1.439 186 7/13/2024 0.1.439 is deprecated.
0.1.438 200 7/12/2024 0.1.438 is deprecated.
0.1.434 163 7/12/2024 0.1.434 is deprecated.
0.1.433 177 7/12/2024 0.1.433 is deprecated.
0.1.430 317 7/11/2024 0.1.430 is deprecated.
0.1.428 182 7/10/2024 0.1.428 is deprecated.
0.1.424 1,513 7/9/2024 0.1.424 is deprecated.
0.1.423-alpha01 156 7/9/2024 0.1.423-alpha01 is deprecated.
0.1.422-alpha01 167 7/7/2024 0.1.422-alpha01 is deprecated.
0.1.420-alpha01 156 7/7/2024 0.1.420-alpha01 is deprecated.
0.1.419-alpha01 170 7/7/2024 0.1.419-alpha01 is deprecated.
0.1.418-alpha01 151 7/7/2024 0.1.418-alpha01 is deprecated.
0.1.417-alpha01 154 7/7/2024 0.1.417-alpha01 is deprecated.
0.1.416-alpha01 162 7/7/2024 0.1.416-alpha01 is deprecated.
0.1.413-alpha01 155 7/7/2024 0.1.413-alpha01 is deprecated.
0.1.412-alpha01 158 7/7/2024 0.1.412-alpha01 is deprecated.
0.1.411-alpha01 157 7/6/2024 0.1.411-alpha01 is deprecated.
0.1.410-alpha01 145 7/6/2024 0.1.410-alpha01 is deprecated.
0.1.409-alpha01 172 7/5/2024 0.1.409-alpha01 is deprecated.
0.1.407-alpha01 155 7/5/2024 0.1.407-alpha01 is deprecated.
0.1.406-alpha01 189 7/5/2024 0.1.406-alpha01 is deprecated.
0.1.405-alpha01 156 7/5/2024 0.1.405-alpha01 is deprecated.
0.1.404-alpha01 153 7/5/2024 0.1.404-alpha01 is deprecated.
0.1.403-alpha01 153 7/5/2024 0.1.403-alpha01 is deprecated.
0.1.402-alpha01 163 7/5/2024 0.1.402-alpha01 is deprecated.
0.1.401-alpha01 245 7/5/2024 0.1.401-alpha01 is deprecated.
0.1.398-alpha01 145 7/5/2024 0.1.398-alpha01 is deprecated.
0.1.397-alpha01 169 7/4/2024 0.1.397-alpha01 is deprecated.
0.1.395-alpha01 146 7/2/2024 0.1.395-alpha01 is deprecated.
0.1.394-alpha01 165 7/1/2024 0.1.394-alpha01 is deprecated.
0.1.392-alpha01 185 6/30/2024 0.1.392-alpha01 is deprecated.
0.1.391-alpha01 160 6/30/2024 0.1.391-alpha01 is deprecated.
0.1.390-alpha01 143 6/30/2024 0.1.390-alpha01 is deprecated.
0.1.389-alpha01 146 6/30/2024 0.1.389-alpha01 is deprecated.
0.1.386-alpha01 134 6/30/2024 0.1.386-alpha01 is deprecated.
0.1.385-alpha01 149 6/30/2024 0.1.385-alpha01 is deprecated.
0.1.384-alpha01 163 6/30/2024 0.1.384-alpha01 is deprecated.
0.1.383-alpha01 140 6/30/2024 0.1.383-alpha01 is deprecated.
0.1.382-alpha01 145 6/28/2024 0.1.382-alpha01 is deprecated.
0.1.381-alpha01 153 6/26/2024 0.1.381-alpha01 is deprecated.
0.1.380-alpha01 134 6/26/2024 0.1.380-alpha01 is deprecated.
0.1.379-alpha01 295 6/26/2024 0.1.379-alpha01 is deprecated.
0.1.378-alpha01 138 6/26/2024 0.1.378-alpha01 is deprecated.
0.1.377-alpha01 144 6/26/2024 0.1.377-alpha01 is deprecated.
0.1.376-alpha01 150 6/26/2024 0.1.376-alpha01 is deprecated.
0.1.375-alpha01 179 6/25/2024 0.1.375-alpha01 is deprecated.
0.1.374-alpha01 161 6/25/2024 0.1.374-alpha01 is deprecated.
0.1.373-alpha01 179 6/24/2024 0.1.373-alpha01 is deprecated.
0.1.372-alpha01 143 6/24/2024 0.1.372-alpha01 is deprecated.
0.1.371-alpha01 158 6/23/2024 0.1.371-alpha01 is deprecated.
0.1.370-alpha01 156 6/21/2024 0.1.370-alpha01 is deprecated.
0.1.369-alpha01 169 6/21/2024 0.1.369-alpha01 is deprecated.
0.1.368-alpha01 136 6/21/2024 0.1.368-alpha01 is deprecated.
0.1.367-alpha01 157 6/21/2024 0.1.367-alpha01 is deprecated.
0.1.366-alpha01 175 6/21/2024 0.1.366-alpha01 is deprecated.
0.1.365-alpha01 185 6/20/2024 0.1.365-alpha01 is deprecated.
0.1.364-alpha01 166 6/19/2024 0.1.364-alpha01 is deprecated.
0.1.363-alpha01 157 6/19/2024 0.1.363-alpha01 is deprecated.
0.1.362-alpha01 168 6/18/2024 0.1.362-alpha01 is deprecated.
0.1.361-alpha01 179 6/18/2024 0.1.361-alpha01 is deprecated.
0.1.360-alpha01 144 6/18/2024 0.1.360-alpha01 is deprecated.
0.1.359-alpha01 146 6/17/2024 0.1.359-alpha01 is deprecated.
0.1.358-alpha01 149 6/17/2024 0.1.358-alpha01 is deprecated.
0.1.357-alpha01 171 6/16/2024 0.1.357-alpha01 is deprecated.
0.1.356-alpha01 158 6/16/2024 0.1.356-alpha01 is deprecated.
0.1.355-alpha01 156 6/16/2024 0.1.355-alpha01 is deprecated.
0.1.354-alpha01 183 6/16/2024 0.1.354-alpha01 is deprecated.
0.1.353-alpha01 185 6/16/2024 0.1.353-alpha01 is deprecated.
0.1.352-alpha01 154 6/16/2024 0.1.352-alpha01 is deprecated.
0.1.351-alpha01 176 6/14/2024 0.1.351-alpha01 is deprecated.
0.1.350-alpha01 265 6/14/2024 0.1.350-alpha01 is deprecated.
0.1.349-alpha01 161 6/13/2024 0.1.349-alpha01 is deprecated.
0.1.347-alpha01 155 6/12/2024 0.1.347-alpha01 is deprecated.
0.1.346-alpha01 161 6/12/2024 0.1.346-alpha01 is deprecated.
0.1.343-alpha01 150 6/12/2024 0.1.343-alpha01 is deprecated.
0.1.342-alpha01 170 6/12/2024 0.1.342-alpha01 is deprecated.
0.1.341-alpha01 182 6/11/2024 0.1.341-alpha01 is deprecated.
0.1.340-alpha01 136 6/11/2024 0.1.340-alpha01 is deprecated.
0.1.338-alpha01 154 6/11/2024 0.1.338-alpha01 is deprecated.
0.1.336-alpha01 154 6/11/2024 0.1.336-alpha01 is deprecated.
0.1.335-alpha01 156 6/11/2024 0.1.335-alpha01 is deprecated.
0.1.334-alpha01 172 6/11/2024 0.1.334-alpha01 is deprecated.
0.1.333-alpha01 151 6/11/2024 0.1.333-alpha01 is deprecated.
0.1.332-alpha01 156 6/11/2024 0.1.332-alpha01 is deprecated.
0.1.331-alpha01 157 6/11/2024 0.1.331-alpha01 is deprecated.
0.1.330-alpha01 148 6/11/2024 0.1.330-alpha01 is deprecated.
0.1.329-alpha01 165 6/11/2024 0.1.329-alpha01 is deprecated.
0.1.328-alpha01 152 6/11/2024 0.1.328-alpha01 is deprecated.
0.1.327-alpha01 183 6/10/2024 0.1.327-alpha01 is deprecated.
0.1.326-alpha01 143 6/7/2024 0.1.326-alpha01 is deprecated.
0.1.325-alpha01 150 6/7/2024 0.1.325-alpha01 is deprecated.
0.1.324-alpha01 153 6/6/2024 0.1.324-alpha01 is deprecated.
0.1.323-alpha01 189 6/6/2024 0.1.323-alpha01 is deprecated.
0.1.322-alpha01 149 6/3/2024 0.1.322-alpha01 is deprecated.
0.1.321-alpha01 160 6/3/2024 0.1.321-alpha01 is deprecated.
0.1.320-alpha01 190 6/2/2024 0.1.320-alpha01 is deprecated.
0.1.319-alpha01 168 6/2/2024 0.1.319-alpha01 is deprecated.
0.1.318-alpha01 164 6/2/2024 0.1.318-alpha01 is deprecated.
0.1.317-alpha01 165 6/2/2024 0.1.317-alpha01 is deprecated.
0.1.316-alpha01 160 6/2/2024 0.1.316-alpha01 is deprecated.
0.1.315-alpha01 163 5/31/2024 0.1.315-alpha01 is deprecated.
0.1.314-alpha01 155 5/30/2024 0.1.314-alpha01 is deprecated.
0.1.313-alpha01 192 5/30/2024 0.1.313-alpha01 is deprecated.
0.1.312-alpha01 186 5/29/2024 0.1.312-alpha01 is deprecated.
0.1.311-alpha01 195 5/29/2024 0.1.311-alpha01 is deprecated.
0.1.310-alpha01 130 5/29/2024 0.1.310-alpha01 is deprecated.
0.1.309-alpha01 147 5/29/2024 0.1.309-alpha01 is deprecated.
0.1.308-alpha01 146 5/29/2024 0.1.308-alpha01 is deprecated.
0.1.307-alpha01 162 5/29/2024 0.1.307-alpha01 is deprecated.
0.1.306-alpha01 171 5/29/2024 0.1.306-alpha01 is deprecated.
0.1.305-alpha01 179 5/29/2024 0.1.305-alpha01 is deprecated.
0.1.303-alpha01 163 5/29/2024 0.1.303-alpha01 is deprecated.
0.1.302-alpha01 180 5/29/2024 0.1.302-alpha01 is deprecated.
0.1.301-alpha01 177 5/29/2024 0.1.301-alpha01 is deprecated.
0.1.300-alpha01 170 5/28/2024 0.1.300-alpha01 is deprecated.
0.1.299-alpha01 150 5/28/2024 0.1.299-alpha01 is deprecated.
0.1.298-alpha01 188 5/24/2024 0.1.298-alpha01 is deprecated.
0.1.297-alpha01 160 5/24/2024 0.1.297-alpha01 is deprecated.
0.1.296-alpha01 178 5/23/2024 0.1.296-alpha01 is deprecated.
0.1.295-alpha01 154 5/23/2024 0.1.295-alpha01 is deprecated.
0.1.294-alpha01 150 5/23/2024 0.1.294-alpha01 is deprecated.
0.1.293-alpha01 168 5/21/2024 0.1.293-alpha01 is deprecated.
0.1.292-alpha01 146 5/17/2024 0.1.292-alpha01 is deprecated.
0.1.291-alpha01 168 5/17/2024 0.1.291-alpha01 is deprecated.
0.1.290-alpha01 161 5/16/2024 0.1.290-alpha01 is deprecated.
0.1.289-alpha01 162 5/16/2024 0.1.289-alpha01 is deprecated.
0.1.288-alpha01 519 5/16/2024 0.1.288-alpha01 is deprecated.
0.1.287-alpha01 186 5/15/2024 0.1.287-alpha01 is deprecated.
0.1.286-alpha01 154 5/15/2024 0.1.286-alpha01 is deprecated.
0.1.285-alpha01 144 5/15/2024 0.1.285-alpha01 is deprecated.
0.1.284-alpha01 176 5/15/2024 0.1.284-alpha01 is deprecated.
0.1.283-alpha01 149 5/15/2024 0.1.283-alpha01 is deprecated.
0.1.282-alpha01 201 5/15/2024 0.1.282-alpha01 is deprecated.
0.1.281-alpha01 170 5/15/2024 0.1.281-alpha01 is deprecated.
0.1.280-alpha01 156 5/15/2024 0.1.280-alpha01 is deprecated.
0.1.279-alpha01 153 5/15/2024 0.1.279-alpha01 is deprecated.
0.1.278-alpha01 181 5/15/2024 0.1.278-alpha01 is deprecated.
0.1.277-alpha01 158 5/15/2024 0.1.277-alpha01 is deprecated.
0.1.276-alpha01 182 5/15/2024 0.1.276-alpha01 is deprecated.
0.1.275-alpha01 155 5/15/2024 0.1.275-alpha01 is deprecated.
0.1.274-alpha01 182 5/15/2024 0.1.274-alpha01 is deprecated.
0.1.273-alpha01 161 5/15/2024 0.1.273-alpha01 is deprecated.
0.1.272-alpha01 148 5/15/2024 0.1.272-alpha01 is deprecated.
0.1.271-alpha01 187 5/14/2024 0.1.271-alpha01 is deprecated.
0.1.270-alpha01 146 5/14/2024 0.1.270-alpha01 is deprecated.
0.1.269-alpha01 181 5/14/2024 0.1.269-alpha01 is deprecated.
0.1.267-alpha01 186 5/14/2024 0.1.267-alpha01 is deprecated.
0.1.266-alpha01 150 5/14/2024 0.1.266-alpha01 is deprecated.
0.1.265-alpha01 141 5/14/2024 0.1.265-alpha01 is deprecated.
0.1.264-alpha01 134 5/14/2024 0.1.264-alpha01 is deprecated.
0.1.263-alpha01 168 5/14/2024 0.1.263-alpha01 is deprecated.
0.1.262-alpha01 169 5/14/2024 0.1.262-alpha01 is deprecated.
0.1.261-alpha01 166 5/14/2024 0.1.261-alpha01 is deprecated.
0.1.260-alpha01 163 5/14/2024 0.1.260-alpha01 is deprecated.
0.1.259-alpha01 167 5/14/2024 0.1.259-alpha01 is deprecated.
0.1.258-alpha01 165 5/14/2024 0.1.258-alpha01 is deprecated.
0.1.257-alpha01 161 5/14/2024 0.1.257-alpha01 is deprecated.
0.1.256-alpha01 154 5/14/2024 0.1.256-alpha01 is deprecated.
0.1.255-alpha01 174 5/14/2024 0.1.255-alpha01 is deprecated.
0.1.253-pullrequest0116-0276 165 5/14/2024 0.1.253-pullrequest0116-0276 is deprecated.
0.1.253-pullrequest0116-0274 170 5/14/2024 0.1.253-pullrequest0116-0274 is deprecated.
0.1.253-pullrequest0116-0273 125 5/14/2024 0.1.253-pullrequest0116-0273 is deprecated.
0.1.253-alpha01 142 5/14/2024 0.1.253-alpha01 is deprecated.
0.1.252-alpha01 178 5/13/2024 0.1.252-alpha01 is deprecated.
0.1.251-alpha01 175 5/13/2024 0.1.251-alpha01 is deprecated.
0.1.250-alpha01 157 5/13/2024 0.1.250-alpha01 is deprecated.
0.1.249-alpha01 151 5/3/2024 0.1.249-alpha01 is deprecated.
0.1.248-alpha01 214 4/24/2024 0.1.248-alpha01 is deprecated.
0.1.247-alpha01 177 4/16/2024 0.1.247-alpha01 is deprecated.
0.1.245-alpha01 158 4/16/2024 0.1.245-alpha01 is deprecated.
0.1.244-alpha01 167 4/16/2024 0.1.244-alpha01 is deprecated.
0.1.243-alpha01 148 4/16/2024 0.1.243-alpha01 is deprecated.
0.1.240-alpha01 169 4/16/2024 0.1.240-alpha01 is deprecated.
0.1.238-alpha01 138 4/16/2024 0.1.238-alpha01 is deprecated.