Skip to content

Commit 0deb53f

Browse files
committed
Version 1.5.0 Alpha 3
1 parent ea4e15c commit 0deb53f

File tree

4 files changed

+19
-12
lines changed

4 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Change log
22
==========
33

4+
## February 5, 2016 - v1.5.0 Alpha 3
5+
* In JavaScriptEngineSwitcher.ChakraCore added support of the `EmbedHostObject` method
6+
47
## January 16, 2016 - v1.5.0 Alpha 2
58
* Added module based on the [ChakraCore](http://github.com/Microsoft/ChakraCore). JavaScriptEngineSwitcher.ChakraCore does not yet support the `EmbedHostObject` method.
69
* In JavaScriptEngineSwitcher.ConfigurationIntelliSense updated definitions for configuration settings of MSIE JavaScript engine

NuGet/JavaScriptEngineSwitcher.ChakraCore/JavaScriptEngineSwitcher.ChakraCore.nuspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,19 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>JavaScriptEngineSwitcher.ChakraCore</id>
5-
<version>1.0.0-alpha2</version>
5+
<version>1.5.0-alpha3</version>
66
<title>JavaScript Engine Switcher for .Net: ChakraCore</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
99
<licenseUrl>http://github.com/Taritsyn/JavaScriptEngineSwitcher/blob/master/LICENSE</licenseUrl>
1010
<projectUrl>http://github.com/Taritsyn/JavaScriptEngineSwitcher</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_ChakraCore_Logo128x128.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13-
<description>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore (http://github.com/Microsoft/ChakraCore) version 1.1). Project was based on the code of Chakra-Samples (http://github.com/Microsoft/Chakra-Samples).
14-
15-
JavaScriptEngineSwitcher.ChakraCore does not yet support the `EmbedHostObject` method.
16-
13+
<description>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore (http://github.com/Microsoft/ChakraCore) version 1.1). Project was based on the code of Chakra-Samples (http://github.com/Microsoft/Chakra-Samples) and jsrt-dotnet (http://github.com/robpaveza/jsrt-dotnet).
14+
1715
For correct working of the ChakraCore require assemblies `msvcp120.dll` and `msvcr120.dll` from the Visual C++ Redistributable Packages for Visual Studio 2013.</description>
1816
<summary>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore version 1.1).</summary>
17+
<releaseNotes>Added support of the `EmbedHostObject` method (embeds a instance of simple class, structure or delegate to script code).</releaseNotes>
1918
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2019
<language>en-US</language>
2120
<tags>JavaScript ECMAScript ChakraCore</tags>
@@ -39,5 +38,6 @@ For correct working of the ChakraCore require assemblies `msvcp120.dll` and `msv
3938
<file src="readme.txt" />
4039
<file src="..\..\Licenses\chakra-core-license.txt" />
4140
<file src="..\..\Licenses\chakra-samples-license.txt" />
41+
<file src="..\..\Licenses\jsrt-dotnet-license.txt" />
4242
</files>
4343
</package>

NuGet/JavaScriptEngineSwitcher.ChakraCore/readme.txt

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
-----------------------------------------------------------------------
4-
README file for JS Engine Switcher for .Net: ChakraCore 1.0.0 Alpha 2
4+
README file for JS Engine Switcher for .Net: ChakraCore 1.5.0 Alpha 3
55

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

@@ -15,15 +15,19 @@
1515
`ChakraCoreJsEngine` (wrapper for the ChakraCore
1616
(http://github.com/Microsoft/ChakraCore) version 1.1). Project was
1717
based on the code of Chakra-Samples
18-
(http://github.com/Microsoft/Chakra-Samples).
19-
20-
JavaScriptEngineSwitcher.ChakraCore does not yet support the
21-
`EmbedHostObject` method.
18+
(http://github.com/Microsoft/Chakra-Samples) and jsrt-dotnet
19+
(http://github.com/robpaveza/jsrt-dotnet).
2220

2321
For correct working of the ChakraCore require assemblies `msvcp120.dll`
2422
and `msvcr120.dll` from the Visual C++ Redistributable Packages for
2523
Visual Studio 2013.
2624

25+
=============
26+
RELEASE NOTES
27+
=============
28+
Added support of the `EmbedHostObject` method (embeds a instance of
29+
simple class, structure or delegate to script code).
30+
2731
====================
2832
POST-INSTALL ACTIONS
2933
====================

src/JavaScriptEngineSwitcher.ChakraCore/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("07d1fd39-469c-44ae-bf0f-4116f8887669")]
1515

16-
[assembly: AssemblyVersion("1.0.0.0")]
17-
[assembly: AssemblyFileVersion("1.0.0.0")]
16+
[assembly: AssemblyVersion("1.5.0.0")]
17+
[assembly: AssemblyFileVersion("1.5.0.0")]

0 commit comments

Comments
 (0)