Skip to content

Commit ff2ae33

Browse files
committed
Version 2.0.0
1 parent 927ae04 commit ff2ae33

File tree

10 files changed

+24
-17
lines changed

10 files changed

+24
-17
lines changed

CHANGELOG.md

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

4+
## September 19, 2016 - v2.0.0
5+
* Added support of .NET Core 1.0.1 (only supported `ChakraIeJsRt` and `ChakraEdgeJsRt` modes) and .NET Framework 4.5.1
6+
* Added the `CollectGarbage` method
7+
48
## September 17, 2016 - v2.0.0 Beta 2
59
* Added support of .NET Core 1.0.1
610

NuGet/MsieJavaScriptEngine.nuspec

+3-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.0-beta2</version>
5+
<version>2.0.0</version>
66
<title>MSIE JavaScript Engine for .NET</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,7 +12,8 @@
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>Added support of .NET Core 1.0.1.</releaseNotes>
15+
<releaseNotes>1. Added support of .NET Core 1.0.1 (only supported `ChakraIeJsRt` and `ChakraEdgeJsRt` modes) and .NET Framework 4.5.1;
16+
2. Added the `CollectGarbage` method.</releaseNotes>
1617
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1718
<language>en-US</language>
1819
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>

NuGet/readme.txt

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

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

@@ -21,7 +21,9 @@
2121
=============
2222
RELEASE NOTES
2323
=============
24-
Added support of .NET Core 1.0.1.
24+
1. Added support of .NET Core 1.0.1 (only supported `ChakraIeJsRt` and
25+
`ChakraEdgeJsRt` modes) and .NET Framework 4.5.1;
26+
2. Added the `CollectGarbage` method.
2527

2628
============
2729
PROJECT SITE

src/MsieJavaScriptEngine/project.json

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

44
"dependencies": {},
55

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.0-beta1",
2+
"version": "2.0.0",
33

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

88
"buildOptions": {

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.0-beta1",
2+
"version": "2.0.0",
33

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

88
"buildOptions": {

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.0-beta1",
2+
"version": "2.0.0",
33

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

88
"buildOptions": {

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.0-beta1",
2+
"version": "2.0.0",
33

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

88
"buildOptions": {

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.0-beta1",
2+
"version": "2.0.0",
33

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

88
"buildOptions": {

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.0-beta1",
2+
"version": "2.0.0",
33

44
"dependencies": {
55
"dotnet-test-nunit": "3.4.0-beta-2",
66
"Microsoft.Extensions.PlatformAbstractions": "1.0.0",
77
"NUnit": "3.4.1",
8-
"MsieJavaScriptEngine": "2.0.0-beta1"
8+
"MsieJavaScriptEngine": "2.0.0"
99
},
1010

1111
"buildOptions": {

0 commit comments

Comments
 (0)