Skip to content

Commit

Permalink
Merge pull request #13 from pfpack/feature/async-pipeline-options
Browse files Browse the repository at this point in the history
Set release version 0.3.0
  • Loading branch information
andreise committed Aug 31, 2023
2 parents 0ac62ed + a42cdf6 commit 535d4fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ partial struct AsyncPipeline<TSuccess, TFailure>
public AsyncPipeline<TFailure> FailureOrThrow()
=>
pipeline.InternalPipe(
r => r.FailureOrThrow());
static r => r.FailureOrThrow());

public AsyncPipeline<TFailure> FailureOrThrow(Func<Exception> exceptionFactory)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ partial struct AsyncPipeline<TSuccess, TFailure>
public AsyncPipeline<TSuccess> SuccessOrThrow()
=>
pipeline.InternalPipe(
r => r.SuccessOrThrow());
static r => r.SuccessOrThrow());

public AsyncPipeline<TSuccess> SuccessOrThrow(Func<Exception> exceptionFactory)
{
Expand Down
2 changes: 1 addition & 1 deletion src/core-asyncpipeline/AsyncPipeline/AsyncPipeline.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>EarlyFuncPack Core.AsyncPipeline is a core library for .NET consisting of asynchronous pipeline.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>EarlyFuncPack.Core.AsyncPipeline</AssemblyName>
<Version>0.3.0-preview.3</Version>
<Version>0.3.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 535d4fb

Please sign in to comment.