Skip to content

Commit d25d1d2

Browse files
committed
Version 2.1.0
1 parent d29aab1 commit d25d1d2

File tree

17 files changed

+47
-40
lines changed

17 files changed

+47
-40
lines changed

CHANGELOG.md

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

4+
## December 19, 2016 - v2.1.0
5+
* Added support of .NET Core 1.0.3
6+
* Downgraded .NET Framework version from 4.5.1 to 4.5
7+
* Now when you call the overloaded version of the `ExecuteResource` method, that takes the type, need to pass the resource name without the namespace
8+
* Fixed a error “Out of stack space”
9+
* JSON2 library was updated to version of October 28, 2016
10+
411
## December 2, 2016 - v2.0.2
512
* Another attempt to prevent occurrence of the access violation exception in the `CallFunction` method
613

NuGet/MsieJavaScriptEngine.nuspec

+6-6
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.2</version>
5+
<version>2.1.0</version>
66
<title>MSIE JavaScript Engine for .NET</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,11 +12,11 @@
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. Now when you call the overloaded version of the `ExecuteResource` method, that takes the type, need to pass the resource name without the namespace;
16-
2. Fixed a error “Out of stack space”;
17-
3. JSON2 library was updated to version of October 28, 2016;
18-
4. Downgraded .NET Framework version from 4.5.1 to 4.5;
19-
5. Added support of .NET Core 1.0.3.</releaseNotes>
15+
<releaseNotes>1. Added support of .NET Core 1.0.3;
16+
2. Downgraded .NET Framework version from 4.5.1 to 4.5;
17+
3. Now when you call the overloaded version of the `ExecuteResource` method, that takes the type, need to pass the resource name without the namespace;
18+
4. Fixed a error “Out of stack space”;
19+
5. JSON2 library was updated to version of October 28, 2016.</releaseNotes>
2020
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2121
<language>en-US</language>
2222
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>

NuGet/readme.txt

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

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

@@ -21,12 +21,12 @@
2121
=============
2222
RELEASE NOTES
2323
=============
24-
1. Now when you call the overloaded version of the `ExecuteResource` method, that
25-
takes the type, need to pass the resource name without the namespace;
26-
2. Fixed a error “Out of stack space”;
27-
3. JSON2 library was updated to version of October 28, 2016;
28-
4. Downgraded .NET Framework version from 4.5.1 to 4.5;
29-
5. Added support of .NET Core 1.0.3.
24+
1. Added support of .NET Core 1.0.3;
25+
2. Downgraded .NET Framework version from 4.5.1 to 4.5;
26+
3. Now when you call the overloaded version of the `ExecuteResource` method,
27+
that takes the type, need to pass the resource name without the namespace;
28+
4. Fixed a error “Out of stack space”;
29+
5. JSON2 library was updated to version of October 28, 2016.
3030

3131
============
3232
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.2.0")]
17-
[assembly: AssemblyFileVersion("2.0.2.0")]
16+
[assembly: AssemblyVersion("2.1.0.0")]
17+
[assembly: AssemblyFileVersion("2.1.0.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.2",
2+
"version": "2.1.0",
33

44
"dependencies": {},
55

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("e9baa5d3-59fe-4c0f-82ee-d415ffe53903")]
1515

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

test/MsieJavaScriptEngine.Test.Auto/project.json

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

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.1"
5+
"MsieJavaScriptEngine.Test.Common": "2.1.0"
66
},
77

88
"buildOptions": {

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.0.1.0")]
17-
[assembly: AssemblyFileVersion("2.0.1.0")]
16+
[assembly: AssemblyVersion("2.1.0.0")]
17+
[assembly: AssemblyFileVersion("2.1.0.0")]

test/MsieJavaScriptEngine.Test.ChakraActiveScript/project.json

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

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.1"
5+
"MsieJavaScriptEngine.Test.Common": "2.1.0"
66
},
77

88
"buildOptions": {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("ebd8a69f-5bb3-47ab-9a8d-b8f35035c278")]
1515

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

test/MsieJavaScriptEngine.Test.ChakraEdgeJsRt/project.json

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

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.1"
5+
"MsieJavaScriptEngine.Test.Common": "2.1.0"
66
},
77

88
"buildOptions": {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("2c54c249-206c-45f4-bd1b-6e67a07775af")]
1515

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

test/MsieJavaScriptEngine.Test.ChakraIeJsRt/project.json

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

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.1"
5+
"MsieJavaScriptEngine.Test.Common": "2.1.0"
66
},
77

88
"buildOptions": {

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.0.1.0")]
17-
[assembly: AssemblyFileVersion("2.0.1.0")]
16+
[assembly: AssemblyVersion("2.1.0.0")]
17+
[assembly: AssemblyFileVersion("2.1.0.0")]

test/MsieJavaScriptEngine.Test.Classic/project.json

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

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.1"
5+
"MsieJavaScriptEngine.Test.Common": "2.1.0"
66
},
77

88
"buildOptions": {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("dad7743e-f458-4009-b96d-26ebcf5146f0")]
1515

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

test/MsieJavaScriptEngine.Test.Common/project.json

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

44
"dependencies": {
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.2"
8+
"MsieJavaScriptEngine": "2.1.0"
99
},
1010

1111
"buildOptions": {

0 commit comments

Comments
 (0)