Skip to content

Commit 1f66954

Browse files
committed
Version 1.0.1
1 parent c118861 commit 1f66954

5 files changed

Lines changed: 17 additions & 8 deletions

File tree

NuGet/DouglasCrockford.JsMin.nuspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>DouglasCrockford.JsMin</id>
5-
<version>1.0.0</version>
6-
<title>JSMin.NET</title>
5+
<version>1.0.1</version>
6+
<title>JSMin for .Net</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
99
<licenseUrl>http://github.com/Taritsyn/JSMin.NET/blob/master/LICENSE</licenseUrl>
1010
<projectUrl>http://github.com/Taritsyn/JSMin.NET</projectUrl>
11+
<iconUrl>https://raw.githubusercontent.com/Taritsyn/JSMin.NET/master/images/JSMin_Logo128x128.png</iconUrl>
1112
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1213
<description>JSMin.NET is a .NET port of the Douglas Crockford's JSMin (http://github.com/douglascrockford/JSMin).</description>
1314
<summary>JSMin.NET is a .NET port of the Douglas Crockford's JSMin.</summary>
15+
<releaseNotes>1. Assembly is now targeted on the .NET Framework 4 Client Profile;
16+
2. “JSMin.NET” NuGet package renamed to “DouglasCrockford.JsMin”.</releaseNotes>
1417
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1518
<language>en-US</language>
1619
<tags>Douglas Crockford JSMin JavaScript JS Minification Minifier Minify</tags>

NuGet/readme.txt

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

22

33
----------------------------------------------------------------------
4-
README file for JSMin for .Net 1.0.0
4+
README file for JSMin for .Net v1.0.1
55

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

@@ -14,6 +14,12 @@
1414
A .NET port of the Douglas Crockford's JSMin
1515
(http://github.com/douglascrockford/JSMin).
1616

17+
=============
18+
RELEASE NOTES
19+
=============
20+
1. Assembly is now targeted on the .NET Framework 4 Client Profile;
21+
2. “JSMin.NET” NuGet package renamed to “DouglasCrockford.JsMin”.
22+
1723
=============
1824
DOCUMENTATION
1925
=============

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ JSMin for .Net
44
A .NET port of the [Douglas Crockford's JSMin](http://github.com/douglascrockford/JSMin).
55

66
#Installation
7-
This library can be installed through NuGet - [http://nuget.org/packages/JSMin.NET](http://nuget.org/packages/JSMin.NET).
7+
This library can be installed through NuGet - [http://nuget.org/packages/DouglasCrockford.JsMin](http://nuget.org/packages/DouglasCrockford.JsMin).
88

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

src/DouglasCrockford.JsMin/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("0d7b205c-e3d6-4756-9977-29a71052536b")]
1515

16-
[assembly: AssemblyVersion("1.0.0.0")]
17-
[assembly: AssemblyFileVersion("1.0.0.0")]
16+
[assembly: AssemblyVersion("1.0.1.0")]
17+
[assembly: AssemblyFileVersion("1.0.1.0")]

test/DouglasCrockford.JsMin.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("72947ee4-f2b3-42e9-a84b-9a4a5254e974")]
1515

16-
[assembly: AssemblyVersion("1.0.0.0")]
17-
[assembly: AssemblyFileVersion("1.0.0.0")]
16+
[assembly: AssemblyVersion("1.0.1.0")]
17+
[assembly: AssemblyFileVersion("1.0.1.0")]

0 commit comments

Comments
 (0)