Skip to content

Commit e25763f

Browse files
committed
Version 2.15.1
1 parent b272f00 commit e25763f

File tree

29 files changed

+51
-30
lines changed

29 files changed

+51
-30
lines changed

CHANGELOG.md

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

4+
## v2.15.1 - October 11, 2023
5+
* In WebMarkupMin.NUglify:
6+
* Added support of the NUglify version 1.21.0
7+
* In configuration settings of CSS minifier was added one new property - `AbbreviateHexColor` (default `true`)
8+
* In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.23
9+
* In WebMarkupMin.AspNetCore7 added support for the ASP.NET Core 7.0.12
10+
* In WebMarkupMin.AspNetCore8 added support for the ASP.NET Core 8 RC2
11+
412
## v2.15.0 - October 6, 2023
513
* In ASP.NET Core extensions was improved a message text of the “Unable to find the required services” error
614
* In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.22

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

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

3+
<h3>2.15.1 - October 11, 2023</h3>
4+
<ul>
5+
<li>In WebMarkupMin.NUglify:
6+
<ul>
7+
<li>Added support of the NUglify version 1.21.0</li>
8+
<li>In configuration settings of CSS minifier was added one new property - <code>AbbreviateHexColor</code> (default <code>true</code>)</li>
9+
</ul>
10+
</li>
11+
<li>In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.23</li>
12+
<li>In WebMarkupMin.AspNetCore7 added support for the ASP.NET Core 7.0.12</li>
13+
<li>In WebMarkupMin.AspNetCore8 added support for the ASP.NET Core 8 RC2</li>
14+
</ul>
15+
316
<h3>2.15.0 - October 6, 2023</h3>
417
<ul>
518
<li>In ASP.NET Core extensions was improved a message text of the “Unable to find the required services” error</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.15.0.0")]
17-
[assembly: AssemblyFileVersion("2.15.0.0")]
16+
[assembly: AssemblyVersion("2.15.1.0")]
17+
[assembly: AssemblyFileVersion("2.15.1.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.15.0",
4+
"version": "2.15.1",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.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.15.0.0")]
17-
[assembly: AssemblyFileVersion("2.15.0.0")]
16+
[assembly: AssemblyVersion("2.15.1.0")]
17+
[assembly: AssemblyFileVersion("2.15.1.0")]

samples/WebMarkupMin.Sample.AspNetCore.Infrastructure/WebMarkupMin.Sample.AspNetCore.Infrastructure.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: Infrastructure for ASP.NET Core Samples</Product>
5-
<VersionPrefix>2.15.0</VersionPrefix>
5+
<VersionPrefix>2.15.1</VersionPrefix>
66
<TargetFrameworks>net452;netstandard1.6;netcoreapp2.1;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
77
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.1</NetStandardImplicitPackageVersion>
88
<OutputType>Library</OutputType>

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.15.0</VersionPrefix>
5+
<VersionPrefix>2.15.1</VersionPrefix>
66
<TargetFramework>netcoreapp1.0</TargetFramework>
77
<RuntimeFrameworkVersion>1.0.16</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.15.0",
4+
"version": "2.15.1",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.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.15.0</VersionPrefix>
5+
<VersionPrefix>2.15.1</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.15.0",
4+
"version": "2.15.1",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.0",

0 commit comments

Comments
 (0)