Skip to content

Commit

Permalink
Version, documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderSade committed Apr 16, 2018
1 parent abedb18 commit aa19d07
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Sander.MultiTry/Sander.MultiTry.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
<PackageTags>transient-error multi-try retry error-handling exception-handling transient-exception</PackageTags>
<Description>There are great many operations which can have transient errors, such as network requests, database operations and many more. In case of a transient exception, the operation usually needs to be retried.

MultiTry is created to reduce the amount of boilerplate code that needs to be written for such operations. The goal was to have an easy-to-use, but yet flexible and powerful re-try mechanism, which supports exception filtering, handling and re-throwing.
</Description>
MultiTry is created to reduce the amount of boilerplate code that needs to be written for such operations. The goal was to have an easy-to-use, but yet flexible and powerful re-try mechanism, which supports exception filtering, handling and re-throwing.</Description>
<Version>1.0.1</Version>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<NeutralLanguage />
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
4 changes: 3 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,6 @@ I recommend using Polly if you have more complex scenarios than MultiTry is inte

## Changelog
* 1.0.0 Initial release
* 1.0.1 Adding MultiTry.Rethrow() (re-throwing exception while keeping the original context)
* 1.0.1
- Added MultiTry.Rethrow() (re-throwing exception while keeping the original context)
- Set the default culture to Invariant Language (Invariant Country)

0 comments on commit aa19d07

Please sign in to comment.