From 3bffc210c5bd1888d5e8bd6b10ccbf3e46242019 Mon Sep 17 00:00:00 2001 From: Caio Dottori Date: Thu, 21 Jan 2021 14:33:53 -0300 Subject: [PATCH] Update version to 2.4.0 --- CHANGELOG.md | 2 ++ README.md | 2 +- lib/utils/request.ex | 2 +- mix.exs | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 152cea6..c2afd6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] + +## [2.4.0] - 2021-01-21 ### Added - Transfer.account_type property to allow "checking", "salary" or "savings" account specification - Transfer.external_id property to allow users to take control over duplication filters diff --git a/README.md b/README.md index ec12e0b..c7dceff 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ To install the package with mix, add this to your deps and run `mix deps.get`: ```elixir def deps do [ - {:starkbank, "~> 2.3.0"} + {:starkbank, "~> 2.4.0"} ] end ``` diff --git a/lib/utils/request.ex b/lib/utils/request.ex index 8483887..f659bdb 100644 --- a/lib/utils/request.ex +++ b/lib/utils/request.ex @@ -65,7 +65,7 @@ defmodule StarkBank.Utils.Request do {'Access-Time', to_charlist(access_time)}, {'Access-Signature', to_charlist(signature)}, {'Content-Type', 'application/json'}, - {'User-Agent', 'Elixir-#{System.version()}-SDK-2.3.0'}, + {'User-Agent', 'Elixir-#{System.version()}-SDK-2.4.0'}, {'Accept-Language', Check.language()} ] end diff --git a/mix.exs b/mix.exs index 2baff43..796f33a 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule StarkBank.MixProject do [ app: :starkbank, name: :starkbank, - version: "2.3.0", + version: "2.4.0", homepage_url: "https://starkbank.com", source_url: "https://github.com/starkbank/sdk-elixir", description: description(),