Skip to content

Commit f2cbeba

Browse files
committed
Version 2.0.2
1 parent 3a69a4d commit f2cbeba

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

CHANGELOG.md

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

4+
## December 2, 2016 - v2.0.2
5+
* Another attempt to prevent occurrence of the access violation exception in the `CallFunction` method
6+
47
## November 8, 2016 - v2.0.1
58
* All exceptions made serializable
69

NuGet/MsieJavaScriptEngine.nuspec

+2-2
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.0.1</version>
5+
<version>2.0.2</version>
66
<title>MSIE JavaScript Engine for .NET</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,7 +12,7 @@
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>All exceptions made serializable.</releaseNotes>
15+
<releaseNotes>Another attempt to prevent occurrence of the access violation exception in the `CallFunction` method.</releaseNotes>
1616
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1717
<language>en-US</language>
1818
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>

NuGet/readme.txt

+3-2
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.0.1
4+
README file for MSIE JavaScript Engine for .NET v2.0.2
55

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

@@ -21,7 +21,8 @@
2121
=============
2222
RELEASE NOTES
2323
=============
24-
All exceptions made serializable.
24+
Another attempt to prevent occurrence of the access violation exception in the
25+
`CallFunction` method.
2526

2627
============
2728
PROJECT SITE

src/MsieJavaScriptEngine/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("ae6911c9-e2a9-4386-ab90-3722a9166564")]
1515

16-
[assembly: AssemblyVersion("2.0.1.0")]
17-
[assembly: AssemblyFileVersion("2.0.1.0")]
16+
[assembly: AssemblyVersion("2.0.2.0")]
17+
[assembly: AssemblyFileVersion("2.0.2.0")]
1818

1919
[module: DefaultCharSet(CharSet.Unicode)]

src/MsieJavaScriptEngine/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.1",
2+
"version": "2.0.2",
33

44
"dependencies": {},
55

test/MsieJavaScriptEngine.Test.Common/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"dotnet-test-nunit": "3.4.0-beta-3",
66
"Microsoft.Extensions.PlatformAbstractions": "1.0.0",
77
"NUnit": "3.4.1",
8-
"MsieJavaScriptEngine": "2.0.1"
8+
"MsieJavaScriptEngine": "2.0.2"
99
},
1010

1111
"buildOptions": {

0 commit comments

Comments
 (0)