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 #112

Merged
merged 3 commits into from
Jul 7, 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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.14.0 | 2024-07-07
* Add support for `Time entry` endpoint
* Refactoring of the `Note` entity from `ContactNote` to a generic `Note` used in multiple entity types
* Refactoring of endpoint namespaces after moving them within the solution
* Refactoring of fields with a price or discount value from `string` to a `double` through serialization
* Improved deserialization of error messages
* Change various `Id` fields from `int` to `string` due to incorrect documentation
* Updates of dependency versions

## 0.13.3 | 2024-07-05
* Fix deserialization for id in CustomFieldAttribute entity.

Expand Down
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The goal is to provide a stable version that has the basic functionality to inte
- [x] Sales invoices (limited)
- [ ] Subscriptions
- [x] Tax rates
- [ ] Time entries
- [x] Time entries
- [x] Users
- [x] Verifications
- [x] Webhooks
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.13.3</Version>
<Version>0.14.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.13.3</PackageVersion>
<PackageVersion>0.14.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading