Browse Source

v4.1.3

Custom services no longer require processing instructions to render
image.

Fixes #103


Former-commit-id: 64f4e9c03e06730ef059666a4fbc605295cf791e
Former-commit-id: dddd3bda05c2ab4a1ac92e66e4da58e7235a61f0
pull/17/head
James South 12 years ago
parent
commit
1f48d74fc4
  1. 2
      build/NuSpecs/ImageProcessor.Web.nuspec
  2. 2
      build/build.xml
  3. 2
      src/ImageProcessor.Web/HttpModules/ImageProcessingModule.cs
  4. 4
      src/ImageProcessor.Web/Properties/AssemblyInfo.cs

2
build/NuSpecs/ImageProcessor.Web.nuspec

@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>ImageProcessor.Web</id>
<version>4.1.2.0</version>
<version>4.1.3.0</version>
<title>ImageProcessor.Web</title>
<authors>James South</authors>
<owners>James South</owners>

2
build/build.xml

@ -13,7 +13,7 @@
<project>
<name>ImageProcessor Web</name>
<version>4.1.2.0</version>
<version>4.1.3.0</version>
<folder>..\src\ImageProcessor.Web</folder>
<projfile>ImageProcessor.Web.csproj</projfile>
<outputs>

2
src/ImageProcessor.Web/HttpModules/ImageProcessingModule.cs

@ -578,4 +578,4 @@ namespace ImageProcessor.Web.HttpModules
}
#endregion
}
}
}

4
src/ImageProcessor.Web/Properties/AssemblyInfo.cs

@ -40,5 +40,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("4.1.2.0")]
[assembly: AssemblyFileVersion("4.1.2.0")]
[assembly: AssemblyVersion("4.1.3.0")]
[assembly: AssemblyFileVersion("4.1.3.0")]

Loading…
Cancel
Save