Skip to content

Commit

Permalink
Version 3.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Aug 8, 2021
1 parent b28e520 commit 729542e
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change log
==========

## v3.0.8 - August 8, 2021
* Improved a implementation of the `Dispose` method

## v3.0.7 - March 8, 2020
* Fixed a error “Program crash after function call with too much parameters”

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2020 Andrey Taritsyn - http://www.taritsyn.ru
Copyright (c) 2012-2021 Andrey Taritsyn - http://www.taritsyn.ru

Apache License
Version 2.0, January 2004
Expand Down
2 changes: 1 addition & 1 deletion Licenses/bundler-and-minifier-license.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2015 Mads Kristensen
Copyright 2015-2020 Mads Kristensen

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Copyright>Copyright © 2012-2020 Andrey Taritsyn</Copyright>
<Copyright>Copyright © 2012-2021 Andrey Taritsyn</Copyright>
</PropertyGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'net40-client' Or '$(TargetFramework)' == 'net45' Or '$(TargetFramework)' == 'net461' ">
Expand Down
3 changes: 2 additions & 1 deletion src/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine for .NET</Product>
<VersionPrefix>3.0.7</VersionPrefix>
<VersionPrefix>3.0.8</VersionPrefix>
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
<LangVersion>7.3</LangVersion>
Expand All @@ -17,6 +17,7 @@
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/Taritsyn/MsieJavaScriptEngine</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/Taritsyn/MsieJavaScriptEngine/master/images/MsieJavaScriptEngine_Logo_128x128.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Taritsyn/MsieJavaScriptEngine</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down
4 changes: 2 additions & 2 deletions src/MsieJavaScriptEngine/readme.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@


--------------------------------------------------------------------------------
README file for MSIE JavaScript Engine for .NET v3.0.7
README file for MSIE JavaScript Engine for .NET v3.0.8

--------------------------------------------------------------------------------

Copyright (c) 2012-2020 Andrey Taritsyn - http://www.taritsyn.ru
Copyright (c) 2012-2021 Andrey Taritsyn - http://www.taritsyn.ru


===========
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Benchmarks</Product>
<VersionPrefix>3.0.7</VersionPrefix>
<VersionPrefix>3.0.8</VersionPrefix>
<TargetFrameworks>net461;netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Tests for Auto Mode</Product>
<VersionPrefix>3.0.7</VersionPrefix>
<VersionPrefix>3.0.8</VersionPrefix>
<TargetFrameworks>net40;net45;netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Tests for Chakra ActiveScript Mode</Product>
<VersionPrefix>3.0.7</VersionPrefix>
<VersionPrefix>3.0.8</VersionPrefix>
<TargetFrameworks>net40;net45</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Tests for Chakra Edge JsRT Mode</Product>
<VersionPrefix>3.0.7</VersionPrefix>
<VersionPrefix>3.0.8</VersionPrefix>
<TargetFrameworks>net40;net45;netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Tests for Chakra IE JsRT Mode</Product>
<VersionPrefix>3.0.7</VersionPrefix>
<VersionPrefix>3.0.8</VersionPrefix>
<TargetFrameworks>net40;net45;netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Tests for Classic Mode</Product>
<VersionPrefix>3.0.7</VersionPrefix>
<VersionPrefix>3.0.8</VersionPrefix>
<TargetFrameworks>net40;net45</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Common Tests</Product>
<VersionPrefix>3.0.7</VersionPrefix>
<VersionPrefix>3.0.8</VersionPrefix>
<TargetFrameworks>net40;net45;netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down

0 comments on commit 729542e

Please sign in to comment.