Skip to content

Commit

Permalink
v1.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjdk committed Feb 16, 2024
1 parent 3b30f31 commit 367bff1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog
*Below is the version history of [TrelloDotNet](https://github.com/rwjdk/TrelloDotNet) (An wrapper of the Trello API)*

## Unreleased
## 1.9.9 (16th of February 2024)
#### General
- Methods [`GetCardsOnBoardAsync`](https://github.com/rwjdk/TrelloDotNet/wiki/GetCardsOnBoardAsync), [`GetCardsOnBoardFilteredAsync`](https://github.com/rwjdk/TrelloDotNet/wiki/GetCardsOnBoardFilteredAsync), [`GetCardsInListAsync`](https://github.com/rwjdk/TrelloDotNet/wiki/GetCardsInListAsync), [`GetCardsForMemberAsync`](https://github.com/rwjdk/TrelloDotNet/wiki/GetCardsForMemberAsync) will now correctly include the `List` a card is on if specified in the `GetCardOptions`
- Fixed that membertype 'ghost' was not supported

<hr>

Expand Down
16 changes: 10 additions & 6 deletions TrelloDotNet/TrelloDotNet/Model/MembershipType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,21 @@ public enum MembershipType
/// <summary>
/// Administrator
/// </summary>
[JsonPropertyName("admin")]
Admin,
[JsonPropertyName("admin")] Admin,

/// <summary>
/// Normal User
/// </summary>
[JsonPropertyName("normal")]
Normal,
[JsonPropertyName("normal")] Normal,

/// <summary>
/// Observer User
/// </summary>
[JsonPropertyName("observer")]
Observer
[JsonPropertyName("observer")] Observer,

/// <summary>
/// Ghost User (Not yet joined)
/// </summary>
[JsonPropertyName("ghost")] Ghost
}
}
2 changes: 1 addition & 1 deletion TrelloDotNet/TrelloDotNet/TrelloDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageProjectUrl>https://github.com/rwjdk/TrelloDotNet/wiki</PackageProjectUrl>
<PackageIcon>trello.png</PackageIcon>
<PackageTags>trello api rest .NET8 .NET7 .NET6 dotNet crud wrapper webhook automation</PackageTags>
<Version>1.9.8</Version>
<Version>1.9.9</Version>
<Company>RWJDK</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>https://github.com/rwjdk/TrelloDotNet/blob/main/Changelog.md</PackageReleaseNotes>
Expand Down

0 comments on commit 367bff1

Please sign in to comment.