Skip to content

Commit 35a88d4

Browse files
committed
Version 3.0.0 Alpha 7
1 parent 6a10507 commit 35a88d4

File tree

16 files changed

+24
-16
lines changed

16 files changed

+24
-16
lines changed

CHANGELOG.md

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

4+
## v3.0.0 Alpha 7 - November 12, 2017
5+
* In JavaScriptEngineSwitcher.V8.Native.win-* and JavaScriptEngineSwitcher.ChakraCore.Native.win* packages fixed a error “When using PackageReference DLL is not copied”
6+
* In JavaScriptEngineSwitcher.V8:
7+
* Added support of Microsoft ClearScript.V8 version 5.5.0 (support of V8 version 6.2.414.40)
8+
* Now requires .NET Framework 4.5 or greater
9+
* In configuration settings of the V8 JS engine became obsolete the `MaxExecutableSize` property and was added 4 new properties: `EnableRemoteDebugging` (default `false`), `HeapSizeSampleInterval` (default `TimeSpan.Zero`), `MaxHeapSize` (default `0`) and `MaxStackUsage` (default `0`)
10+
* In JavaScriptEngineSwitcher.Jurassic added support of Jurassic version of November 2, 2017
11+
412
## v3.0.0 Alpha 6 - October 17, 2017
513
* In all modules, except the JavaScriptEngineSwitcher.V8 module, added support of .NET Standard 2.0
614
* In JavaScriptEngineSwitcher.V8 improved implementation of the `CallFunction` method

NuGet/JavaScriptEngineSwitcher.Jurassic/JavaScriptEngineSwitcher.Jurassic.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>JavaScriptEngineSwitcher.Jurassic</id>
5-
<version>3.0.0-alpha6</version>
5+
<version>3.0.0-alpha7</version>
66
<title>JS Engine Switcher: Jurassic</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>

NuGet/JavaScriptEngineSwitcher.Jurassic/readme.txt

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

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Jurassic v3.0.0 Alpha 6
4+
README file for JS Engine Switcher: Jurassic v3.0.0 Alpha 7
55

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

NuGet/JavaScriptEngineSwitcher.V8/JavaScriptEngineSwitcher.V8.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>JavaScriptEngineSwitcher.V8</id>
5-
<version>3.0.0-alpha6</version>
5+
<version>3.0.0-alpha7</version>
66
<title>JS Engine Switcher: V8</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>

NuGet/JavaScriptEngineSwitcher.V8/build-package.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ del clearscript-license.txt /Q/S
1515
xcopy "%project_bin_dir%\net45\%project_name%.dll" lib\net45\
1616
xcopy "%project_bin_dir%\net45\%project_name%.xml" lib\net45\
1717
xcopy "%project_bin_dir%\net45\ru-ru\%project_name%.resources.dll" lib\net45\ru-ru\
18-
xcopy "%lib_dir%\lib\net40-client\ClearScript.dll" lib\net45\
18+
xcopy "%lib_dir%\lib\net45\ClearScript.dll" lib\net45\
1919

2020
copy "%licenses_dir%\clearscript-license.txt" clearscript-license.txt /Y
2121

NuGet/JavaScriptEngineSwitcher.V8/readme.txt

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

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: V8 v3.0.0 Alpha 6
4+
README file for JS Engine Switcher: V8 v3.0.0 Alpha 7
55

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This library can be installed through NuGet:
1818
* [JS Engine Switcher: Core](http://nuget.org/packages/JavaScriptEngineSwitcher.Core) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
1919
* [JS Engine Switcher: MS Dependency Injection](http://nuget.org/packages/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection) (supports .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
2020
* [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)
21-
* [JS Engine Switcher: V8](http://nuget.org/packages/JavaScriptEngineSwitcher.V8) (supports .NET Framework 4.0 Client and .NET Framework 4.5)
21+
* [JS Engine Switcher: V8](http://nuget.org/packages/JavaScriptEngineSwitcher.V8) (supports .NET Framework 4.5)
2222
* [Windows (x86)](http://nuget.org/packages/JavaScriptEngineSwitcher.V8.Native.win-x86)
2323
* [Windows (x64)](http://nuget.org/packages/JavaScriptEngineSwitcher.V8.Native.win-x64)
2424
* [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)

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1.csproj

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

33
<PropertyGroup>
44
<VersionPrefix>3.0.0</VersionPrefix>
5-
<VersionSuffix>alpha6</VersionSuffix>
5+
<VersionSuffix>alpha7</VersionSuffix>
66
<TargetFramework>netcoreapp1.0</TargetFramework>
77
<RuntimeFrameworkVersion>1.0.7</RuntimeFrameworkVersion>
88
<OutputType>Exe</OutputType>

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
<VersionPrefix>3.0.0</VersionPrefix>
5-
<VersionSuffix>alpha6</VersionSuffix>
5+
<VersionSuffix>alpha7</VersionSuffix>
66
<TargetFramework>net451</TargetFramework>
77
<OutputType>Exe</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)