Browse Source

v4.1.3

Custom services no longer require processing instructions to render
image.

Fixes #103


Former-commit-id: 74a0df9af4fa6a8c09f3a937bd928ff2d69396e1
Former-commit-id: 9e8ddb3e27fa9af5f2731d0bf0c6285de779eb16
af/merge-core
James South 11 years ago
parent
commit
1bb45a1e24
  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