diff --git a/CHANGELOG.md b/CHANGELOG.md
index 532477d..9cc6975 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/README.md b/README.md
index ed357b7..4b4a78a 100644
--- a/README.md
+++ b/README.md
@@ -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).
@@ -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 JsMinificationException
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:
diff --git a/src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.csproj b/src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.csproj
index 67c9b7e..dd88eab 100644
--- a/src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.csproj
+++ b/src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.csproj
@@ -2,7 +2,7 @@
JSMin for .NET
- 2.0.0
+ 2.1.0
net40-client;net45;netstandard1.0;netstandard2.0
1.6.0
Library
@@ -14,7 +14,7 @@
true
$(Product)
Andrey Taritsyn
- 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).
LICENSE.txt
false
https://github.com/Taritsyn/JSMin.NET
diff --git a/src/DouglasCrockford.JsMin/readme.txt b/src/DouglasCrockford.JsMin/readme.txt
index f8c4bfd..6f6233b 100644
--- a/src/DouglasCrockford.JsMin/readme.txt
+++ b/src/DouglasCrockford.JsMin/readme.txt
@@ -1,7 +1,7 @@
--------------------------------------------------------------------------------
- README file for JSMin for .Net v1.1.3
+ README file for JSMin for .NET v2.1.0
--------------------------------------------------------------------------------
@@ -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
diff --git a/test/DouglasCrockford.JsMin.Test/DouglasCrockford.JsMin.Test.csproj b/test/DouglasCrockford.JsMin.Test/DouglasCrockford.JsMin.Test.csproj
index bd3e127..570fc6e 100644
--- a/test/DouglasCrockford.JsMin.Test/DouglasCrockford.JsMin.Test.csproj
+++ b/test/DouglasCrockford.JsMin.Test/DouglasCrockford.JsMin.Test.csproj
@@ -2,7 +2,7 @@
JSMin for .NET: Tests
- 2.0.0
+ 2.1.0
net40;net45;netcoreapp1.0;netcoreapp2.1;netcoreapp3.0
1.0.16
Library