From ecd6e8215b11df2993a59fe9c4b1271e7c477f86 Mon Sep 17 00:00:00 2001 From: Lgdev07 Date: Mon, 22 Jul 2024 17:52:33 +0200 Subject: [PATCH 1/3] remove unecessary slash from transaction id --- lib/app_store/api/transaction_info.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app_store/api/transaction_info.ex b/lib/app_store/api/transaction_info.ex index 825240e..d92737f 100644 --- a/lib/app_store/api/transaction_info.ex +++ b/lib/app_store/api/transaction_info.ex @@ -7,7 +7,7 @@ defmodule AppStore.API.TransactionInfo do @type transaction_id :: String.t() - @path_prefix "/inApps/v1/transactions/" + @path_prefix "/inApps/v1/transactions" @doc """ Get information about a single transaction for your app. From e3fea20f263c9d01a8c0859643ff71ef53558fb6 Mon Sep 17 00:00:00 2001 From: Lgdev07 Date: Mon, 22 Jul 2024 17:54:40 +0200 Subject: [PATCH 2/3] bump version --- CHANGELOG.md | 4 ++++ lib/app_store.ex | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1e31ee..f848bf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## main +## v0.2.1 + +- Remove unecessary slash from transaction_info call. + ## v0.2.0 - Remove `nanoid` dependency. diff --git a/lib/app_store.ex b/lib/app_store.ex index 30c7962..30873a9 100644 --- a/lib/app_store.ex +++ b/lib/app_store.ex @@ -5,7 +5,7 @@ defmodule AppStore do alias AppStore.{API, Token} - @version "0.2.0" + @version "0.2.1" @enforce_keys [:api_config, :token_config] From 066041536da5ca0ed3281c97eada57d565d3af67 Mon Sep 17 00:00:00 2001 From: Lgdev07 Date: Mon, 22 Jul 2024 17:58:36 +0200 Subject: [PATCH 3/3] improve changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f848bf5..dfeaf63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ## v0.2.1 -- Remove unecessary slash from transaction_info call. +- Remove unecessary slash from get_transaction_info call. ## v0.2.0