Skip to content

Commit dcd18da

Browse files
committed
Version 3.2.0
1 parent 2bbb8d2 commit dcd18da

File tree

12 files changed

+27
-40
lines changed

12 files changed

+27
-40
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change log
22
==========
33

4+
## v3.2.0 - October 12, 2019
5+
* In JavaScriptEngineSwitcher.Jint:
6+
* Jint was updated to version 3.0.0 Beta 1612. Special thanks to [Marko Lahma](https://github.com/lahma) and [Sébastien Ros](https://github.com/sebastienros)
7+
* No longer supports a .NET Framework 4.0 Client and .NET Standard 1.3
8+
* In configuration settings of the Jint JS engine was added two new properties: `MemoryLimit` (default `0`) and `RegexTimeoutInterval` (default `null`)
9+
* To install this package, the “Include Prerelease” option must be set in the NuGet Package Manager
10+
411
## v3.1.10 - October 9, 2019
512
* In JavaScriptEngineSwitcher.ChakraCore:
613
* ChakraCore was updated to version 1.11.14

Licenses/net-object-deep-copy-license.txt

Lines changed: 0 additions & 20 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
JavaScript Engine Switcher [![NuGet version](http://img.shields.io/nuget/v/JavaScriptEngineSwitcher.Core.svg)](https://www.nuget.org/packages/JavaScriptEngineSwitcher.Core/) [![Download count](https://img.shields.io/nuget/dt/JavaScriptEngineSwitcher.Core.svg)](https://www.nuget.org/packages/JavaScriptEngineSwitcher.Core/)
22
==========================
33

4-
JavaScript Engine Switcher determines unified interface for access to the basic features of popular JavaScript engines ([MSIE JavaScript Engine for .NET](http://github.com/Taritsyn/MsieJavaScriptEngine), [Microsoft ClearScript.V8](http://github.com/Microsoft/ClearScript), [Jurassic](http://github.com/paulbartrum/jurassic), [Jint](http://github.com/sebastienros/jint), [ChakraCore](http://github.com/Microsoft/ChakraCore), [VroomJs](http://github.com/pauldotknopf/vroomjs-core) and [NiL.JS](https://github.com/nilproject/NiL.JS)).
4+
JavaScript Engine Switcher determines unified interface for access to the basic features of popular JavaScript engines ([ChakraCore](https://github.com/Microsoft/ChakraCore), [Jint](https://github.com/sebastienros/jint), [Jurassic](https://github.com/paulbartrum/jurassic), [MSIE JavaScript Engine for .NET](https://github.com/Taritsyn/MsieJavaScriptEngine), [NiL.JS](https://github.com/nilproject/NiL.JS), [Microsoft ClearScript.V8](https://github.com/Microsoft/ClearScript) and [VroomJs](https://github.com/pauldotknopf/vroomjs-core)).
55
This library allows you to quickly and easily switch to using of another JavaScript engine.
66

77
The supported .NET types are as follows:
@@ -26,7 +26,7 @@ This library can be installed through NuGet:
2626
* [Windows (ARM)](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore.Native.win-arm)
2727
* [Linux (x64)](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64)
2828
* [OS X (x64)](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64)
29-
* [JS Engine Switcher: Jint](http://nuget.org/packages/JavaScriptEngineSwitcher.Jint) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
29+
* [JS Engine Switcher: Jint](http://nuget.org/packages/JavaScriptEngineSwitcher.Jint) (supports .NET Framework 4.5 and .NET Standard 2.0)
3030
* [JS Engine Switcher: Jurassic](http://nuget.org/packages/JavaScriptEngineSwitcher.Jurassic) (supports .NET Framework 4.0 Client, .NET Framework 4.5 and .NET Standard 2.0)
3131
* [JS Engine Switcher: MSIE](http://nuget.org/packages/JavaScriptEngineSwitcher.Msie) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
3232
* [JS Engine Switcher: NiL](http://nuget.org/packages/JavaScriptEngineSwitcher.NiL) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
5-
<VersionPrefix>3.1.10</VersionPrefix>
5+
<VersionPrefix>3.2.0</VersionPrefix>
66
<TargetFramework>net451</TargetFramework>
77
<OutputType>Exe</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsengineswitcher.sample.aspnetcore1full.mvc1",
33
"private": true,
4-
"version": "3.1.10",
4+
"version": "3.2.0",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

samples/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 2.0 MVC 2 Site</Product>
5-
<VersionPrefix>3.1.10</VersionPrefix>
5+
<VersionPrefix>3.2.0</VersionPrefix>
66
<TargetFramework>netcoreapp2.0</TargetFramework>
77
<OutputType>Exe</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsengineswitcher.sample.aspnetcore2.mvc2",
33
"private": true,
4-
"version": "3.1.10",
4+
"version": "3.2.0",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<p>JavaScript Engine Switcher determines unified interface for access to the basic features of popular JavaScript engines (<a href="http://github.com/Taritsyn/MsieJavaScriptEngine" target="blank">MSIE JavaScript Engine for .NET</a>, <a href="http://clearscript.codeplex.com/" target="blank">Microsoft ClearScript.V8</a>, <a href="http://github.com/paulbartrum/jurassic" target="blank">Jurassic</a>, <a href="http://github.com/sebastienros/jint" target="blank">Jint</a>, <a href="http://github.com/Microsoft/ChakraCore" target="blank">ChakraCore</a>, <a href="http://github.com/pauldotknopf/vroomjs-core" target="blank">VroomJs</a> and <a href="https://github.com/nilproject/NiL.JS" target="blank">NiL.JS</a>). This library allows you to quickly and easily switch to using of another JavaScript engine.</p>
1+
<p>JavaScript Engine Switcher determines unified interface for access to the basic features of popular JavaScript engines (<a href="https://github.com/Microsoft/ChakraCore" target="blank">ChakraCore</a>, <a href="https://github.com/sebastienros/jint" target="blank">Jint</a>, <a href="https://github.com/paulbartrum/jurassic" target="blank">Jurassic</a>, <a href="https://github.com/Taritsyn/MsieJavaScriptEngine" target="blank">MSIE JavaScript Engine for .NET</a>, <a href="https://github.com/nilproject/NiL.JS" target="blank">NiL.JS</a>, <a href="https://github.com/Microsoft/ClearScript" target="blank">Microsoft ClearScript.V8</a> and <a href="https://github.com/pauldotknopf/vroomjs-core" target="blank">VroomJs</a>). This library allows you to quickly and easily switch to using of another JavaScript engine.</p>
22
<p>JavaScript Engine Switcher was created and is maintained by Andrey Taritsyn.</p>

src/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.csproj

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
<PropertyGroup>
44
<Product>JS Engine Switcher: Jint</Product>
5-
<VersionPrefix>3.1.0</VersionPrefix>
5+
<VersionPrefix>3.2.0</VersionPrefix>
6+
<VersionSuffix>preview</VersionSuffix>
67
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
78
<OutputType>Library</OutputType>
89
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -12,9 +13,10 @@
1213
<Description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version 3.0.0 Beta 1612).</Description>
1314
<PackageIconUrl>https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_Jint_Logo128x128.png</PackageIconUrl>
1415
<PackageTags>JavaScriptEngineSwitcher;JavaScript;ECMAScript;Jint</PackageTags>
15-
<PackageReleaseNotes>1. Jint was updated to version 3.0.0 Beta 1612;
16+
<PackageReleaseNotes>1. Jint was updated to version 3.0.0 Beta 1612. Special thanks to Marko Lahma and Sébastien Ros;
1617
2. No longer supports a .NET Framework 4.0 Client and .NET Standard 1.3;
17-
3. In configuration settings of the Jint JS engine was added two new properties: `MemoryLimit` (default `0`) and `RegexTimeoutInterval` (default `null`).</PackageReleaseNotes>
18+
3. In configuration settings of the Jint JS engine was added two new properties: `MemoryLimit` (default `0`) and `RegexTimeoutInterval` (default `null`);
19+
4. To install this package, the “Include Prerelease” option must be set in the NuGet Package Manager.</PackageReleaseNotes>
1820
</PropertyGroup>
1921

2022
<Import Project="../../build/common.props" />
@@ -44,11 +46,6 @@
4446
<Pack>true</Pack>
4547
<Visible>false</Visible>
4648
</Content>
47-
<Content Include="../../Licenses/net-object-deep-copy-license.txt">
48-
<PackagePath>net-object-deep-copy-license.txt</PackagePath>
49-
<Pack>true</Pack>
50-
<Visible>false</Visible>
51-
</Content>
5249
</ItemGroup>
5350

5451
</Project>

src/JavaScriptEngineSwitcher.Jint/readme.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Jint v3.1.0
4+
README file for JS Engine Switcher: Jint v3.2.0 Preview
55

66
--------------------------------------------------------------------------------
77

@@ -17,10 +17,13 @@
1717
=============
1818
RELEASE NOTES
1919
=============
20-
1. Jint was updated to version 3.0.0 Beta 1612;
20+
1. Jint was updated to version 3.0.0 Beta 1612. Special thanks to Marko Lahma
21+
and Sébastien Ros;
2122
2. No longer supports a .NET Framework 4.0 Client and .NET Standard 1.3;
2223
3. In configuration settings of the Jint JS engine was added two new properties:
23-
`MemoryLimit` (default `0`) and `RegexTimeoutInterval` (default `null`).
24+
`MemoryLimit` (default `0`) and `RegexTimeoutInterval` (default `null`);
25+
4. To install this package, the “Include Prerelease” option must be set in the
26+
NuGet Package Manager.
2427

2528
=============
2629
DOCUMENTATION

0 commit comments

Comments
 (0)