Skip to content

Commit ef36672

Browse files
committed
Version 2.5.5
1 parent a16d359 commit ef36672

File tree

23 files changed

+41
-25
lines changed

23 files changed

+41
-25
lines changed

CHANGELOG.md

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

4+
## v2.5.5 - November 6, 2018
5+
* `StringBuilderPool` class has become public
6+
* Improved performance of attributes generation in XML minifier
7+
* In WebMarkupMin.MsAjax, WebMarkupMin.Yui and WebMarkupMin.NUglify improved performance of minifier-adapters
8+
* In WebMarkupMin.MsAjax and WebMarkupMin.NUglify in configuration settings of CSS and JS minifiers was added one new property - `WarningLevel` (default `0`)
9+
* In WebMarkupMin.Yui in configuration settings of JS minifier was added one new property - `WarningLevel` (default `0`)
10+
411
## v2.5.4 - October 24, 2018
512
* Fixed a error that occurred when removing quotes from attribute with an empty value
613
* `RemoveEndingSemicolon` method of `Utils` class was renamed to the `RemoveEndingSemicolons` (implementation has also been changed)

samples/SharedData/text-content/change-log.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<p>An overview of new features and fixes:</p>
22

3+
<h3>2.5.5 - November 6, 2018</h3>
4+
<ul>
5+
<li><code>StringBuilderPool</code> class has become public</li>
6+
<li>Improved performance of attributes generation in XML minifier</li>
7+
<li>In WebMarkupMin.MsAjax, WebMarkupMin.Yui and WebMarkupMin.NUglify improved performance of minifier-adapters</li>
8+
<li>In WebMarkupMin.MsAjax and WebMarkupMin.NUglify in configuration settings of CSS and JS minifiers was added one new property - <code>WarningLevel</code> (default <code>0</code>)</li>
9+
<li>In WebMarkupMin.Yui in configuration settings of JS minifier was added one new property - <code>WarningLevel</code> (default <code>0</code>)</li>
10+
</ul>
11+
312
<h3>2.5.4 - October 24, 2018</h3>
413
<ul>
514
<li>Fixed a error that occurred when removing quotes from attribute with an empty value</li>

samples/WebMarkupMin.Sample.AspNet4.Mvc4/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("d94caf32-2855-453e-a282-60f6b5cc7955")]
1515

16-
[assembly: AssemblyVersion("2.5.4.0")]
17-
[assembly: AssemblyFileVersion("2.5.4.0")]
16+
[assembly: AssemblyVersion("2.5.5.0")]
17+
[assembly: AssemblyFileVersion("2.5.5.0")]

samples/WebMarkupMin.Sample.AspNet4.Mvc4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "webmarkupmin.sample.aspnet4.mvc4",
33
"private": true,
4-
"version": "2.5.4",
4+
"version": "2.5.5",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

samples/WebMarkupMin.Sample.AspNet45.WebForms/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("ead85e04-c167-496e-ad08-476c85e44289")]
1515

16-
[assembly: AssemblyVersion("2.5.4.0")]
17-
[assembly: AssemblyFileVersion("2.5.4.0")]
16+
[assembly: AssemblyVersion("2.5.5.0")]
17+
[assembly: AssemblyFileVersion("2.5.5.0")]

samples/WebMarkupMin.Sample.AspNetCore1.Mvc1/WebMarkupMin.Sample.AspNetCore1.Mvc1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>Web Markup Minifier: Sample ASP.NET Core 1.0 MVC 1 Site</Product>
5-
<VersionPrefix>2.5.4</VersionPrefix>
5+
<VersionPrefix>2.5.5</VersionPrefix>
66
<TargetFramework>netcoreapp1.0</TargetFramework>
77
<RuntimeFrameworkVersion>1.0.13</RuntimeFrameworkVersion>
88
<OutputType>Exe</OutputType>

samples/WebMarkupMin.Sample.AspNetCore1.Mvc1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "webmarkupmin.sample.aspnetcore1.mvc1",
33
"private": true,
4-
"version": "2.5.4",
4+
"version": "2.5.5",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

samples/WebMarkupMin.Sample.AspNetCore1Full.Mvc1/WebMarkupMin.Sample.AspNetCore1Full.Mvc1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>Web Markup Minifier: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
5-
<VersionPrefix>2.5.4</VersionPrefix>
5+
<VersionPrefix>2.5.5</VersionPrefix>
66
<TargetFramework>net452</TargetFramework>
77
<OutputType>Exe</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/WebMarkupMin.Sample.AspNetCore1Full.Mvc1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "webmarkupmin.sample.aspnetcore1full.mvc1",
33
"private": true,
4-
"version": "2.5.4",
4+
"version": "2.5.5",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

samples/WebMarkupMin.Sample.AspNetCore2.Mvc2/WebMarkupMin.Sample.AspNetCore2.Mvc2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>Web Markup Minifier: Sample ASP.NET Core 2.0 MVC 2 Site</Product>
5-
<VersionPrefix>2.5.4</VersionPrefix>
5+
<VersionPrefix>2.5.5</VersionPrefix>
66
<TargetFramework>netcoreapp2.0</TargetFramework>
77
<OutputType>Exe</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)