TUnit.Playwright 0.17.8

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package TUnit.Playwright --version 0.17.8                
NuGet\Install-Package TUnit.Playwright -Version 0.17.8                
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.Playwright" Version="0.17.8" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TUnit.Playwright --version 0.17.8                
#r "nuget: TUnit.Playwright, 0.17.8"                
#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.
// Install TUnit.Playwright as a Cake Addin
#addin nuget:?package=TUnit.Playwright&version=0.17.8

// Install TUnit.Playwright as a Cake Tool
#tool nuget:?package=TUnit.Playwright&version=0.17.8                

alternate text is missing from this package README image

A modern, flexible and fast testing framework for C#. With Native AOT and Trimmed Single File application support included!

TUnit is designed to aid with all testing types:

  • Unit
  • Integration
  • Acceptance
  • and more!

thomhurst%2FTUnit | Trendshift

Codacy Badge GitHub Repo stars GitHub Issues or Pull Requests GitHub Sponsors nuget NuGet Downloads GitHub Workflow Status (with event) GitHub last commit (branch) License

Quick Start

Assuming you have the .NET SDK installed, simply run:

dotnet new install TUnit.Templates

dotnet new TUnit -n "YourProjectName"

A new test project will be created for you with some samples of different test types and tips. When you're ready to get going, delete them and create your own!

Documentation

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

Modern and Fast

TUnit leverages source generators to locate and register your tests as opposed to reflection. You'll have a slight bump in build time, but a speedier runtime.

TUnit also builds upon the newer Microsoft.Testing.Platform, whereas most other frameworks you'll have used will use VSTest. The new platform was reconstructed from the ground up to address pain points, be more extensible, and be faster.

Hooks, Events and Lifecycles

One of the most powerful parts of TUnit is the information you have available to you because of the source generation and the events you can subscribe to. Because tests are constructed at the point of discovery, and not at runtime, you know all your arguments, properties, etc. upfront.

You can then register to be notified about various events such as test registered (scheduled to run in this test session at some point in the future), test started, test finished, etc.

Say we injected an external object into our tests: By knowing how many tests are registered, we could count them up, and then on a test end event, we could decrease the count. When hitting 0, we know our object isn't going to be used by any other tests, so we can dispose of it. We know when we can handle the lifecycle, and this prevents it from living till the end of the test session where it could be hanging on to precious resources.

Flexible Data Inputs

One popular feature of TUnit is the [ClassDataSource<T>] attribute - Allowing you to inject in classes to your tests with specific lifetimes, such as Per Test Session, or Per Test Class. Or if you want to run a combination of lots of different inputs, you can use a [MatrixDataSource] and annotate your parameters with [Matrix(...)] values.

But guess what? Those features are built on top of a DataSourceGenerator<T> class - Which is exposed directly to you. That means that that functionality can be extended greatly. If they didn't exist already, you could implement them yourself!

So if you've got creative or complex ways to generate new data, this gives you the flexibility to do it. You create a class which will end up being an attribute you place on your test - So your test classes remain simple and readable!

Built in Analyzers

TUnit tries to help you write your tests correctly with analyzers. If something isn't quite right, an analyzer should tell you what's wrong.

IDE

TUnit is built on top of the newer Microsoft.Testing.Platform, as opposed to the older VSTest platform. Because the infrastructure behind the scenes is new and different, you may need to enable some settings. This should just be a one time thing.

Visual Studio

Visual Studio is fully supported from 2022 17.13 onwards. The "Use testing platform server mode" option is not present from 2022 17.13 onwards.

For prior versions, the "Use testing platform server mode" option must be selected in Tools > Manage Preview Features.

alternate text is missing from this package README image

Rider

Rider is supported. The Enable Testing Platform support option must be selected in Settings > Build, Execution, Deployment > Unit Testing > VSTest.

alternate text is missing from this package README image

VS Code

Visual Studio Code is supported.

  • Install the extension Name: C# Dev Kit
  • Go to the C# Dev Kit extension's settings
  • Enable Dotnet > Test Window > Use Testing Platform Protocol

alternate text is missing from this package README image

CLI

dotnet CLI - Fully supported. Tests should be runnable with dotnet test, dotnet run, dotnet exec or executing an executable directly. See the docs for more information!

Packages

TUnit.Core

To be used when you want to define re-useable components, such as a test library, but it wouldn't be run as its own test suite.

TUnit.Engine

For test suites. This contains the test execution logic and test adapter. Only install this on actual test projects you intend to run, not class libraries.

TUnit.Assertions

This is independent from the framework and can be used wherever - Even in other test frameworks. It is just an assertion library used to assert data is as you expect. It uses an asychronous syntax which may be different to other assertion libraries you may have used.

TUnit

This is a helper package to combine the above 3 packages. If you just want a standard test app where you can write, run and assert tests, just install this!

TUnit.Playwright

This provides you base classes, similarly to Microsoft.Playwright.NUnit or Microsoft.Playwright.MSTest, to automatically create and dispose of Playwright objects in tests, to make it easier for you to write tests without worrying about lifecycles or disposing. The base classes are named the same as the other libraries: PageTest, ContextTest, BrowserTest, and PlaywrightTest.

Features

  • Native AOT / Trimmed Single File application support

  • Source generated tests

  • Property injection

  • Full async support

  • Parallel by default, with mechanisms to:

    • Run specific tests completely on their own
    • Run specific tests not in parallel with other specific tests
    • Limit the parallel limit on a per-test, class or assembly level
  • Tests can depend on other tests to form chains, useful for if one test depends on state from another action. While not recommended for unit tests, this can be useful in integration testing where state matters

  • Easy to read assertions - though you're also free to use whichever assertion library you like

  • Injectable test data via classes, methods, compile-time args, or matrices

  • Hooks before and after:

    • TestDiscover
    • TestSession
    • Assembly
    • Class
    • Test
  • Designed to avoid common pitfalls such as leaky test states

  • Dependency injection support (See here)

  • Ability to view and interrogate metadata and results from various assembly/class/test context objects

Installation

dotnet add package TUnit --prerelease

Example test

    [Test]
    public async Task Create_User_Has_Expected_Creation_Time()
    {
        var user = await CreateUser();

        await Assert.That(user.CreatedAt)
            .IsEqualTo(DateTime.Now)
            .Within(TimeSpan.FromMinutes(1));
    }

or with more complex test orchestration needs

    [Before(Class)]
    public static async Task ClearDatabase(ClassHookContext context) { ... }

    [After(Class)]
    public static async Task AssertDatabaseIsAsExpected(ClassHookContext context) { ... }

    [Before(Test)]
    public async Task CreatePlaywrightBrowser(TestContext context) { ... }

    [After(Test)]
    public async Task DisposePlaywrightBrowser(TestContext context) { ... }

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

    [Repeat(5)]
    [Test, DependsOn(nameof(Register))]
    [MethodDataSource(nameof(GetAuthDetails))]
    public async Task Login(string username, string password) { ... }

    [Test, DependsOn(nameof(Login), [typeof(string), typeof(string)])]
    [MethodDataSource(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)]
    [Test]
    [Arguments(1)]
    [Arguments(2)]
    [Arguments(3)]
    [DisplayName("Go to the page numbered $page")]
    public async Task GoToPage(int page) { ... }

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

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

    [Test]
    [ParallelLimit<LoadTestParallelLimit>]
    [Repeat(1000)]
    public async Task LoadHomepage() { ... }

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

    public class WindowsOnlyTestAttribute : SkipAttribute
    {
        public WindowsOnlyTestAttribute() : base("Windows only test")
        {
        }

        public override Task<bool> ShouldSkip(TestContext testContext)
        {
            return Task.FromResult(!OperatingSystem.IsWindows());
        }
    }

    public class RetryHttpServiceUnavailableAttribute : RetryAttribute
    {
        public RetryHttpServiceUnavailableAttribute(int times) : base(times)
        {
        }

        public override Task<bool> ShouldRetry(TestInformation testInformation, Exception exception, int currentRetryCount)
        {
            return Task.FromResult(exception is HttpRequestException { StatusCode: HttpStatusCode.ServiceUnavailable });
        }
    }

    public class LoadTestParallelLimit : IParallelLimit
    {
        public int Limit => 50;
    }

Motivations

TUnit is inspired by NUnit and xUnit - two of the most popular testing frameworks for .NET.

It aims to build upon the useful features of both while trying to address any pain points that they may have.

Read more here

Prerelease

You'll notice that version 1.0 isn't out yet. While this framework is mostly feature complete, I'm waiting for a few things:

  • Full Rider support for all features
  • Full VS support for all features
  • Open to feedback on existing features
  • Open to ideas on new features

As such, the API may change. I'll try to limit this but it's a possibility.

Benchmark

Scenario: Building the test project

macos-latest

BenchmarkDotNet v0.14.0, macOS Sonoma 14.7.2 (23H311) [Darwin 23.6.0]
Apple M1 (Virtual), 1 CPU, 3 logical and 3 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), Arm64 RyuJIT AdvSIMD
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), Arm64 RyuJIT AdvSIMD

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev Median
Build_TUnit 1.467 s 0.0776 s 0.2238 s 1.4607 s
Build_NUnit 1.270 s 0.0568 s 0.1638 s 1.2597 s
Build_xUnit 1.003 s 0.0522 s 0.1523 s 0.9549 s
Build_MSTest 1.050 s 0.0322 s 0.0944 s 1.0275 s
ubuntu-latest

BenchmarkDotNet v0.14.0, Ubuntu 24.04.2 LTS (Noble Numbat)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev
Build_TUnit 1.882 s 0.0355 s 0.0332 s
Build_NUnit 1.455 s 0.0154 s 0.0144 s
Build_xUnit 1.477 s 0.0129 s 0.0121 s
Build_MSTest 1.502 s 0.0266 s 0.0248 s
windows-latest

BenchmarkDotNet v0.14.0, Windows 10 (10.0.20348.3207) (Hyper-V)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev
Build_TUnit 1.959 s 0.0374 s 0.0459 s
Build_NUnit 1.542 s 0.0253 s 0.0237 s
Build_xUnit 1.519 s 0.0292 s 0.0273 s
Build_MSTest 1.618 s 0.0233 s 0.0218 s

Scenario: A single test that completes instantly (including spawning a new process and initialising the test framework)

macos-latest

BenchmarkDotNet v0.14.0, macOS Sonoma 14.7.4 (23H420) [Darwin 23.6.0]
Apple M1 (Virtual), 1 CPU, 3 logical and 3 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), Arm64 RyuJIT AdvSIMD
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), Arm64 RyuJIT AdvSIMD

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev Median
TUnit_AOT 73.91 ms 2.847 ms 8.031 ms 70.94 ms
TUnit 726.17 ms 51.713 ms 152.478 ms 718.52 ms
NUnit 1,176.13 ms 57.275 ms 163.409 ms 1,169.86 ms
xUnit 1,289.04 ms 55.188 ms 160.111 ms 1,298.53 ms
MSTest 1,053.51 ms 34.371 ms 101.343 ms 1,059.17 ms
ubuntu-latest

BenchmarkDotNet v0.14.0, Ubuntu 24.04.2 LTS (Noble Numbat)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev Median
TUnit_AOT 45.00 ms 0.886 ms 1.642 ms 45.97 ms
TUnit 794.28 ms 15.508 ms 20.164 ms 787.77 ms
NUnit 1,269.84 ms 7.770 ms 6.888 ms 1,269.20 ms
xUnit 1,326.43 ms 9.890 ms 8.767 ms 1,326.73 ms
MSTest 1,126.84 ms 6.697 ms 6.264 ms 1,124.07 ms
windows-latest

BenchmarkDotNet v0.14.0, Windows 10 (10.0.20348.3207) (Hyper-V)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev Median
TUnit_AOT 75.95 ms 1.514 ms 3.322 ms 77.93 ms
TUnit 853.92 ms 16.661 ms 20.461 ms 850.76 ms
NUnit 1,317.50 ms 15.783 ms 14.764 ms 1,318.53 ms
xUnit 1,362.46 ms 13.834 ms 12.263 ms 1,368.00 ms
MSTest 1,186.18 ms 15.855 ms 14.055 ms 1,185.17 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.14.0, macOS Sonoma 14.7.2 (23H311) [Darwin 23.6.0]
Apple M1 (Virtual), 1 CPU, 3 logical and 3 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), Arm64 RyuJIT AdvSIMD
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), Arm64 RyuJIT AdvSIMD

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev
TUnit_AOT 262.5 ms 21.35 ms 62.62 ms
TUnit 678.5 ms 19.79 ms 58.03 ms
NUnit 14,111.6 ms 279.38 ms 451.15 ms
xUnit 14,266.1 ms 284.10 ms 466.79 ms
MSTest 14,498.0 ms 284.46 ms 574.62 ms
ubuntu-latest

BenchmarkDotNet v0.14.0, Ubuntu 24.04.2 LTS (Noble Numbat)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev
TUnit_AOT 81.69 ms 1.629 ms 4.675 ms
TUnit 881.28 ms 17.513 ms 21.508 ms
NUnit 6,291.23 ms 10.545 ms 9.864 ms
xUnit 6,439.95 ms 22.165 ms 20.733 ms
MSTest 6,272.65 ms 14.784 ms 13.106 ms
windows-latest

BenchmarkDotNet v0.14.0, Windows 10 (10.0.20348.3207) (Hyper-V)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 9.0.200
  [Host]   : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2
  .NET 9.0 : .NET 9.0.2 (9.0.225.6610), X64 RyuJIT AVX2

Job=.NET 9.0  Runtime=.NET 9.0  

Method Mean Error StdDev
TUnit_AOT 133.4 ms 2.66 ms 7.59 ms
TUnit 933.0 ms 18.44 ms 25.84 ms
NUnit 7,501.6 ms 21.61 ms 20.21 ms
xUnit 7,558.0 ms 18.60 ms 17.40 ms
MSTest 7,452.8 ms 20.79 ms 19.44 ms
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 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. 
.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 (1)

Showing the top 1 popular GitHub repositories that depend on TUnit.Playwright:

Repository Stars
thomhurst/TUnit
A modern, fast and flexible .NET testing framework
Version Downloads Last updated
0.18.26 134 a day ago
0.18.24 125 2 days ago
0.18.23 117 2 days ago
0.18.21 143 2 days ago
0.18.17 179 2 days ago
0.18.16 113 2 days ago
0.18.9 323 3 days ago
0.18.0 202 4 days ago
0.17.14 351 4 days ago
0.17.11 198 4 days ago
0.17.8 215 5 days ago
0.17.3 282 5 days ago
0.17.0 177 6 days ago
0.16.56 261 6 days ago
0.16.54 188 6 days ago
0.16.50 203 7 days ago
0.16.49 118 7 days ago
0.16.47 199 7 days ago
0.16.45 195 7 days ago
0.16.42 163 7 days ago
0.16.36 351 7 days ago
0.16.28 384 9 days ago
0.16.23 376 9 days ago
0.16.22 229 9 days ago
0.16.13 467 11 days ago
0.16.11 254 11 days ago
0.16.8 294 11 days ago
0.16.6 222 12 days ago
0.16.4 162 12 days ago
0.16.3 117 12 days ago
0.16.1 157 12 days ago
0.15.30 350 14 days ago
0.15.18 161 15 days ago
0.15.3 333 16 days ago
0.15.1 96 16 days ago
0.14.17 103 17 days ago
0.14.14 88 17 days ago
0.14.13 93 17 days ago
0.14.10 1,333 18 days ago
0.14.6 605 20 days ago
0.14.0 744 22 days ago
0.13.25 92 22 days ago
0.13.23 292 23 days ago
0.13.20 208 24 days ago
0.13.18 338 25 days ago
0.13.15 283 25 days ago
0.13.13 89 25 days ago
0.13.9 298 25 days ago
0.13.3 788 a month ago
0.13.0 201 a month ago
0.12.25 598 a month ago
0.12.23 242 a month ago
0.12.21 252 a month ago
0.12.17 263 a month ago
0.12.14 173 a month ago
0.12.13 149 a month ago
0.12.11 130 a month ago
0.12.6 451 a month ago
0.12.0 302 a month ago
0.11.0 625 a month ago
0.10.33 642 a month ago
0.10.28 638 a month ago
0.10.26 155 a month ago
0.10.24 305 a month ago
0.10.19 389 a month ago
0.10.6 468 a month ago
0.10.4 209 a month ago
0.10.1 225 a month ago
0.9.11 255 a month ago
0.9.8 414 a month ago
0.9.6 227 a month ago
0.9.2 506 a month ago
0.9.0 232 a month ago
0.8.12 181 a month ago
0.8.8 183 a month ago
0.8.7 80 a month ago
0.8.4 657 a month ago
0.8.2 158 2 months ago
0.8.0 139 2 months ago
0.7.24 206 2 months ago
0.7.22 216 2 months ago
0.7.19 178 2 months ago
0.7.15 241 2 months ago
0.7.9 381 2 months ago
0.7.3 352 2 months ago
0.7.0 524 2 months ago
0.6.159 176 2 months ago
0.6.156 158 2 months ago
0.6.154 629 2 months ago
0.6.151 428 2 months ago
0.6.145 74 2 months ago
0.6.143 72 2 months ago
0.6.139 69 2 months ago
0.6.137 75 2 months ago
0.6.131 81 2 months ago
0.6.127 168 2 months ago
0.6.123 88 2 months ago
0.6.121 82 2 months ago
0.6.119 220 2 months ago
0.6.117 103 2 months ago
0.6.100 532 2 months ago
0.6.89 715 2 months ago
0.6.86 227 2 months ago
0.6.81 300 2 months ago
0.6.76 340 2 months ago
0.6.72 187 2 months ago
0.6.71 79 2 months ago
0.6.62 372 2 months ago
0.6.60 154 2 months ago
0.6.59 77 2 months ago
0.6.57 132 2 months ago
0.6.55 239 2 months ago
0.6.52 139 2 months ago
0.6.51 101 2 months ago
0.6.48 64 2 months ago
0.6.43 461 2 months ago
0.6.33 406 2 months ago
0.6.15 116 2 months ago
0.6.14 82 2 months ago
0.6.11 95 2 months ago
0.6.0 96 3 months ago
0.5.32 84 3 months ago
0.5.28 89 3 months ago
0.5.22 104 3 months ago
0.5.18 91 3 months ago
0.5.15 86 3 months ago
0.5.14 89 3 months ago
0.5.6 361 3 months ago
0.5.4 78 3 months ago
0.5.1 85 3 months ago
0.5.0 89 3 months ago
0.4.105 97 3 months ago
0.4.99 99 3 months ago
0.4.95 198 3 months ago
0.4.92 103 3 months ago
0.4.86 101 3 months ago
0.4.83 93 3 months ago
0.4.74 626 3 months ago
0.4.73 96 3 months ago
0.4.71 94 3 months ago
0.4.63 471 3 months ago
0.4.60 220 3 months ago
0.4.59 108 3 months ago
0.4.56 99 3 months ago
0.4.54 89 3 months ago
0.4.51 94 3 months ago
0.4.49 90 3 months ago
0.4.45 93 3 months ago
0.4.43 90 3 months ago
0.4.31 91 3 months ago
0.4.26 89 3 months ago
0.4.14 89 3 months ago
0.4.10 91 3 months ago
0.4.1 149 4 months ago
0.4.0 84 4 months ago
0.3.43 98 4 months ago
0.3.34 171 4 months ago
0.3.31 147 4 months ago
0.3.30 105 4 months ago
0.3.29 87 4 months ago
0.3.25 89 4 months ago
0.3.20 86 4 months ago
0.3.14 91 4 months ago
0.3.12 93 4 months ago
0.3.3 88 4 months ago
0.3.0 91 4 months ago
0.2.212 166 4 months ago
0.2.210 102 4 months ago
0.2.208 109 4 months ago
0.2.206 100 4 months ago
0.2.202 96 4 months ago
0.2.195 89 4 months ago
0.2.193 94 4 months ago
0.2.191 95 4 months ago
0.2.187 1,314 4 months ago
0.2.185 92 4 months ago
0.2.181 100 4 months ago
0.2.180 90 4 months ago
0.2.176 385 4 months ago
0.2.175 122 4 months ago
0.2.169 350 4 months ago
0.2.168 143 4 months ago
0.2.167 212 4 months ago
0.2.164 278 4 months ago
0.2.161 173 4 months ago
0.2.145 342 4 months ago
0.2.141 92 4 months ago
0.2.131 145 4 months ago
0.2.128 91 4 months ago
0.2.126 93 4 months ago
0.2.120 102 4 months ago
0.2.119 92 4 months ago
0.2.112 182 4 months ago
0.2.107 144 4 months ago
0.2.106 107 4 months ago
0.2.105 101 4 months ago
0.2.103 105 4 months ago
0.2.100 118 4 months ago
0.2.86 97 5 months ago
0.2.85 88 4 months ago
0.2.82 89 4 months ago
0.2.80 103 4 months ago