From 1df3f2f4d7dd1225e927042db9146ff514fab46e Mon Sep 17 00:00:00 2001 From: Andrey Taritsyn Date: Fri, 16 Nov 2018 21:22:49 +0300 Subject: [PATCH] Version 1.2.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- .../LibSassHost.Sample.Logic.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 ++-- .../LibSassHost.Sample.NetCore1.ConsoleApp.csproj | 2 +- ...LibSassHost.Sample.NetCore1Full.ConsoleApp.csproj | 2 +- .../LibSassHost.Sample.NetCore2.ConsoleApp.csproj | 2 +- .../LibSassHost.Test.Common.csproj | 2 +- .../LibSassHost.Test.CompilerWithFileManager.csproj | 2 +- ...ibSassHost.Test.CompilerWithoutFileManager.csproj | 2 +- 10 files changed, 22 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e27d4aa..7eda641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Change log ========== +## v1.2.0 - November 16, 2018 + * Added support of the LibSass version 3.5.5 + * Now the LibSass for Windows requires the Microsoft Visual C++ Redistributable for Visual Studio 2017 + * From compilation options was removed the `AdditionalImportExtensions` property + * Fixed a error #30 “Conflict of using multiple sites in one application pool” + * Error messages have become more informative + * In the `SassException` class was added one new property - `Description` + * In the `SassСompilationException` class was added two new properties: `ErrorCode` and `SourceFragment` + * In the `SassСompilationException` class the following properties have been deprecated: `Status` and `Text` + * `Format` method of the `SassErrorHelpers` class was renamed to the `GenerateErrorDetails` + * Added support of .NET Framework 4.7.1 + ## v1.2.0 Beta 1 - September 7, 2018 * Fixed a error #30 “Conflict of using multiple sites in one application pool” diff --git a/README.md b/README.md index 93ccc4d..189c9dc 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The following packages are available: * [LibSassHost.Native.linux-x64](http://nuget.org/packages/LibSassHost.Native.linux-x64/) contains the native assemblies for Linux (x64). Only compatible with .NET Core. * [LibSassHost.Native.osx-x64](http://nuget.org/packages/LibSassHost.Native.osx-x64/) contains the native assemblies for OS X (x64). Only compatible with .NET Core. -* - Requires `api-ms-win-core-*.dll`, `api-ms-win-crt-*.dll`, `concrt140.dll`, `msvcp140.dll`, `ucrtbase.dll` and `vcruntime140.dll` assemblies from the [Microsoft Visual C++ 2015 Redistributable](https://www.microsoft.com/en-us/download/details.aspx?id=53840). +* - Requires `api-ms-win-core-*.dll`, `api-ms-win-crt-*.dll`, `concrt140.dll`, `msvcp140.dll`, `ucrtbase.dll` and `vcruntime140.dll` assemblies from the [Microsoft Visual C++ Redistributable for Visual Studio 2017](https://www.visualstudio.com/downloads/#microsoft-visual-c-redistributable-for-visual-studio-2017). If you need support for other operating systems, then you should read the [“Building LibSass”](#building-libsass) section. diff --git a/samples/LibSassHost.Sample.Logic/LibSassHost.Sample.Logic.csproj b/samples/LibSassHost.Sample.Logic/LibSassHost.Sample.Logic.csproj index 9acd426..aa48ee8 100644 --- a/samples/LibSassHost.Sample.Logic/LibSassHost.Sample.Logic.csproj +++ b/samples/LibSassHost.Sample.Logic/LibSassHost.Sample.Logic.csproj @@ -2,7 +2,7 @@ LibSass Host: Logic for Samples - 1.1.9 + 1.2.0 net40-client;net451;netstandard1.3;netstandard2.0 1.6.0 Library diff --git a/samples/LibSassHost.Sample.Net4.ConsoleApp/Properties/AssemblyInfo.cs b/samples/LibSassHost.Sample.Net4.ConsoleApp/Properties/AssemblyInfo.cs index 6e74978..50b8fdd 100644 --- a/samples/LibSassHost.Sample.Net4.ConsoleApp/Properties/AssemblyInfo.cs +++ b/samples/LibSassHost.Sample.Net4.ConsoleApp/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ [assembly: ComVisible(false)] [assembly: Guid("52b3e4f7-6d4e-4836-adb4-630f7e258f9f")] -[assembly: AssemblyVersion("1.1.9.0")] -[assembly: AssemblyFileVersion("1.1.9.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0.0")] +[assembly: AssemblyFileVersion("1.2.0.0")] \ No newline at end of file diff --git a/samples/LibSassHost.Sample.NetCore1.ConsoleApp/LibSassHost.Sample.NetCore1.ConsoleApp.csproj b/samples/LibSassHost.Sample.NetCore1.ConsoleApp/LibSassHost.Sample.NetCore1.ConsoleApp.csproj index 7fb1292..e3bcc92 100644 --- a/samples/LibSassHost.Sample.NetCore1.ConsoleApp/LibSassHost.Sample.NetCore1.ConsoleApp.csproj +++ b/samples/LibSassHost.Sample.NetCore1.ConsoleApp/LibSassHost.Sample.NetCore1.ConsoleApp.csproj @@ -2,7 +2,7 @@ LibSass Host: Sample .NET Core 1.0 Console Application - 1.1.9 + 1.2.0 netcoreapp1.0 1.0.13 Exe diff --git a/samples/LibSassHost.Sample.NetCore1Full.ConsoleApp/LibSassHost.Sample.NetCore1Full.ConsoleApp.csproj b/samples/LibSassHost.Sample.NetCore1Full.ConsoleApp/LibSassHost.Sample.NetCore1Full.ConsoleApp.csproj index e354092..fafabfa 100644 --- a/samples/LibSassHost.Sample.NetCore1Full.ConsoleApp/LibSassHost.Sample.NetCore1Full.ConsoleApp.csproj +++ b/samples/LibSassHost.Sample.NetCore1Full.ConsoleApp/LibSassHost.Sample.NetCore1Full.ConsoleApp.csproj @@ -2,7 +2,7 @@ LibSass Host: Sample .NET Core 1.0 Full Console Application - 1.1.9 + 1.2.0 net451 Exe true diff --git a/samples/LibSassHost.Sample.NetCore2.ConsoleApp/LibSassHost.Sample.NetCore2.ConsoleApp.csproj b/samples/LibSassHost.Sample.NetCore2.ConsoleApp/LibSassHost.Sample.NetCore2.ConsoleApp.csproj index c8a475a..462b11d 100644 --- a/samples/LibSassHost.Sample.NetCore2.ConsoleApp/LibSassHost.Sample.NetCore2.ConsoleApp.csproj +++ b/samples/LibSassHost.Sample.NetCore2.ConsoleApp/LibSassHost.Sample.NetCore2.ConsoleApp.csproj @@ -2,7 +2,7 @@ LibSass Host: Sample .NET Core 2.0 Console Application - 1.1.9 + 1.2.0 netcoreapp2.0 Exe true diff --git a/test/LibSassHost.Test.Common/LibSassHost.Test.Common.csproj b/test/LibSassHost.Test.Common/LibSassHost.Test.Common.csproj index c8078ba..e2a66ef 100644 --- a/test/LibSassHost.Test.Common/LibSassHost.Test.Common.csproj +++ b/test/LibSassHost.Test.Common/LibSassHost.Test.Common.csproj @@ -2,7 +2,7 @@ LibSass Host: Common Tests - 1.1.9 + 1.2.0 net452;net471;netcoreapp1.0;netcoreapp2.0 1.0.13 Library diff --git a/test/LibSassHost.Test.CompilerWithFileManager/LibSassHost.Test.CompilerWithFileManager.csproj b/test/LibSassHost.Test.CompilerWithFileManager/LibSassHost.Test.CompilerWithFileManager.csproj index 415c2d3..4949643 100644 --- a/test/LibSassHost.Test.CompilerWithFileManager/LibSassHost.Test.CompilerWithFileManager.csproj +++ b/test/LibSassHost.Test.CompilerWithFileManager/LibSassHost.Test.CompilerWithFileManager.csproj @@ -2,7 +2,7 @@ LibSass Host: Tests for Compiler with File Manager - 1.1.9 + 1.2.0 net452;net471;netcoreapp1.0;netcoreapp2.0 1.0.13 Library diff --git a/test/LibSassHost.Test.CompilerWithoutFileManager/LibSassHost.Test.CompilerWithoutFileManager.csproj b/test/LibSassHost.Test.CompilerWithoutFileManager/LibSassHost.Test.CompilerWithoutFileManager.csproj index e9a7615..f069079 100644 --- a/test/LibSassHost.Test.CompilerWithoutFileManager/LibSassHost.Test.CompilerWithoutFileManager.csproj +++ b/test/LibSassHost.Test.CompilerWithoutFileManager/LibSassHost.Test.CompilerWithoutFileManager.csproj @@ -2,7 +2,7 @@ LibSass Host: Tests for Compiler without File Manager - 1.1.9 + 1.2.0 net452;net471;netcoreapp1.0;netcoreapp2.0 1.0.13 Library