Skip to content

Commit 559b7bd

Browse files
committed
Version 2.1.0
1 parent e364f98 commit 559b7bd

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

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

4+
## v2.1.0 - October 31, 2019
5+
* JSMin was updated to version of October 30, 2019
6+
* The `GetEstimatedOutputLength` method is deprecated. Use a length of input string or any other suitable value instead
7+
* Enabled a SourceLink in NuGet package
8+
49
## v2.0.0 - April 3, 2019
510
* Added an overloaded version of the `Minify` method that takes a instance of string builder. This will allow to integrate minifier with the external string builder pools
611
* Added a `GetEstimatedOutputLength` static method that can be used to calculate the capacity of string builder

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
JSMin for .Net [![NuGet version](http://img.shields.io/nuget/v/DouglasCrockford.JsMin.svg)](https://www.nuget.org/packages/DouglasCrockford.JsMin/) [![Download count](https://img.shields.io/nuget/dt/DouglasCrockford.JsMin.svg)](https://www.nuget.org/packages/DouglasCrockford.JsMin/)
22
==============
33

4-
JSMin.NET is a .NET port of the [Douglas Crockford's JSMin](http://github.com/douglascrockford/JSMin).
4+
JSMin.NET is a .NET port of the [Douglas Crockford's JSMin](https://github.com/douglascrockford/JSMin).
55

66
## Installation
77
This library can be installed through NuGet - [http://nuget.org/packages/DouglasCrockford.JsMin](http://nuget.org/packages/DouglasCrockford.JsMin).
@@ -51,7 +51,7 @@ Then we minify a JavaScript code by using of the `Minify` method and output its
5151
In addition, we provide handling of the <code title="DouglasCrockford.JsMin.JsMinificationException">JsMinificationException</code> exception.
5252

5353
## License
54-
[Douglas Crockford's License](https://github.com/Taritsyn/JSMin.NET/blob/master/LICENSE)
54+
[Douglas Crockford's License](https://github.com/Taritsyn/JSMin.NET/blob/master/LICENSE.txt)
5555

5656
## Who's Using JSMin for .Net
5757
If you use the JSMin for .Net in some project, please send me a message so I can include it in this list:

src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.csproj

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

33
<PropertyGroup>
44
<Product>JSMin for .NET</Product>
5-
<VersionPrefix>2.0.0</VersionPrefix>
5+
<VersionPrefix>2.1.0</VersionPrefix>
66
<TargetFrameworks>net40-client;net45;netstandard1.0;netstandard2.0</TargetFrameworks>
77
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.0' ">1.6.0</NetStandardImplicitPackageVersion>
88
<OutputType>Library</OutputType>
@@ -14,7 +14,7 @@
1414
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1515
<Title>$(Product)</Title>
1616
<Authors>Andrey Taritsyn</Authors>
17-
<Description>JSMin.NET is a .NET port of the Douglas Crockford's JSMin (http://github.com/douglascrockford/JSMin).</Description>
17+
<Description>JSMin.NET is a .NET port of the Douglas Crockford's JSMin (https://github.com/douglascrockford/JSMin).</Description>
1818
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
1919
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2020
<PackageProjectUrl>https://github.com/Taritsyn/JSMin.NET</PackageProjectUrl>

src/DouglasCrockford.JsMin/readme.txt

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

22

33
--------------------------------------------------------------------------------
4-
README file for JSMin for .Net v1.1.3
4+
README file for JSMin for .NET v2.1.0
55

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

@@ -12,7 +12,7 @@
1212
DESCRIPTION
1313
===========
1414
A .NET port of the Douglas Crockford's JSMin
15-
(http://github.com/douglascrockford/JSMin).
15+
(https://github.com/douglascrockford/JSMin).
1616

1717
=============
1818
RELEASE NOTES

test/DouglasCrockford.JsMin.Test/DouglasCrockford.JsMin.Test.csproj

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

33
<PropertyGroup>
44
<Product>JSMin for .NET: Tests</Product>
5-
<VersionPrefix>2.0.0</VersionPrefix>
5+
<VersionPrefix>2.1.0</VersionPrefix>
66
<TargetFrameworks>net40;net45;netcoreapp1.0;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
77
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.16</RuntimeFrameworkVersion>
88
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)