Skip to content

Commit

Permalink
fix typo in InterceptionExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
zidad committed Aug 18, 2015
1 parent c65e0cd commit 458a56b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/EasyNetQ/EasyNetQ.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<Compile Include="Interception\CompositeInterceptor.cs" />
<Compile Include="Interception\DefaultInterceptor.cs" />
<Compile Include="Interception\GZipInterceptor.cs" />
<Compile Include="Interception\InterceptionExtentions.cs" />
<Compile Include="Interception\InterceptionExtensions.cs" />
<Compile Include="Interception\InterceptorRegistrator.cs" />
<Compile Include="Interception\IProduceConsumeInterceptor.cs" />
<Compile Include="Interception\RawMessage.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace EasyNetQ.Interception
{
public static class InterceptionExtentions
public static class InterceptionExtensions
{
public static IServiceRegister EnableInterception(this IServiceRegister serviceRegister, Action<IInterceptorRegistrator> configure)
{
Expand Down
5 changes: 3 additions & 2 deletions Source/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@
using System.Reflection;

// EasyNetQ version number: <major>.<minor>.<non-breaking-feature>.<build>
[assembly: AssemblyVersion("0.50.6.0")]
[assembly: AssemblyVersion("0.50.7.0")]
[assembly: CLSCompliant(true)]

// Note: until version 1.0 expect breaking changes on 0.X versions.
// 0.50.7.0 Fix typo in Extensions
// 0.50.6.0 Allow specifying the maximum size of the message queue when it is being declared
// 0.50.5.0 Fix assigning of AMQP connection in to ConnectionConfiguration to be idempotent.
// 0.50.4.0 Queue max priority now uses int instead of byte.
// 0.50.3.0 Bug fix, Polymorphic request-response did not work with polymorphic response types
// 0.50.2.0 Updated RabbitMQ client to 3.5.4 and Json.NET to 7.0.1
// 0.50.1.0 Fix type in Extensions
// 0.50.1.0 Fix typo in Extensions
// 0.50.0.0 Updated to RabbitMQ.Client 3.5.3
// 0.49.3.0 Polymorphic publish now works with Scheduler.Mongo
// 0.49.2.0 Fix subscription for events if queues were created in previous versions
Expand Down

0 comments on commit 458a56b

Please sign in to comment.