Skip to content

Commit 8eaea45

Browse files
committed
Version 3.0.0 Alpha 10
1 parent 0f0c8f2 commit 8eaea45

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

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

4+
## v3.0.0 Alpha 10 - January 3, 2018
5+
* In JavaScriptEngineSwitcher.V8:
6+
* Added support of Microsoft ClearScript.V8 version 5.5.1.1 (support of V8 version 6.3.292.48)
7+
* In configuration settings of the V8 JS engine was added one new property - `AwaitDebuggerAndPauseOnStart` (default `false`)
8+
49
## v3.0.0 Alpha 9 - December 22, 2017
510
* In JavaScriptEngineSwitcher.Msie added support of MSIE JavaScript Engine version 3.0.0 Alpha 3
611
* In JavaScriptEngineSwitcher.V8 in configuration settings of the V8 JS engine was changed types of `MaxHeapSize` and `MaxStackUsage` properties from `ulong` to `UIntPtr`

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha8</VersionSuffix>
6+
<VersionSuffix>alpha10</VersionSuffix>
77
<TargetFramework>net451</TargetFramework>
88
<OutputType>Exe</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

src/JavaScriptEngineSwitcher.V8/JavaScriptEngineSwitcher.V8.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: V8</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha9</VersionSuffix>
6+
<VersionSuffix>alpha10</VersionSuffix>
77
<TargetFramework>net45</TargetFramework>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -55,10 +55,7 @@ This package does not contain the native ClearScript and V8 assemblies. Therefor
5555
</ItemGroup>
5656

5757
<Target Name="СonvertResxToCs" BeforeTargets="BeforeCompile">
58-
<ResxToCsTask
59-
InputDirectory="./Resources/"
60-
Namespace="$(RootNamespace).Resources"
61-
InternalAccessModifier="true" />
58+
<ResxToCsTask InputDirectory="./Resources/" Namespace="$(RootNamespace).Resources" InternalAccessModifier="true" />
6259
</Target>
6360
<Target Name="AddAdditionalAssembliesToPackage" BeforeTargets="GenerateNuspec">
6461
<ItemGroup>

src/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 9
4+
README file for JS Engine Switcher: V8 v3.0.0 Alpha 10
55

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

test/JavaScriptEngineSwitcher.Tests/JavaScriptEngineSwitcher.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Tests</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha8</VersionSuffix>
6+
<VersionSuffix>alpha10</VersionSuffix>
77
<TargetFrameworks>net452;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)