From f053c66944c449dd7dd330f041e784ba514b2d3d Mon Sep 17 00:00:00 2001 From: andreagostinho-meli Date: Tue, 27 Aug 2024 12:04:09 -0300 Subject: [PATCH] bump sdk version to 1.0.5 --- CHANGELOG.md | 20 +++++++++++++------- pkg/internal/httpclient/helper.go | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c95424..bd7bd38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,23 @@ -## VERSION 1.0.0 +## VERSION 1.0.5 -## VERSION 1.0.1 +Fix `is_same_bank_account_owner` type. Now it is `bool` instead of `string`. -Solution for issue [56](https://github.com/mercadopago/sdk-go/issues/56). +## VERSION 1.0.4 + +Include `sub_type` in `PointOfInteractionRequest` in `Payment`. + +## VERSION 1.0.3 + +Include `sub_merchant` in `ForwardData` in `Payment`. ## VERSION 1.0.2 Fix `differential_pricing_id` type. Now it is `int` instead of `string`. -## VERSION 1.0.3 +## VERSION 1.0.1 -Include `sub_merchant` in `ForwardData` in `Payment`. +Solution for issue [56](https://github.com/mercadopago/sdk-go/issues/56). -## VERSION 1.0.4 +## VERSION 1.0.0 -Include `sub_type` in `PointOfInteractionRequest` in `Payment`. \ No newline at end of file +Initial release diff --git a/pkg/internal/httpclient/helper.go b/pkg/internal/httpclient/helper.go index 2f6c107..41b4d6c 100644 --- a/pkg/internal/httpclient/helper.go +++ b/pkg/internal/httpclient/helper.go @@ -16,7 +16,7 @@ import ( ) const ( - currentSDKVersion string = "1.0.4" + currentSDKVersion string = "1.0.5" productID string = "CNITR48HSRV0CRPT3NI0" )