Skip to content

Commit d0100e9

Browse files
committed
Version 2.0.0
1 parent 32b61fb commit d0100e9

4 files changed

Lines changed: 22 additions & 4 deletions

File tree

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.0.0 - April 3, 2019
5+
* 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
6+
* Added a `GetEstimatedOutputLength` static method that can be used to calculate the capacity of string builder
7+
* Added support of .NET Framework 4.5 and .NET Standard 2.0
8+
49
## v1.1.3 - March 25, 2017
510
* Added support of .NET Core 1.0.4
611
* Downgraded .NET Standard version from 1.1 to 1.0

DouglasCrockford.JsMin.sln

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,26 @@ Microsoft Visual Studio Solution File, Format Version 12.00
44
VisualStudioVersion = 15.0.26228.4
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B9F90C7A-C39E-48AA-B959-0C163ABFDED3}"
7+
ProjectSection(SolutionItems) = preProject
8+
CHANGELOG.md = CHANGELOG.md
9+
global.json = global.json
10+
LICENSE.txt = LICENSE.txt
11+
README.md = README.md
12+
EndProjectSection
713
EndProject
8-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{06134ABE-D9A1-4D4D-9DBB-9187A4709227}"
14+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{D0E7B694-5777-463A-9504-CA0E87C941B2}"
15+
ProjectSection(SolutionItems) = preProject
16+
build\common.props = build\common.props
17+
build\net40-client-target.props = build\net40-client-target.props
18+
build\nuget-common.props = build\nuget-common.props
19+
EndProjectSection
920
EndProject
10-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{67E56EE9-75BA-4CDE-8F7A-CDFCC1FC4447}"
21+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{06134ABE-D9A1-4D4D-9DBB-9187A4709227}"
1122
EndProject
1223
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DouglasCrockford.JsMin", "src\DouglasCrockford.JsMin\DouglasCrockford.JsMin.csproj", "{6043ADBE-EA02-45F2-AB24-1683E367DD88}"
1324
EndProject
25+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{67E56EE9-75BA-4CDE-8F7A-CDFCC1FC4447}"
26+
EndProject
1427
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DouglasCrockford.JsMin.Test", "test\DouglasCrockford.JsMin.Test\DouglasCrockford.JsMin.Test.csproj", "{07D76AA7-017F-4E75-A180-08E620F1B17A}"
1528
EndProject
1629
Global

src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.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</Product>
5-
<VersionPrefix>1.1.3</VersionPrefix>
5+
<VersionPrefix>2.0.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>

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>1.1.3</VersionPrefix>
5+
<VersionPrefix>2.0.0</VersionPrefix>
66
<TargetFrameworks>net40;net45;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
77
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.15</RuntimeFrameworkVersion>
88
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)