Skip to content

Commit f0db86d

Browse files
committed
Version 3.0.0 Beta 2
1 parent 6b98869 commit f0db86d

File tree

9 files changed

+12
-8
lines changed

9 files changed

+12
-8
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Change log
22
==========
33

4+
## v3.0.0 Beta 2 - May 22, 2018
5+
* In `MsieJsEngine` class was added `SupportsScriptPrecompilation` property and three new methods: `Precompile`, `PrecompileFile` and `PrecompileResource`
6+
* In JsRT modes added a ability to pre-compile scripts
7+
48
## v3.0.0 Beta 1 - April 8, 2018
59
* Format of the error messages was unified
610
* Created a new exception classes: `JsCompilationException`, `JsEngineException`, `JsFatalException` and `JsUsageException`. These exceptions are responsible for handling errors, some of which were previously handled by the `JsRuntimeException` class.

src/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine for .NET</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>beta1</VersionSuffix>
6+
<VersionSuffix>beta2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

src/MsieJavaScriptEngine/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for MSIE JavaScript Engine for .NET v3.0.0 Beta 1
4+
README file for MSIE JavaScript Engine for .NET v3.0.0 Beta 2
55

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

test/MsieJavaScriptEngine.Test.Auto/MsieJavaScriptEngine.Test.Auto.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Auto Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>beta1</VersionSuffix>
6+
<VersionSuffix>beta2</VersionSuffix>
77
<TargetFrameworks>net40;net451;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.9</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

test/MsieJavaScriptEngine.Test.ChakraActiveScript/MsieJavaScriptEngine.Test.ChakraActiveScript.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra ActiveScript Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>beta1</VersionSuffix>
6+
<VersionSuffix>beta2</VersionSuffix>
77
<TargetFrameworks>net40;net451</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

test/MsieJavaScriptEngine.Test.ChakraEdgeJsRt/MsieJavaScriptEngine.Test.ChakraEdgeJsRt.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra Edge JsRT Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>beta1</VersionSuffix>
6+
<VersionSuffix>beta2</VersionSuffix>
77
<TargetFrameworks>net40;net451;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.9</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

test/MsieJavaScriptEngine.Test.ChakraIeJsRt/MsieJavaScriptEngine.Test.ChakraIeJsRt.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra IE JsRT Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>beta1</VersionSuffix>
6+
<VersionSuffix>beta2</VersionSuffix>
77
<TargetFrameworks>net40;net451;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.9</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

test/MsieJavaScriptEngine.Test.Classic/MsieJavaScriptEngine.Test.Classic.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Classic Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>beta1</VersionSuffix>
6+
<VersionSuffix>beta2</VersionSuffix>
77
<TargetFrameworks>net40;net451</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

test/MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Common Tests</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>beta1</VersionSuffix>
6+
<VersionSuffix>beta2</VersionSuffix>
77
<TargetFrameworks>net40;net451;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.9</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)