Skip to content

Commit ae61747

Browse files
committed
Version 2.0.0 RC 9
1 parent c43fc32 commit ae61747

File tree

11 files changed

+40
-18
lines changed

11 files changed

+40
-18
lines changed

CHANGELOG.md

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

4+
## June 13, 2016 - v2.0.0 RC 9
5+
* `rb` and `rtc` tags are now considered as optional end tags
6+
* In configuration settings of HTML minifier was added one new property - `PreservableOptionalTagList` (default is empty)
7+
* Fixed a [error #8](https://github.com/Taritsyn/WebMarkupMin/issues/8) «MarkupMinificationException when having nested SVG element inside an SVG»
8+
* Fixed a [error #9](https://github.com/Taritsyn/WebMarkupMin/issues/9) «<div>${{something}}</div> incorrectly minified»
9+
410
## May 19, 2016 - v2.0.0 RC 8
511
* Added support of .NET Core and ASP.NET Core 1.0 RC 2
612
* WebMarkupMin.AspNet5 package has been replaced by WebMarkupMin.AspNetCore1 package

nuget/WebMarkupMin.Core/WebMarkupMin.Core.nuspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>WebMarkupMin.Core</id>
5-
<version>2.0.0-rc8</version>
5+
<version>2.0.0-rc9</version>
66
<title>Web Markup Minifier: Core</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -18,7 +18,10 @@ Minification of markup produces by removing extra whitespaces, comments and redu
1818

1919
Also supports minification of views of popular JavaScript template engines: KnockoutJS, Kendo UI MVVM and AngularJS 1.X.</description>
2020
<summary>The Web Markup Minifier (abbreviated WebMarkupMin) is a .NET library that contains a set of markup minifiers. The objective of this project is to improve the performance of web applications by reducing the size of HTML, XHTML and XML code.</summary>
21-
<releaseNotes>Added support of .NET Core 1.0 RC 2.</releaseNotes>
21+
<releaseNotes>1. `rb` and `rtc` tags are now considered as optional end tags;
22+
2. In configuration settings of HTML minifier was added one new property - `PreservableOptionalTagList` (default is empty);
23+
3. Fixed a error #8 «MarkupMinificationException when having nested SVG element inside an SVG»;
24+
4. Fixed a error #9 «&lt;div&gt;${{something}}&lt;/div&gt; incorrectly minified».</releaseNotes>
2225
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2326
<language>en-US</language>
2427
<tags>WebMarkupMin Markup HTML XHTML XML Minification Minifier Minify Performance Optimization Compression</tags>

nuget/WebMarkupMin.Core/readme.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for Web Markup Minifier: Core v2.0.0 RC 8
4+
README file for Web Markup Minifier: Core v2.0.0 RC 9
55

66
--------------------------------------------------------------------------------
77

@@ -44,7 +44,12 @@
4444
=============
4545
RELEASE NOTES
4646
=============
47-
Added support of .NET Core 1.0 RC 2.
47+
1. `rb` and `rtc` tags are now considered as optional end tags;
48+
2. In configuration settings of HTML minifier was added one new property -
49+
`PreservableOptionalTagList` (default is empty);
50+
3. Fixed a error #8 «MarkupMinificationException when having nested SVG element
51+
inside an SVG»;
52+
4. Fixed a error #9 «&lt;div&gt;${{something}}&lt;/div&gt; incorrectly minified».
4853

4954
=============
5055
DOCUMENTATION

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

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

3+
<h3>2.0.0 RC 9 - June 13, 2016</h3>
4+
<ul>
5+
<li><code>rb</code> and <code>rtc</code> tags are now considered as optional end tags</li>
6+
<li>In configuration settings of HTML minifier was added one new property - <code>PreservableOptionalTagList</code> (default is empty)</li>
7+
<li>Fixed a <a href="https://github.com/Taritsyn/WebMarkupMin/issues/8" target="_blank">error #8</a> «MarkupMinificationException when having nested SVG element inside an SVG»</li>
8+
<li>Fixed a <a href="https://github.com/Taritsyn/WebMarkupMin/issues/9" target="_blank">error #9</a> «&lt;div&gt;${{something}}&lt;/div&gt; incorrectly minified»</li>
9+
</ul>
10+
311
<h3>2.0.0 RC 8 - May 19, 2016</h3>
412
<ul>
513
<li>Added support of .NET Core and ASP.NET Core 1.0 RC 2</li>

samples/SharedData/text-content/contact.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p>WebMarkupMin is an open source project, created and maintained by Andrey Taritsyn.</p>
22

33
<h3>Project Site</h3>
4-
<a href="http://webmarkupmin.codeplex.com/" target="_blank">http://webmarkupmin.codeplex.com</a>
4+
<a href="https://github.com/Taritsyn/WebMarkupMin/" target="_blank">https://github.com/Taritsyn/WebMarkupMin</a>
55

66
<h3>Email</h3>
77
<p><a href="mailto:[email protected]">[email protected]</a></p>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.0-rc8",
2+
"version": "2.0.0-rc9",
33

44
"dependencies": {
55
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
@@ -22,8 +22,8 @@
2222
"type": "platform"
2323
},
2424
"WebMarkupMin.AspNetCore1": "2.0.0-rc8",
25-
"WebMarkupMin.Sample.Logic": "2.0.0-rc8",
26-
"WebMarkupMin.Sample.Resources": "2.0.0-rc8"
25+
"WebMarkupMin.Sample.Logic": "2.0.0-rc9",
26+
"WebMarkupMin.Sample.Resources": "2.0.0-rc9"
2727
},
2828

2929
"tools": {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.0-rc8",
2+
"version": "2.0.0-rc9",
33

44
"dependencies": {
55
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
@@ -18,8 +18,8 @@
1818
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
1919
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final",
2020
"WebMarkupMin.AspNetCore1": "2.0.0-rc8",
21-
"WebMarkupMin.Sample.Logic": "2.0.0-rc8",
22-
"WebMarkupMin.Sample.Resources": "2.0.0-rc8"
21+
"WebMarkupMin.Sample.Logic": "2.0.0-rc9",
22+
"WebMarkupMin.Sample.Resources": "2.0.0-rc9"
2323
},
2424

2525
"tools": {

samples/WebMarkupMin.Sample.Logic/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"version": "2.0.0-rc8",
2+
"version": "2.0.0-rc9",
33

44
"dependencies": {
55
"AutoMapper": "5.0.0-beta-1",
66
"Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final",
77
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0-rc2-final",
8-
"WebMarkupMin.Core": "2.0.0-rc8",
9-
"WebMarkupMin.Sample.Resources": "2.0.0-rc8"
8+
"WebMarkupMin.Core": "2.0.0-rc9",
9+
"WebMarkupMin.Sample.Resources": "2.0.0-rc9"
1010
},
1111

1212
"frameworks": {

samples/WebMarkupMin.Sample.Resources/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.0-rc8",
2+
"version": "2.0.0-rc9",
33

44
"dependencies": { },
55

src/WebMarkupMin.Core/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.0-rc8",
2+
"version": "2.0.0-rc9",
33

44
"frameworks": {
55
"net451": { },

0 commit comments

Comments
 (0)