Skip to content

Commit

Permalink
Bumped version number to 1.0.1 and fixed issue with middleware failin…
Browse files Browse the repository at this point in the history
…g to advance to the next middlewares
  • Loading branch information
snickler committed Apr 20, 2018
1 parent 092471b commit e747e6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Snickler.RSSCore/RSSMiddleware.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public async Task Invoke(HttpContext context, RSSService rssService)
await context.Response.WriteAsync(rssFeed).ConfigureAwait(false);
}
}
await _next(context);
}
}
}
4 changes: 4 additions & 0 deletions src/Snickler.RSSCore/Snickler.RSSCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
<PackageTags>RSS,aspnetcore</PackageTags>
<RepositoryUrl>https://github.com/snickler/RSSCore</RepositoryUrl>
<Description>ASPNETCore Middleware for generating RSS Feeds</Description>
<AssemblyVersion>1.0.0.1</AssemblyVersion>
<FileVersion>1.0.0.1</FileVersion>
<Version>1.0.1</Version>
<PackageReleaseNotes>-Fixed issue with Middleware failing to advance to the next middlewares</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="1.1.1" />
Expand Down

0 comments on commit e747e6d

Please sign in to comment.