Skip to content

Commit 2e65b63

Browse files
committed
Version 2.2.5
1 parent d971f8a commit 2e65b63

File tree

18 files changed

+37
-32
lines changed

18 files changed

+37
-32
lines changed

CHANGELOG.md

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

4+
## v2.2.5 - December 23, 2017
5+
* Removed a redundant code
6+
* Fixed a error, that occurred in the `Classic` mode during removing the embedded host objects and types
7+
* Fixed a error, that occurred during finding the suitable method overload, that receives numeric values and interfaces as parameters, of the host object
8+
49
## v2.2.4 - August 25, 2017
510
* In ActiveScript modes now are uses the short names of error categories
611
* In `Classic` mode during debugging now script error contains a full stack trace

NuGet/MsieJavaScriptEngine.nuspec

+4-4
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>MsieJavaScriptEngine</id>
5-
<version>2.2.4</version>
5+
<version>2.2.5</version>
66
<title>MSIE JavaScript Engine for .NET</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,9 +12,9 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>This library is a .NET wrapper for working with the JavaScript engines of Internet Explorer and Edge (JsRT versions of Chakra, ActiveScript version of Chakra and Classic JavaScript Engine). Project was based on the code of SassAndCoffee.JavaScript (http://github.com/paulcbetts/SassAndCoffee), Chakra Sample Hosts (http://github.com/panopticoncentral/chakra-host) and jsrt-dotnet (http://github.com/robpaveza/jsrt-dotnet).</description>
1414
<summary>This library is a .NET wrapper for working with the JavaScript engines of Internet Explorer and Edge (JsRT versions of Chakra, ActiveScript version of Chakra and Classic JavaScript Engine).</summary>
15-
<releaseNotes>1. In ActiveScript modes now are uses the short names of error categories;
16-
2. In `Classic` mode during debugging now script error contains a full stack trace;
17-
3. In JsRT modes the compilation error messages now contains a information about the error location.</releaseNotes>
15+
<releaseNotes>1. Removed a redundant code;
16+
2. Fixed a error, that occurred in the `Classic` mode during removing the embedded host objects and types;
17+
3. Fixed a error, that occurred during finding the suitable method overload, that receives numeric values and interfaces as parameters, of the host object.</releaseNotes>
1818
<copyright>Copyright (c) 2012-2017 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1919
<language>en-US</language>
2020
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>

NuGet/readme.txt

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

22

33
--------------------------------------------------------------------------------
4-
README file for MSIE JavaScript Engine for .NET v2.2.4
4+
README file for MSIE JavaScript Engine for .NET v2.2.5
55

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

@@ -21,11 +21,11 @@
2121
=============
2222
RELEASE NOTES
2323
=============
24-
1. In ActiveScript modes now are uses the short names of error categories;
25-
2. In `Classic` mode during debugging now script error contains a full stack
26-
trace;
27-
3. In JsRT modes the compilation error messages now contains a information about
28-
the error location.
24+
1. Removed a redundant code;
25+
2. Fixed a error, that occurred in the `Classic` mode during removing the
26+
embedded host objects and types;
27+
3. Fixed a error, that occurred during finding the suitable method overload,
28+
that receives numeric values and interfaces as parameters, of the host object.
2929

3030
============
3131
PROJECT SITE

src/MsieJavaScriptEngine/ActiveScript/ActiveScriptWrapperBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ internal abstract class ActiveScriptWrapperBase : IActiveScriptWrapper
2828
/// <summary>
2929
/// Pointer to an instance of Active Script engine
3030
/// </summary>
31-
protected IntPtr _pActiveScript;
31+
private IntPtr _pActiveScript;
3232

3333
/// <summary>
3434
/// Instance of Active Script engine

src/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>2.2.4</VersionPrefix>
4+
<VersionPrefix>2.2.5</VersionPrefix>
55
<TargetFrameworks>netstandard1.3;net45</TargetFrameworks>
66
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
77
<OutputType>Library</OutputType>

src/MsieJavaScriptEngine/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
[assembly: Guid("ae6911c9-e2a9-4386-ab90-3722a9166564")]
1818
#endif
1919

20-
[assembly: AssemblyVersion("2.2.4.0")]
21-
[assembly: AssemblyFileVersion("2.2.4.0")]
20+
[assembly: AssemblyVersion("2.2.5.0")]
21+
[assembly: AssemblyFileVersion("2.2.5.0")]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>2.2.4</VersionPrefix>
4+
<VersionPrefix>2.2.5</VersionPrefix>
55
<TargetFrameworks>netcoreapp1.0;net451</TargetFrameworks>
66
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
77
<OutputType>Exe</OutputType>

test/MsieJavaScriptEngine.Test.Auto/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
[assembly: Guid("e9baa5d3-59fe-4c0f-82ee-d415ffe53903")]
1818
#endif
1919

20-
[assembly: AssemblyVersion("2.2.4.0")]
21-
[assembly: AssemblyFileVersion("2.2.4.0")]
20+
[assembly: AssemblyVersion("2.2.5.0")]
21+
[assembly: AssemblyFileVersion("2.2.5.0")]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>2.2.4</VersionPrefix>
4+
<VersionPrefix>2.2.5</VersionPrefix>
55
<TargetFramework>net451</TargetFramework>
66
<OutputType>Exe</OutputType>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

test/MsieJavaScriptEngine.Test.ChakraActiveScript/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("34feac4f-a145-465e-aa36-0eceb5242dd4")]
1515

16-
[assembly: AssemblyVersion("2.2.4.0")]
17-
[assembly: AssemblyFileVersion("2.2.4.0")]
16+
[assembly: AssemblyVersion("2.2.5.0")]
17+
[assembly: AssemblyFileVersion("2.2.5.0")]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>2.2.4</VersionPrefix>
4+
<VersionPrefix>2.2.5</VersionPrefix>
55
<TargetFrameworks>netcoreapp1.0;net451</TargetFrameworks>
66
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
77
<OutputType>Exe</OutputType>

test/MsieJavaScriptEngine.Test.ChakraEdgeJsRt/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
[assembly: Guid("ebd8a69f-5bb3-47ab-9a8d-b8f35035c278")]
1818
#endif
1919

20-
[assembly: AssemblyVersion("2.2.4.0")]
21-
[assembly: AssemblyFileVersion("2.2.4.0")]
20+
[assembly: AssemblyVersion("2.2.5.0")]
21+
[assembly: AssemblyFileVersion("2.2.5.0")]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>2.2.4</VersionPrefix>
4+
<VersionPrefix>2.2.5</VersionPrefix>
55
<TargetFrameworks>netcoreapp1.0;net451</TargetFrameworks>
66
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
77
<OutputType>Exe</OutputType>

test/MsieJavaScriptEngine.Test.ChakraIeJsRt/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
[assembly: Guid("2c54c249-206c-45f4-bd1b-6e67a07775af")]
1818
#endif
1919

20-
[assembly: AssemblyVersion("2.2.4.0")]
21-
[assembly: AssemblyFileVersion("2.2.4.0")]
20+
[assembly: AssemblyVersion("2.2.5.0")]
21+
[assembly: AssemblyFileVersion("2.2.5.0")]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>2.2.4</VersionPrefix>
4+
<VersionPrefix>2.2.5</VersionPrefix>
55
<TargetFramework>net451</TargetFramework>
66
<OutputType>Exe</OutputType>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

test/MsieJavaScriptEngine.Test.Classic/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("d0f98404-f422-4cab-82a7-6edfce1514d2")]
1515

16-
[assembly: AssemblyVersion("2.2.4.0")]
17-
[assembly: AssemblyFileVersion("2.2.4.0")]
16+
[assembly: AssemblyVersion("2.2.5.0")]
17+
[assembly: AssemblyFileVersion("2.2.5.0")]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>2.2.4</VersionPrefix>
4+
<VersionPrefix>2.2.5</VersionPrefix>
55
<TargetFrameworks>netcoreapp1.0;net451</TargetFrameworks>
66
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
77
<OutputType>Exe</OutputType>

test/MsieJavaScriptEngine.Test.Common/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
[assembly: Guid("dad7743e-f458-4009-b96d-26ebcf5146f0")]
1818
#endif
1919

20-
[assembly: AssemblyVersion("2.2.4.0")]
21-
[assembly: AssemblyFileVersion("2.2.4.0")]
20+
[assembly: AssemblyVersion("2.2.5.0")]
21+
[assembly: AssemblyFileVersion("2.2.5.0")]

0 commit comments

Comments
 (0)