Skip to content

Commit f3eec68

Browse files
committed
In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.6.1
1 parent 0c9ca0f commit f3eec68

File tree

4 files changed

+6
-15
lines changed

4 files changed

+6
-15
lines changed

src/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,11 @@
2222
<PackageIconFullPath>../../Icons/JavaScriptEngineSwitcher_Jint_Logo128x128.png</PackageIconFullPath>
2323
<Description>JavaScriptEngineSwitcher.Jint contains a `JintJsEngine` adapter (wrapper for the Jint).</Description>
2424
<PackageTags>$(PackageCommonTags);Jint</PackageTags>
25-
<PackageReleaseNotes>1. Jint was updated to version 4.6.0;
26-
2. Performed a migration to the modern C# null/not-null checks;
27-
3. Added support for .NET 10;
28-
4. In the `lock` statements for .NET 10 target now uses a instances of the `System.Threading.Lock` class;
29-
5. Reduced a memory allocation by using collection expressions.</PackageReleaseNotes>
25+
<PackageReleaseNotes>Jint was updated to version 4.6.1.</PackageReleaseNotes>
3026
</PropertyGroup>
3127

3228
<ItemGroup>
33-
<PackageReference Include="Jint" Version="4.6.0" />
29+
<PackageReference Include="Jint" Version="4.6.1" />
3430

3531
<ProjectReference Include="../JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj" />
3632
</ItemGroup>

src/JavaScriptEngineSwitcher.Jint/JintJsEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public sealed class JintJsEngine : JsEngineBase
5656
/// <summary>
5757
/// Version of original JS engine
5858
/// </summary>
59-
private const string EngineVersion = "4.6.0";
59+
private const string EngineVersion = "4.6.1";
6060

6161
/// <summary>
6262
/// Jint JS engine
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
JavaScriptEngineSwitcher.Jint contains a `JintJsEngine` adapter (wrapper for the [Jint](http://github.com/sebastienros/jint) version 4.6.0).
1+
JavaScriptEngineSwitcher.Jint contains a `JintJsEngine` adapter (wrapper for the [Jint](http://github.com/sebastienros/jint) version 4.6.1).

src/JavaScriptEngineSwitcher.Jint/readme.txt

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,12 @@
1212
DESCRIPTION
1313
===========
1414
JavaScriptEngineSwitcher.Jint contains a `JintJsEngine` adapter (wrapper for the
15-
Jint (http://github.com/sebastienros/jint) version 4.6.0).
15+
Jint (http://github.com/sebastienros/jint) version 4.6.1).
1616

1717
=============
1818
RELEASE NOTES
1919
=============
20-
1. Jint was updated to version 4.6.0;
21-
2. Performed a migration to the modern C# null/not-null checks;
22-
3. Added support for .NET 10;
23-
4. In the `lock` statements for .NET 10 target now uses a instances of the
24-
`System.Threading.Lock` class;
25-
5. Reduced a memory allocation by using collection expressions.
20+
Jint was updated to version 4.6.1.
2621

2722
=============
2823
DOCUMENTATION

0 commit comments

Comments
 (0)