diff --git a/CHANGELOG.md b/CHANGELOG.md index 1218807..3368fb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 1.3.0 - 2026-07-07 + +### 🚀 New Features + +- **Entity Onboardings**: Added `onboardings` resource under v2 entities to manage the onboarding process + - `list`, `get`, `create` and `submit` methods for onboardings + - `upload_document` to upload a document to a specific slot + - `upload_shareholder_document` to upload a shareholder's document + - `upload_legal_representative_document` to upload a legal representative's document +- **Entity Creation**: Added `create` method for entities in the v2 API +- **Webhook Endpoints**: Added `webhook_endpoints` manager to create, retrieve, list, update, delete and test webhook endpoints +- **Multipart Uploads**: The HTTP client now supports `multipart/form-data` requests, used for document uploads + ## 1.2.0 - 2026-04-08 ### 🚀 New Features diff --git a/Gemfile.lock b/Gemfile.lock index 1e5b33a..abf2c2c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - fintoc (1.2.0) + fintoc (1.3.0) http money-rails tabulate diff --git a/lib/fintoc/version.rb b/lib/fintoc/version.rb index 661b9f1..3d2cbcf 100644 --- a/lib/fintoc/version.rb +++ b/lib/fintoc/version.rb @@ -1,3 +1,3 @@ module Fintoc - VERSION = '1.2.0' + VERSION = '1.3.0' end