From 5741170ee86c79e4682884122d339be14d4e9065 Mon Sep 17 00:00:00 2001 From: VickieAranha Date: Thu, 19 Dec 2024 15:00:21 -0300 Subject: [PATCH] bump version (#80) * fix type card_id and user to int64 * ajuste * Update helper.go * Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ pkg/internal/httpclient/helper.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df88add..dc722d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## VERSION 1.0.7 + +Fix `CardID` to string in `Response` from the `pre-approval flow` + +Fix `UserID` to int64 + ## VERSION 1.0.6 Include `reference_id` in `DataResponse` in `PaymentMethodResponse` in `Payment`. diff --git a/pkg/internal/httpclient/helper.go b/pkg/internal/httpclient/helper.go index 891f0d5..1f31409 100644 --- a/pkg/internal/httpclient/helper.go +++ b/pkg/internal/httpclient/helper.go @@ -16,7 +16,7 @@ import ( ) const ( - currentSDKVersion string = "1.0.6" + currentSDKVersion string = "1.0.7" productID string = "CNITR48HSRV0CRPT3NI0" )