Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
vkhorikov committed Jul 4, 2023
1 parent e578c06 commit aa51823
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CSharpFunctionalExtensions/Entity/Entity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

namespace CSharpFunctionalExtensions
{
public abstract class Entity<TId> : IComparable, IComparable<Entity<TId>> where TId : IComparable<TId>
public abstract class Entity<TId> : IComparable, IComparable<Entity<TId>>
where TId : IComparable<TId>
{
public virtual TId Id { get; protected set; }

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ result.Should().Fail(); // throws

A big thanks to the project contributors!

- [Robert Larkins](https://github.com/robertlarkins)
- [tinytownsoftware](https://github.com/tinytownsoftware)
- [piotr121993](https://github.com/piotr121993)
- [Dmitry Korotin](https://github.com/teheran)
Expand Down
4 changes: 2 additions & 2 deletions version.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
2.39.2
2.40.0
New features:
* #506 Adding Task support to TapTry and TapIfTry
* #510 Make Entity implement IComparable

Fixed issues:
* None

0 comments on commit aa51823

Please sign in to comment.