Skip to content

Commit 0e45029

Browse files
Version bump
- ImageProcessor v2.3.0 - ImageProcessor.Web v4.4.0 - ImageProcessor.Web.Config v2.2.3 - ImageProcessor.Plugins.WebP v1.0.3
1 parent 2fd9a31 commit 0e45029

File tree

12 files changed

+47
-27
lines changed

12 files changed

+47
-27
lines changed

build/NuSpecs/ImageProcessor.Plugins.WebP.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>ImageProcessor.Plugins.WebP</id>
5-
<version>1.0.2.0</version>
5+
<version>1.0.3.0</version>
66
<title>ImageProcessor.Plugins.WebP</title>
77
<authors>James South</authors>
88
<owners>James South</owners>
@@ -21,7 +21,7 @@ Feedback is always welcome</description>
2121
<tags>Image Resize Crop Rotate Quality Watermark Gif Jpg Jpeg Bitmap Png Tiff WebP</tags>
2222
<dependencies>
2323
<group targetFramework=".NETFramework4.5">
24-
<dependency id="ImageProcessor" version="2.2.3.0" />
24+
<dependency id="ImageProcessor" version="2.3.0.0" />
2525
</group>
2626
</dependencies>
2727
</metadata>

build/NuSpecs/ImageProcessor.Web.Config.nuspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>ImageProcessor.Web.Config</id>
5-
<version>2.2.2.0</version>
5+
<version>2.2.3.0</version>
66
<title>ImageProcessor.Web.Config</title>
77
<authors>James South</authors>
88
<owners>James South</owners>
@@ -21,8 +21,8 @@ Feedback is always welcome</description>
2121
<tags>Image Resize Crop Rotate Quality Watermark Gif Jpg Jpeg Bitmap Png Tiff ASP Cache EXIF</tags>
2222
<dependencies>
2323
<group targetFramework=".NETFramework4.5">
24-
<dependency id="ImageProcessor" version="2.2.5.0" />
25-
<dependency id="ImageProcessor.Web" version="4.3.2.0" />
24+
<dependency id="ImageProcessor" version="2.3.0.0" />
25+
<dependency id="ImageProcessor.Web" version="4.4.0.0" />
2626
</group>
2727
</dependencies>
2828
</metadata>

build/NuSpecs/ImageProcessor.Web.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>ImageProcessor.Web</id>
5-
<version>4.3.6.0</version>
5+
<version>4.4.0.0</version>
66
<title>ImageProcessor.Web</title>
77
<authors>James South</authors>
88
<owners>James South</owners>
@@ -23,7 +23,7 @@ Feedback is always welcome</description>
2323
<tags>Image Resize Crop Rotate Quality Watermark Gif Jpg Jpeg Bitmap Png Tiff ASP Cache EXIF</tags>
2424
<dependencies>
2525
<group targetFramework=".NETFramework4.5">
26-
<dependency id="ImageProcessor" version="2.2.8.0" />
26+
<dependency id="ImageProcessor" version="2.3.0.0" />
2727
</group>
2828
</dependencies>
2929
</metadata>

build/NuSpecs/ImageProcessor.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>ImageProcessor</id>
5-
<version>2.2.8.0</version>
5+
<version>2.3.0.0</version>
66
<title>ImageProcessor</title>
77
<authors>James South</authors>
88
<owners>James South</owners>

build/build.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<projects>
22
<project>
33
<name>ImageProcessor</name>
4-
<version>2.2.8.0</version>
4+
<version>2.3.0.0</version>
55
<folder>..\src\ImageProcessor</folder>
66
<projfile>ImageProcessor.csproj</projfile>
77
<outputs>
@@ -13,7 +13,7 @@
1313

1414
<project>
1515
<name>ImageProcessor Web</name>
16-
<version>4.3.6.0</version>
16+
<version>4.4.0.0</version>
1717
<folder>..\src\ImageProcessor.Web</folder>
1818
<projfile>ImageProcessor.Web.csproj</projfile>
1919
<outputs>
@@ -24,7 +24,7 @@
2424

2525
<project>
2626
<name>ImageProcessor Web.config sample</name>
27-
<version>2.2.2.0</version>
27+
<version>2.2.3.0</version>
2828
<nuspec>ImageProcessor.Web.Config.nuspec</nuspec>
2929
</project>
3030

@@ -52,7 +52,7 @@
5252

5353
<project>
5454
<name>ImageProcessor WebP plugin</name>
55-
<version>1.0.2.0</version>
55+
<version>1.0.3.0</version>
5656
<folder>..\src\Plugins\ImageProcessor\ImageProcessor.Plugins.WebP</folder>
5757
<projfile>ImageProcessor.Plugins.WebP.csproj</projfile>
5858
<outputs>

src/ImageProcessor.Web/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
//
4141
// You can specify all the values or you can default the Build and Revision Numbers
4242
// by using the '*' as shown below:
43-
[assembly: AssemblyVersion("4.3.6.0")]
44-
[assembly: AssemblyFileVersion("4.3.6.0")]
43+
[assembly: AssemblyVersion("4.4.0.0")]
44+
[assembly: AssemblyFileVersion("4.4.0.0")]

src/ImageProcessor/Imaging/Helpers/Converters/BigEndianBitConverter.cs

+23-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,28 @@
1-
namespace ImageProcessor.Imaging.Helpers
1+
// --------------------------------------------------------------------------------------------------------------------
2+
// <copyright file="BigEndianBitConverter.cs" company="James South">
3+
// Copyright (c) James South.
4+
// Licensed under the Apache License, Version 2.0.
5+
// </copyright>
6+
// <summary>
7+
// Implementation of EndianBitConverter which converts to/from big-endian
8+
// byte arrays.
9+
// <remarks>
10+
// Adapted from Miscellaneous Utility Library <see href="http://jonskeet.uk/csharp/miscutil/" />
11+
// This product includes software developed by Jon Skeet and Marc Gravell. Contact <see href="mailto:[email protected]" />, or see
12+
// <see href="http://www.pobox.com/~skeet/" />.
13+
// </remarks>
14+
// </summary>
15+
16+
namespace ImageProcessor.Imaging.Helpers
217
{
318
/// <summary>
4-
/// Implementation of EndianBitConverter which converts to/from big-endian
5-
/// byte arrays.
19+
/// Implementation of EndianBitConverter which converts to/from big-endian
20+
/// byte arrays.
21+
/// <remarks>
22+
/// Adapted from Miscellaneous Utility Library <see href="http://jonskeet.uk/csharp/miscutil/" />
23+
/// This product includes software developed by Jon Skeet and Marc Gravell. Contact <see href="mailto:[email protected]" />, or see
24+
/// <see href="http://www.pobox.com/~skeet/" />.
25+
/// </remarks>
626
/// </summary>
727
internal sealed class BigEndianBitConverter : EndianBitConverter
828
{

src/ImageProcessor/Imaging/Helpers/Converters/EndianBitConverter.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// <remarks>
99
// Adapted from Miscellaneous Utility Library <see href="http://jonskeet.uk/csharp/miscutil/" />
1010
// This product includes software developed by Jon Skeet and Marc Gravell. Contact <see href="mailto:[email protected]" />, or see
11-
// <see cref="http://www.pobox.com/~skeet/" />.
11+
// <see href="http://www.pobox.com/~skeet/" />.
1212
// </remarks>
1313
// </summary>
1414
// --------------------------------------------------------------------------------------------------------------------
@@ -24,7 +24,7 @@ namespace ImageProcessor.Imaging.Helpers
2424
/// <remarks>
2525
/// Adapted from Miscellaneous Utility Library <see href="http://jonskeet.uk/csharp/miscutil/"/>
2626
/// This product includes software developed by Jon Skeet and Marc Gravell. Contact <see href="mailto:[email protected]"/>, or see
27-
/// <see cref="http://www.pobox.com/~skeet/"/>.
27+
/// <see href="http://www.pobox.com/~skeet/"/>.
2828
/// </remarks>
2929
/// </summary>
3030
[SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1201:ElementsMustAppearInTheCorrectOrder", Justification = "Reviewed. Suppression is OK here. Better readability.")]

src/ImageProcessor/Imaging/Helpers/Converters/LittleEndianBitConverter.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// <remarks>
1010
// Adapted from Miscellaneous Utility Library <see href="http://jonskeet.uk/csharp/miscutil/" />
1111
// This product includes software developed by Jon Skeet and Marc Gravell. Contact <see href="mailto:[email protected]" />, or see
12-
// <see cref="http://www.pobox.com/~skeet/" />.
12+
// <see href="http://www.pobox.com/~skeet/" />.
1313
// </remarks>
1414
// </summary>
1515
// --------------------------------------------------------------------------------------------------------------------
@@ -22,7 +22,7 @@ namespace ImageProcessor.Imaging.Helpers
2222
/// <remarks>
2323
/// Adapted from Miscellaneous Utility Library <see href="http://jonskeet.uk/csharp/miscutil/"/>
2424
/// This product includes software developed by Jon Skeet and Marc Gravell. Contact <see href="mailto:[email protected]"/>, or see
25-
/// <see cref="http://www.pobox.com/~skeet/"/>.
25+
/// <see href="http://www.pobox.com/~skeet/"/>.
2626
/// </remarks>
2727
/// </summary>
2828
internal sealed class LittleEndianBitConverter : EndianBitConverter

src/ImageProcessor/Imaging/MetaData/Rational.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public Rational(T numerator, T denominator, bool reduce)
124124
/// </summary>
125125
/// <param name="value">The value to parse.</param>
126126
/// <returns>
127-
/// The <see cref="T"/>
127+
/// The <see cref="Rational{T}"/>
128128
/// </returns>
129129
private delegate T ParseDelegate(string value);
130130

src/ImageProcessor/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
//
4242
// You can specify all the values or you can default the Build and Revision Numbers
4343
// by using the '*' as shown below:
44-
[assembly: AssemblyVersion("2.2.8.0")]
45-
[assembly: AssemblyFileVersion("2.2.8.0")]
44+
[assembly: AssemblyVersion("2.3.0.0")]
45+
[assembly: AssemblyFileVersion("2.3.0.0")]
4646

4747
[assembly: InternalsVisibleTo("ImageProcessor.UnitTests")]
4848
[assembly: InternalsVisibleTo("ImageProcessor.Web")]

src/Plugins/ImageProcessor/ImageProcessor.Plugins.WebP/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
//
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.2.0")]
35-
[assembly: AssemblyVersion("1.0.2.0")]
36-
[assembly: AssemblyFileVersion("1.0.2.0")]
34+
// [assembly: AssemblyVersion("1.0.3.0")]
35+
[assembly: AssemblyVersion("1.0.3.0")]
36+
[assembly: AssemblyFileVersion("1.0.3.0")]

0 commit comments

Comments
 (0)