Skip to content

Commit 55a93d1

Browse files
committed
In JavaScriptEngineSwitcher.Jint:
1. Jint was updated to version 3.0.0 Beta 2049; 2. Added support of .NET 6.
1 parent a9afcce commit 55a93d1

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

src/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Product>JS Engine Switcher: Jint</Product>
55
<VersionPrefix>3.21.0</VersionPrefix>
66
<VersionSuffix>preview</VersionSuffix>
7-
<TargetFrameworks>net462;netstandard2.0;netstandard2.1</TargetFrameworks>
7+
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1010
<NoWarn>$(NoWarn);CS1591;NU5104</NoWarn>
@@ -18,16 +18,16 @@
1818
<Import Project="../../build/nuget-for-dotnet-lib.props" />
1919

2020
<PropertyGroup>
21-
<Description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version 3.0.0 Beta 2048).</Description>
21+
<Description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version 3.0.0 Beta 2049).</Description>
2222
<PackageTags>$(PackageCommonTags);Jint</PackageTags>
2323
<PackageIconFullPath>../../Icons/JavaScriptEngineSwitcher_Jint_Logo128x128.png</PackageIconFullPath>
24-
<PackageReleaseNotes>1. Jint was updated to version 3.0.0 Beta 2048;
25-
2. In configuration settings of the Jint JS engine was added two new properties: `AllowReflection` (default `false`) and `DisableEval` (default `false`).</PackageReleaseNotes>
24+
<PackageReleaseNotes>1. Jint was updated to version 3.0.0 Beta 2049;
25+
2. Added support of .NET 6.</PackageReleaseNotes>
2626
</PropertyGroup>
2727

2828
<ItemGroup>
2929
<PackageReference Include="AdvancedStringBuilder" Version="0.1.0" />
30-
<PackageReference Include="Jint" Version="3.0.0-beta-2048" />
30+
<PackageReference Include="Jint" Version="3.0.0-beta-2049" />
3131

3232
<ProjectReference Include="../JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj" />
3333
</ItemGroup>

src/JavaScriptEngineSwitcher.Jint/JintJsEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public sealed class JintJsEngine : JsEngineBase
5151
/// <summary>
5252
/// Version of original JS engine
5353
/// </summary>
54-
private const string EngineVersion = "3.0.0 Beta 2048";
54+
private const string EngineVersion = "3.0.0 Beta 2049";
5555

5656
/// <summary>
5757
/// Jint JS engine

src/JavaScriptEngineSwitcher.Jint/readme.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@
1313
===========
1414
JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the
1515
Jint JavaScript Engine (http://github.com/sebastienros/jint) version
16-
3.0.0 Beta 2048).
16+
3.0.0 Beta 2049).
1717

1818
=============
1919
RELEASE NOTES
2020
=============
21-
1. Jint was updated to version 3.0.0 Beta 2048;
22-
2. In configuration settings of the Jint JS engine was added two new properties:
23-
`AllowReflection` (default `false`) and `DisableEval` (default `false`).
21+
1. Jint was updated to version 3.0.0 Beta 2049;
22+
2. Added support of .NET 6.
2423

2524
=============
2625
DOCUMENTATION

0 commit comments

Comments
 (0)