Skip to content

Commit ea6a33f

Browse files
committed
Version 2.0.0 Beta 1
1 parent 50d13f3 commit ea6a33f

File tree

10 files changed

+20
-18
lines changed

10 files changed

+20
-18
lines changed

CHANGELOG.md

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

4+
## September 9, 2016 - v2.0.0 Beta 1
5+
* Added the `CollectGarbage` method
6+
47
## September 3, 2016 - v2.0.0 Alpha 1
58
* Added support of .NET Core 1.0 (only supported `ChakraIeJsRt` and `ChakraEdgeJsRt` modes) and .NET Framework 4.5.1
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.0-alpha1</version>
5+
<version>2.0.0-beta1</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>Added support of .NET Core 1.0 (only supported `ChakraIeJsRt` and `ChakraEdgeJsRt` modes) and .NET Framework 4.5.1.</releaseNotes>
15+
<releaseNotes>Added the `CollectGarbage` 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

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

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

@@ -21,8 +21,7 @@
2121
=============
2222
RELEASE NOTES
2323
=============
24-
Added support of .NET Core 1.0 (only supported `ChakraIeJsRt` and
25-
`ChakraEdgeJsRt` modes) and .NET Framework 4.5.1.
24+
Added the `CollectGarbage` method.
2625

2726
============
2827
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-alpha1",
2+
"version": "2.0.0-beta1",
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-alpha1",
2+
"version": "2.0.0-beta1",
33

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.0-alpha1"
5+
"MsieJavaScriptEngine.Test.Common": "2.0.0-beta1"
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-alpha1",
2+
"version": "2.0.0-beta1",
33

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.0-alpha1"
5+
"MsieJavaScriptEngine.Test.Common": "2.0.0-beta1"
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-alpha1",
2+
"version": "2.0.0-beta1",
33

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.0-alpha1"
5+
"MsieJavaScriptEngine.Test.Common": "2.0.0-beta1"
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-alpha1",
2+
"version": "2.0.0-beta1",
33

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.0-alpha1"
5+
"MsieJavaScriptEngine.Test.Common": "2.0.0-beta1"
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-alpha1",
2+
"version": "2.0.0-beta1",
33

44
"dependencies": {
5-
"MsieJavaScriptEngine.Test.Common": "2.0.0-alpha1"
5+
"MsieJavaScriptEngine.Test.Common": "2.0.0-beta1"
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-alpha1",
2+
"version": "2.0.0-beta1",
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-alpha1"
8+
"MsieJavaScriptEngine": "2.0.0-beta1"
99
},
1010

1111
"buildOptions": {

0 commit comments

Comments
 (0)