Skip to content

Commit

Permalink
Merge pull request #456 from zidad/typo-in-scheduling-extensions
Browse files Browse the repository at this point in the history
fix typo in scheduling extensions
  • Loading branch information
micdenny committed Jun 17, 2015
2 parents 6ceb7fe + 05aad08 commit 9473abd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/EasyNetQ/EasyNetQ.csproj
Expand Up @@ -69,7 +69,7 @@
<Compile Include="Scheduling\DelayedExchangeScheduler.cs" />
<Compile Include="MessageDeliveryMode.cs" />
<Compile Include="Scheduling\ExternalScheduler.cs" />
<Compile Include="Scheduling\SchedulingExtentions.cs" />
<Compile Include="Scheduling\SchedulingExtensions.cs" />
<Compile Include="SubscriptionResult.cs" />
<Compile Include="Consumer\ConsumerExecutionContext.cs" />
<Compile Include="Consumer\ConsumerFactory.cs" />
Expand Down
@@ -1,6 +1,6 @@
namespace EasyNetQ.Scheduling
{
public static class SchedulingExtentions
public static class SchedulingExtensions
{
public static IServiceRegister EnableDelayedExchangeScheduler(this IServiceRegister serviceRegister)
{
Expand Down
4 changes: 2 additions & 2 deletions Source/Version.cs
Expand Up @@ -2,11 +2,11 @@
using System.Reflection;

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

// Note: until version 1.0 expect breaking changes on 0.X versions.

// 0.50.1.0 Fix type 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 9473abd

Please sign in to comment.