Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
vkhorikov committed Feb 23, 2021
1 parent 93d4994 commit 86cc795
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,23 @@ Available on [nuget](https://www.nuget.org/packages/CSharpFunctionalExtensions/)

No need for a separate 4.0 package anymore! Use the regular CSharpFunctionalExtensions

## Testing

For extension methods on top of this library's `Result` and `Maybe` that you can use in tests, see [this nuget package](https://www.nuget.org/packages/FluentAssertions.CSharpFunctionalExtensions/) ([GitHub link][https://github.com/pedromtcosta/FluentAssertions.CSharpFunctionalExtensions]).

Example:

```csharp
// Arrange
var myClass = new MyClass();

// Act
Result result = myClass.TheMethod();

// Assert
result.Should().BeSuccess();
```

## Get rid of primitive obsession

```csharp
Expand Down Expand Up @@ -72,6 +89,7 @@ return _customerRepository.GetById(id)

## Contributors
A big thanks to the project contributors!
* [Renato Ramos Nascimento](https://github.com/renato04)
* [Patrick Drechsler](https://github.com/draptik)
* [Vadim Mingazhev](https://github.com/mingazhev)
* [Darick Carpenter](https://github.com/darickc)
Expand Down
7 changes: 4 additions & 3 deletions version.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
2.14.3
2.14.4
New features:
* 258 Enhance overloads for Match
* None

Fixed issues:
* None
* #264 Maybe<T>.None == null returns false
* #266 Bind-/Map-/WithTransactionScope() fixed for net5.0

0 comments on commit 86cc795

Please sign in to comment.