Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation and prepare for release 0.16.0 #131

Merged
merged 3 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.16.0 | 2024-10-17
* Add support for pagination in all list endpoints.
* Fix the `events` attribute on webhook entities as it is considered deprecated (replaced by `enabled_events`)

## 0.15.0 | 2024-09-13
* Add support for Send an invoice operation in the `Sales invoice` endpoint

Expand Down
1 change: 1 addition & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The goal is to provide a stable version that has the basic functionality to inte
- [x] Retrieving the request token
- [x] Requesting the access token
- [x] Refreshing the access token
- [x] Support for pagination
- [ ] Support for the resource endpoints
- [x] Administration
- [x] Contacts
Expand Down
4 changes: 2 additions & 2 deletions src/Moneybird.Net/Moneybird.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9</LangVersion>
<PackageId>Moneybird.Net</PackageId>
<Version>0.15.0</Version>
<Version>0.16.0</Version>
<Authors>Vincent Vrijburg</Authors>
<Description>A wrapper for the Moneybird API.</Description>
<Copyright>Copyright © Vincent Vrijburg 2021</Copyright>
Expand All @@ -12,7 +12,7 @@
<PackageTags>dotnet dotnet-core dotnet-standard client wrapper moneybird</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageVersion>0.15.0</PackageVersion>
<PackageVersion>0.16.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading