Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Nov 16, 2018
1 parent c586cfc commit 1df3f2f
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 10 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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”

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<sup>* - 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).<sup>
<sup>* - 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).<sup>

If you need support for other operating systems, then you should read the [“Building LibSass”](#building-libsass) section.

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

<PropertyGroup>
<Product>LibSass Host: Logic for Samples</Product>
<VersionPrefix>1.1.9</VersionPrefix>
<VersionPrefix>1.2.0</VersionPrefix>
<TargetFrameworks>net40-client;net451;netstandard1.3;netstandard2.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>LibSass Host: Sample .NET Core 1.0 Console Application</Product>
<VersionPrefix>1.1.9</VersionPrefix>
<VersionPrefix>1.2.0</VersionPrefix>
<TargetFramework>netcoreapp1.0</TargetFramework>
<RuntimeFrameworkVersion>1.0.13</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>LibSass Host: Sample .NET Core 1.0 Full Console Application</Product>
<VersionPrefix>1.1.9</VersionPrefix>
<VersionPrefix>1.2.0</VersionPrefix>
<TargetFramework>net451</TargetFramework>
<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>LibSass Host: Sample .NET Core 2.0 Console Application</Product>
<VersionPrefix>1.1.9</VersionPrefix>
<VersionPrefix>1.2.0</VersionPrefix>
<TargetFramework>netcoreapp2.0</TargetFramework>
<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>LibSass Host: Common Tests</Product>
<VersionPrefix>1.1.9</VersionPrefix>
<VersionPrefix>1.2.0</VersionPrefix>
<TargetFrameworks>net452;net471;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.13</RuntimeFrameworkVersion>
<OutputType>Library</OutputType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>LibSass Host: Tests for Compiler with File Manager</Product>
<VersionPrefix>1.1.9</VersionPrefix>
<VersionPrefix>1.2.0</VersionPrefix>
<TargetFrameworks>net452;net471;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.13</RuntimeFrameworkVersion>
<OutputType>Library</OutputType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>LibSass Host: Tests for Compiler without File Manager</Product>
<VersionPrefix>1.1.9</VersionPrefix>
<VersionPrefix>1.2.0</VersionPrefix>
<TargetFrameworks>net452;net471;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.13</RuntimeFrameworkVersion>
<OutputType>Library</OutputType>
Expand Down

0 comments on commit 1df3f2f

Please sign in to comment.