Skip to content

Commit 0b66bc4

Browse files
committed
Version 2.2.0
1 parent 3b3daee commit 0b66bc4

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

CHANGELOG.md

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

4+
## v2.2.0 - February 27, 2026
5+
* JSMin was updated to version of February 25, 2026
6+
* Changed a implementation of the `StringBuilder.TrimStart` extension method
7+
* Performed a migration to the modern C# null/not-null checks
8+
* Added support for .NET 10
9+
* In the `lock` statements for .NET 10 target now uses a instances of the `System.Threading.Lock` class
10+
* Added support for nullable reference types
11+
412
## v2.1.0 - October 31, 2019
513
* JSMin was updated to version of October 30, 2019
614
* The `GetEstimatedOutputLength` method is deprecated. Use a length of input string or any other suitable value instead

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
JsMinifier.cs
22
2026-02-26
33

4-
Copyright (C) 2013-2019 Andrey Taritsyn (www.taritsyn.ru)
4+
Copyright (C) 2013-2026 Andrey Taritsyn (www.taritsyn.ru)
55

66
jsmin.c
77
2026-02-25

build/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Copyright>Copyright © 2013-2019 Andrey Taritsyn</Copyright>
3+
<Copyright>Copyright © 2013-2026 Andrey Taritsyn</Copyright>
44
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
55
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
66
<LangVersion>14.0</LangVersion>

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>2.1.0</VersionPrefix>
5+
<VersionPrefix>2.2.0</VersionPrefix>
66
<TargetFrameworks>net40-client;net45;netstandard1.0;netstandard2.0;net10.0</TargetFrameworks>
77
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.0' ">1.6.0</NetStandardImplicitPackageVersion>
88
<OutputType>Library</OutputType>

src/DouglasCrockford.JsMin/readme.txt

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

22

33
--------------------------------------------------------------------------------
4-
README file for JSMin for .NET v2.1.0
4+
README file for JSMin for .NET v2.2.0
55

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

8-
Copyright (c) 2013-2019 Andrey Taritsyn - http://www.taritsyn.ru
8+
Copyright (c) 2013-2026 Andrey Taritsyn - http://www.taritsyn.ru
99

1010

1111
===========

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.1.0</VersionPrefix>
5+
<VersionPrefix>2.2.0</VersionPrefix>
66
<TargetFrameworks>net462;net8.0;net9.0;net10.0</TargetFrameworks>
77
<OutputType>Library</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)