Skip to content

Commit

Permalink
Set release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pmosk committed Aug 26, 2023
1 parent 824359b commit a42cdf6
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 a42cdf6

Please sign in to comment.