Skip to content

Commit

Permalink
Version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Oct 31, 2019
1 parent e364f98 commit 559b7bd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change log
==========

## v2.1.0 - October 31, 2019
* JSMin was updated to version of October 30, 2019
* The `GetEstimatedOutputLength` method is deprecated. Use a length of input string or any other suitable value instead
* Enabled a SourceLink in NuGet package

## v2.0.0 - April 3, 2019
* 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
* Added a `GetEstimatedOutputLength` static method that can be used to calculate the capacity of string builder
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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/)
==============

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

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

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

## Who's Using JSMin for .Net
If you use the JSMin for .Net in some project, please send me a message so I can include it in this list:
Expand Down
4 changes: 2 additions & 2 deletions src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>JSMin for .NET</Product>
<VersionPrefix>2.0.0</VersionPrefix>
<VersionPrefix>2.1.0</VersionPrefix>
<TargetFrameworks>net40-client;net45;netstandard1.0;netstandard2.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.0' ">1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand All @@ -14,7 +14,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Title>$(Product)</Title>
<Authors>Andrey Taritsyn</Authors>
<Description>JSMin.NET is a .NET port of the Douglas Crockford's JSMin (http://github.com/douglascrockford/JSMin).</Description>
<Description>JSMin.NET is a .NET port of the Douglas Crockford's JSMin (https://github.com/douglascrockford/JSMin).</Description>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/Taritsyn/JSMin.NET</PackageProjectUrl>
Expand Down
4 changes: 2 additions & 2 deletions src/DouglasCrockford.JsMin/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for JSMin for .Net v1.1.3
README file for JSMin for .NET v2.1.0

--------------------------------------------------------------------------------

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

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

<PropertyGroup>
<Product>JSMin for .NET: Tests</Product>
<VersionPrefix>2.0.0</VersionPrefix>
<VersionPrefix>2.1.0</VersionPrefix>
<TargetFrameworks>net40;net45;netcoreapp1.0;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.16</RuntimeFrameworkVersion>
<OutputType>Library</OutputType>
Expand Down

0 comments on commit 559b7bd

Please sign in to comment.