Z.Expressions.Eval 5.0.7

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

Z.Expressions.Eval: C# Eval Expression

Z.Expressions.Eval is a robust NuGet package that enables .NET developers to evaluate, compile, and execute dynamic C# expressions. By interpreting and processing strings as executable code, this package empowers developers to craft highly adaptable and customizable applications.

It has the capability to handle an extensive range of mathematical operations, string manipulations, boolean logic, and it can even interact with .NET objects and classes.

The principal advantage of Z.Expressions.Eval lies in its ability to provide enhanced flexibility by facilitating runtime execution and manipulation of C# expressions. This feature is particularly beneficial in scenarios where business rules are subject to frequent changes or need to be configurable.

Having earned the trust and endorsement of over 5000 customers worldwide, C# Eval Expression is a highly regarded library that has become an essential tool for a wide variety of projects.

Resources:

  • Official Website: Visit for comprehensive information, updates, tutorials, and more. Learn how Z.Expressions.Eval can significantly enhance your application's capabilities.
  • Contact Us: Have a question or need assistance? Don't hesitate to reach out. We're here to help you get the most out of C# Eval Expression.
  • GitHub Issues: Encountered an issue or have a feature request? Let us know on GitHub. Your feedback helps us make C# Eval Expression even better.

Supported .NET Versions

Z.Expressions.Eval exhibits broad compatibility with a variety of .NET versions. Starting from .NET Framework 4.5 and .NET Core 2.0, it extends support to the most recent versions of .NET.

To take full advantage of the enhancements in newer .NET versions, we highly recommend upgrading to the latest package version of Z.Expressions.Eval.

Main Features

Z.Expressions.Eval provides a set of powerful features designed to simplify dynamic C# expression evaluation and execution. Here are some of the key features:

  • Eval.Execute: Allows you to evaluate and execute a string as a C# expression at runtime. This feature can handle a wide variety of mathematical operations, string manipulations, boolean logic, and even work with .NET objects and classes.
  • Eval.Compile: Offers the ability to compile a string as a C# expression at runtime, reducing the overhead of repeated evaluations. This feature is especially useful when working with expressions that need to be executed multiple times.
  • LINQ Dynamic: Provides the power to execute LINQ expressions dynamically. This feature opens up new possibilities for creating highly flexible and configurable queries.

For a more detailed explanation and examples of each operation, please refer to the official documentation page.

Getting Started

To get a feel for Z.Expressions.Eval, here is a simple example:

using Z.Expressions;

public class Program
{
    public static void Main()
    {
        var result = Eval.Execute<int>("X*Y", new { X = 10, Y = 20 });
        Console.WriteLine(result); // Outputs: 200
    }
}

In the above example, the "X*Y" string expression is evaluated dynamically at runtime with the values of X and Y provided in an anonymous object. The result is then printed to the console.

Want to explore the library further? We offer an extensive collection of online examples showcasing the various functionalities and capabilities of C# Eval Expression:

These examples are specifically designed to impart practical understanding of C# Eval Expression, demonstrating its potent features and adaptable options in a variety of scenarios.

Advanced Usage

Instance Context

Z.Expressions.Eval allows more advanced scenarios, such as operating in a specific context, using variables, and more. Here's an example illustrating the use of instance context:

// CREATE a new instance of EvalContext
var context = new EvalContext();

// USE the `Execute` method from the context created
var list1 = context.Execute<List<int>>("new List<int>() { 1, 2, 3 };");

In this example, we first create a new instance of EvalContext. Then, we use the Execute method from the created context to evaluate and execute a string as a C# expression, which instantiates a new List<int>.

Try it online

Register Type

The RegisterType method allows you to register all types provided for the context. The method also registers extension methods from those types but does not register other static members. For instance, if you register the type "Z.MyNamespace.MyClass", you can subsequently create an expression such as "new MyClass()" or any extension methods from this type.

In the following example, we'll register the types MyClassHelper and MyExtensions to include their extension methods. We'll first demonstrate how to use our class and extension methods in an arithmetic operation. We'll then show how to utilize the IsRegisteredType and UnregisterType methods with MyClassHelper to verify if the type is currently registered and to unregister it.

using System;
using System.Collections.Generic;
using Z.Expressions;

public class Program
{
	public static void Main()
	{
		// Global Context: EvalManager.DefaultContext.RegisterType(typeof(Helper));
		
		var context = new EvalContext();
		context.RegisterType(typeof(MyClassHelper));
		context.RegisterType(typeof(MyExtensions));
		
		var r1 = context.Execute<int>("new MyClassHelper().MyClassHelperID + 2.AddMe(3)"); // return 6
		Console.WriteLine("1 - Result: " + r1);
		
		// Check if the type `MyClassHelper` is registered
		var r2 = context.IsRegisteredType(typeof(MyClassHelper)); // return true
		Console.WriteLine("2 - Result: " + r2);
		
		// Unregister the type `MyClassHelper`
		context.UnregisterType(typeof(MyClassHelper));
		
		// Check the type `MyClassHelper` has been succesfully unregistered
		var r3 = context.IsRegisteredType(typeof(MyClassHelper)); // return false
		Console.WriteLine("3 - Result: " + r3);
	}
	
	public class MyClassHelper
	{
		public int MyClassHelperID { get; set; } = 1;
	}
}

public static class MyExtensions
{	
	public static int AddMe(this int x, int y)
	{
		return x + y;
	}
}

Try it online

Use Options

The SafeMode option allows you to set the context to only allow the usage of registered members and types within expressions. In essence, it enables a secure execution environment for user input, restricting usage to only what you explicitly permit. By default, SafeMode is set to false.

In this example, we demonstrate how SafeMode method. Please ensure to thoroughly understand the SafeMode documentation if you intend to use this option.

// Global Context: EvalManager.DefaultContext.SafeMode = true;

var context = new EvalContext();

context.SafeMode = true;
context.UnregisterAll();

try
{
	var fail = context.Execute("Math.Min(1, 2)");
	Console.WriteLine(fail);
}
catch(Exception ex)
{
	Console.WriteLine("1 - Exception: " + ex.Message);
}

// try again by registering "System.Math" member
context.RegisterMember(typeof(System.Math));
var r2 = context.Execute("Math.Min(1, 2)");
Console.WriteLine("2 - Result: " + r2);

Try it online

Release Notes

For a thorough record of enhancements, bug fixes, and upgrades in each iteration of C# Eval Expression, we recommend referring to the official Release Notes located in our GitHub repository.

The Release Notes offer essential insights about each version, detailing new features, addressing resolved issues, and mentioning any breaking changes (if applicable). We strongly advise reviewing these notes prior to upgrading to a newer version. This practice not only ensures you leverage the full potential of the newly introduced features but also helps prevent unforeseen complications.

License

C# Eval Expression utilizes a paid licensing model. To acquire a license, please visit our official Pricing Page on the Eval Expression website.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible. 
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  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 (18)

Showing the top 5 NuGet packages that depend on Z.Expressions.Eval:

Package Downloads
Z.EntityFramework.Plus.EFCore

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more **IMPORTANT** - For EF Core 10.x, use the latest EF Plus v10.x version - For EF Core 9.x, use the latest EF Plus v9.x version - For EF Core 8.x, use the latest EF Plus v8.x version - For EF Core 7.x, use the latest EF Plus v7.x version - For EF Core 6.x, use the latest EF Plus v6.x version - For EF Core 5.x, use the latest EF Plus v5.x version - For EF Core 3.x, use the latest EF Plus v3.x version - For EF Core 2.x, use the latest EF Plus v2.x version

Z.EntityFramework.Plus.EF6

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more

Z.EntityFramework.Classic

Entity Framework Classic is an EF6 fork with performance enhancement, new features, and .NET Core support. This package is FREE (Community Version) Some features are Prime (Enterprise Version) Prime features can be disabled with "EntityFrameworkManager.IsCommunity = true;"

Z.EntityFramework.Plus.EF5

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more EF Core Package: https://www.nuget.org/packages/Z.EntityFramework.Plus.EFCore/ EF6 Package: https://www.nuget.org/packages/Z.EntityFramework.Plus.EF6/

DianFengBaseLib.Infrastructure

配合DDD使用

GitHub repositories (6)

Showing the top 6 popular GitHub repositories that depend on Z.Expressions.Eval:

Repository Stars
zzzprojects/EntityFramework-Plus
Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more
zzzprojects/EntityFramework.DynamicFilters
Global filtering for Entity Framework.
zzzprojects/Eval-Expression.NET
C# Eval Expression | Evaluate, Compile, and Execute C# code and expression at runtime.
zzzprojects/EntityFramework-Effort
Entity Framework Effort is a powerful tool that enables a convenient way to create automated tests for Entity Framework based applications.
DigitalPlatform/dp2
Integrated Library System / 图书馆集成系统
zzzprojects/EntityFramework-Classic
Entity Framework Classic is a supported version of the latest EF6 codebase. It supports .NET Framework and .NET Core and overcomes some EF limitations by adding tons of must-haves built-in features.
Version Downloads Last Updated
6.3.4 0 11/10/2025
6.3.3 2,331 11/2/2025
6.3.2 85,558 10/7/2025
6.3.1 116,208 9/16/2025
6.3.1-beta1 195 9/10/2025
6.3.0 11,846 8/18/2025
6.2.15 199,844 8/12/2025
6.2.14 4,791 7/28/2025
6.2.13 98,109 7/21/2025
6.2.12 327,480 6/10/2025
6.2.11 9,227 5/25/2025
6.2.10 228,454 5/6/2025
6.2.9 197,664 4/8/2025
6.2.8 484,781 3/10/2025
6.2.7 14,899 2/24/2025
6.2.6 276,245 2/11/2025
6.2.5 407,149 1/14/2025
6.2.4 435,513 12/17/2024
6.2.3 483,221 11/26/2024
6.2.2 413,295 11/12/2024
6.2.2-beta2 176 11/14/2024
6.2.2-beta1 198 11/14/2024
6.2.1 425,304 10/22/2024
6.2.0 463,773 9/23/2024
6.2.0-beta1 201 10/2/2024
6.1.10 454,632 8/27/2024
6.1.9 267,487 8/12/2024
6.1.8 358,989 7/22/2024
6.1.7 793,831 6/18/2024
6.1.6 187,412 6/3/2024
6.1.2 1,459,782 3/11/2024
6.1.1 303,944 2/27/2024
6.1.0 564,901 2/13/2024
6.0.6 831,086 1/15/2024
6.0.5 369,724 12/18/2023
6.0.4 6,039 12/11/2023
6.0.3 173,629 12/5/2023
6.0.2 122,644 11/28/2023
6.0.1 3,262 11/28/2023
6.0.0 360,638 11/15/2023
5.0.12 6,171 11/7/2023
5.0.11 520,435 10/17/2023
5.0.10 345,267 9/26/2023
5.0.9 276,695 9/11/2023
5.0.8 269,558 8/15/2023
5.0.7 741,902 7/11/2023
5.0.6 337,201 6/12/2023
5.0.5 11,221 5/30/2023
5.0.4 542,327 5/16/2023
5.0.3 438,897 4/17/2023
5.0.2 381,158 3/20/2023
5.0.1 562,628 2/20/2023
5.0.0 880,306 1/17/2023
4.0.92 485,209 12/20/2022
4.0.91 493,077 12/5/2022
4.0.90 683,928 11/14/2022
4.0.89 1,075,902 10/10/2022
4.0.88 1,272,664 9/12/2022
4.0.87 938,642 8/16/2022
4.0.86 1,118,178 7/19/2022
4.0.85 829,545 6/14/2022
4.0.84 151,430 6/7/2022
4.0.83 27,065 5/26/2022
4.0.82 469,172 5/24/2022
4.0.81 222,781 5/17/2022
4.0.80 216,224 5/10/2022
4.0.79 877,998 4/12/2022
4.0.78 931,432 3/30/2022
4.0.77 840,557 3/15/2022
4.0.76 348,804 3/1/2022
4.0.75 161,566 2/22/2022
4.0.74 374,274 2/14/2022
4.0.73 139,799 2/8/2022
4.0.72 34,119 2/1/2022
4.0.71 629,768 1/18/2022
4.0.70 314,604 1/11/2022
4.0.69 2,619,745 12/30/2021
4.0.68 23,199 12/15/2021
4.0.67 280,248 12/14/2021
4.0.66 6,354 12/7/2021
4.0.65 5,099 11/30/2021
4.0.64 349,163 11/24/2021
4.0.63 374,724 11/17/2021
4.0.62 320,718 11/9/2021
4.0.61 5,020 11/4/2021
4.0.60 336,929 10/27/2021
4.0.59 155,748 10/20/2021
4.0.58 94,410 10/13/2021
4.0.57 4,748 10/12/2021
4.0.56 9,315 10/6/2021
4.0.55 8,526 9/29/2021
4.0.54 586,974 9/15/2021
4.0.53 114,950 9/8/2021
4.0.52 213,948 9/1/2021
4.0.51 98,364 8/25/2021
4.0.50 179,883 8/17/2021
4.0.49 200,879 8/4/2021
4.0.48 470,165 7/28/2021
4.0.47 205,992 7/20/2021
4.0.46 244,842 7/13/2021
4.0.45 554,000 6/16/2021
4.0.44 78,981 6/14/2021
4.0.43 539,863 5/12/2021
4.0.42 144,416 5/3/2021
4.0.41 227,678 4/26/2021
4.0.40 4,487 4/22/2021
4.0.39 211,134 4/19/2021
4.0.38 163,376 4/7/2021
4.0.37 291,084 3/24/2021
4.0.37-beta1 1,816 4/1/2021
4.0.36 155,849 3/16/2021
4.0.35 41,084 3/15/2021
4.0.34 232,589 3/10/2021
4.0.33 13,895 2/23/2021
4.0.32 597,091 2/16/2021
4.0.31 162,628 2/10/2021
4.0.30 233,081 2/2/2021
4.0.29 333,503 1/13/2021
4.0.28 612,380 12/14/2020
4.0.27 73,146 12/8/2020
4.0.26 110,231 12/1/2020
4.0.25 90,054 11/27/2020
4.0.24 219,997 11/11/2020
4.0.23 232,801 10/30/2020
4.0.22 821,186 10/11/2020
4.0.21 64,426 10/7/2020
4.0.20 5,563 10/5/2020
4.0.19 107,075 9/30/2020
4.0.18 6,461 9/29/2020
4.0.17 43,188 9/24/2020
4.0.16 342,999 9/14/2020
4.0.15 248,579 8/31/2020
4.0.14 9,455 8/25/2020
4.0.13 7,395 8/17/2020
4.0.12 253,692 8/11/2020
4.0.11 105,650 8/3/2020
4.0.10 22,418 7/28/2020
4.0.9 166,168 7/22/2020
4.0.8 5,321 7/19/2020
4.0.7 4,234 7/19/2020
4.0.6 272,384 7/14/2020
4.0.5 4,325 7/13/2020
4.0.4 93,544 7/12/2020
4.0.3 15,440 7/5/2020
4.0.2 10,939 6/30/2020
4.0.1 717,489 6/14/2020
4.0.0 83,355 6/1/2020
3.1.12 29,948 5/25/2020
3.1.11 710,295 5/14/2020
3.1.10 490,880 4/14/2020
3.1.9 54,247 4/3/2020
3.1.8 654,179 3/16/2020
3.1.7 8,126 3/10/2020
3.1.6 586,565 2/21/2020
3.1.5 320,331 2/18/2020
3.1.4 22,279 2/15/2020
3.1.3 64,744 2/7/2020
3.1.2 521,289 1/27/2020
3.1.1 6,331 1/23/2020
3.1.0 12,458 1/14/2020
3.0.14 8,661 1/13/2020
3.0.13 28,387 1/9/2020
3.0.12 16,064 1/3/2020
3.0.11 13,669 12/19/2019
3.0.10 6,153 12/17/2019
3.0.9 532,665 12/16/2019
3.0.8 8,060 12/11/2019
3.0.7 341,494 11/25/2019
3.0.6 25,816 11/18/2019
3.0.5 5,971 11/14/2019
3.0.4 9,885 11/12/2019
3.0.3 633,820 10/30/2019
3.0.2 4,344 10/30/2019
3.0.1 16,666 10/29/2019
3.0.0 4,682 10/29/2019
2.9.57 18,526 10/16/2019
2.9.56 4,711 10/10/2019
2.9.55 8,268 10/2/2019
2.9.54 19,115 9/22/2019
2.9.52 5,097 9/6/2019
2.9.51 4,323 9/5/2019
2.9.50 4,298 9/4/2019
2.9.49 4,775 8/29/2019
2.9.48 10,574 8/24/2019
2.9.47 4,369 8/24/2019
2.9.46 41,938 8/15/2019
2.9.45 163,124 7/28/2019
2.9.44 5,179 7/15/2019
2.9.43 5,569 7/9/2019
2.9.42 8,340 7/4/2019
2.9.41 4,512 7/3/2019
2.9.40 4,454 7/1/2019
2.9.39 19,016 6/29/2019
2.9.38 4,344 6/25/2019
2.9.37 4,851 6/12/2019
2.9.36 4,469 6/7/2019
2.9.35 4,326 6/4/2019
2.9.34 4,637 5/31/2019
2.9.33 6,366 5/31/2019
2.9.32 6,490 5/23/2019
2.9.31 53,673 5/20/2019
2.9.30 4,385 5/17/2019
2.9.29 4,433 5/9/2019
2.9.28 4,259 5/9/2019
2.9.27 6,409 5/5/2019
2.9.26 4,286 5/3/2019
2.9.25 9,383 4/30/2019
2.9.24 5,042 4/18/2019
2.9.22 4,460 4/16/2019
2.9.21 13,297 4/7/2019
2.9.20 34,858 3/30/2019
2.9.19 4,572 3/27/2019
2.9.18 4,397 3/26/2019
2.9.17 4,591 3/21/2019
2.9.16 4,310 3/20/2019
2.9.15 4,337 3/20/2019
2.9.14 4,484 3/16/2019
2.9.13 4,385 3/16/2019
2.9.12 99,635 2/27/2019
2.9.11 4,709 2/20/2019
2.9.10 4,399 2/18/2019
2.9.9 4,333 2/16/2019
2.9.8 5,018 2/13/2019
2.9.7 4,785 2/8/2019
2.9.6 8,341 1/30/2019
2.9.5 11,097 1/13/2019
2.9.4 8,734 12/30/2018
2.9.3 4,974 12/13/2018
2.9.2 4,559 12/13/2018
2.9.1 4,649 12/12/2018
2.9.0 4,474 12/12/2018
2.8.9 5,027 12/11/2018
2.8.8 72,320 11/29/2018
2.8.7 5,008 11/28/2018
2.8.6 4,499 11/27/2018
2.8.5 5,735 11/20/2018
2.8.4 4,626 11/18/2018
2.8.3 4,548 11/17/2018
2.8.2 4,574 11/17/2018
2.8.1 5,209 11/14/2018
2.8.0 4,504 11/14/2018
2.7.13 7,035 10/29/2018
2.7.12 11,765 10/28/2018
2.7.11 4,642 10/23/2018
2.7.10 7,936 10/17/2018
2.7.9 7,166 10/7/2018
2.7.8 7,687 9/29/2018
2.7.7 7,491 8/31/2018
2.7.6 8,196 8/30/2018
2.7.5 5,012 8/18/2018
2.7.4 7,489 8/16/2018
2.7.3 5,571 8/16/2018
2.7.2 6,959 7/31/2018
2.7.1 5,411 7/19/2018
2.7.0 5,538 7/5/2018
2.6.5 5,368 6/29/2018
2.6.4 6,041 5/31/2018
2.6.3 6,411 5/2/2018
2.6.2 5,399 4/30/2018
2.6.1 6,379 3/30/2018
2.6.0 5,332 3/26/2018
2.5.0 5,272 3/20/2018
2.4.21 5,105 3/20/2018
2.4.20 5,192 3/16/2018
2.4.19 5,679 2/27/2018
2.4.18 5,696 2/12/2018
2.4.17 5,027 2/6/2018
2.4.16 5,288 2/2/2018
2.4.15 5,190 1/31/2018
2.4.14 5,182 1/31/2018
2.4.13 5,233 1/23/2018
2.4.12 5,163 1/16/2018
2.4.11 5,296 1/8/2018
2.4.10 5,513 1/5/2018
2.4.9 5,459 12/29/2017
2.4.8 7,060 12/6/2017
2.4.7 5,103 11/30/2017
2.4.6 5,061 11/27/2017
2.4.5 5,320 11/16/2017
2.4.4 5,131 11/13/2017
2.4.3 6,690 11/7/2017
2.4.2 5,060 11/1/2017
2.4.1 5,246 10/30/2017
2.4.0 15,455 9/30/2017
2.3.0 5,224 9/30/2017
2.2.1 5,192 9/24/2017
2.2.0-beta1 2,875 9/20/2017
2.1.15 5,925 8/31/2017
2.1.14 5,065 8/8/2017
2.1.13 5,165 8/2/2017
2.1.12 4,930 8/1/2017
2.1.11 5,056 7/27/2017
2.1.10 5,098 7/25/2017
2.1.9 5,073 7/11/2017
2.1.8 11,216 7/10/2017
2.1.7 5,090 7/7/2017
2.1.6 4,991 7/6/2017
2.1.5 5,044 7/3/2017
2.1.4 5,577 6/29/2017