Skip to content

Commit 052c389

Browse files
committed
In JavaScriptEngineSwitcher.Jint added support for the Jint version 3.0.0
1 parent eab070a commit 052c389

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
<Import Project="../../build/nuget-for-dotnet-lib.props" />
1818

1919
<PropertyGroup>
20-
<Description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version 3.0.0 RC 1).</Description>
20+
<Description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version 3.0.0).</Description>
2121
<PackageTags>$(PackageCommonTags);Jint</PackageTags>
2222
<PackageIconFullPath>../../Icons/JavaScriptEngineSwitcher_Jint_Logo128x128.png</PackageIconFullPath>
23-
<PackageReleaseNotes>Jint was updated to version 3.0.0 RC 1.</PackageReleaseNotes>
23+
<PackageReleaseNotes>Jint was updated to version 3.0.0.</PackageReleaseNotes>
2424
</PropertyGroup>
2525

2626
<ItemGroup>
2727
<PackageReference Include="AdvancedStringBuilder" Version="0.1.0" />
28-
<PackageReference Include="Jint" Version="3.0.0-rc-1" />
28+
<PackageReference Include="Jint" Version="3.0.0" />
2929

3030
<ProjectReference Include="../JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj" />
3131
</ItemGroup>

src/JavaScriptEngineSwitcher.Jint/JintJsEngine.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public sealed class JintJsEngine : JsEngineBase
5050
/// <summary>
5151
/// Version of original JS engine
5252
/// </summary>
53-
private const string EngineVersion = "3.0.0 RC 1";
53+
private const string EngineVersion = "3.0.0";
5454

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

src/JavaScriptEngineSwitcher.Jint/readme.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
===========
1414
JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the
1515
Jint JavaScript Engine (http://github.com/sebastienros/jint) version
16-
3.0.0 RC 1).
16+
3.0.0).
1717

1818
=============
1919
RELEASE NOTES
2020
=============
21-
Jint was updated to version 3.0.0 RC 1.
21+
Jint was updated to version 3.0.0.
2222

2323
=============
2424
DOCUMENTATION

0 commit comments

Comments
 (0)