diff --git a/CHANGELOG.md b/CHANGELOG.md index 629b2ef..6b99afe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] + +## [2.0.0] - 2020-10-20 ### Added - ids parameter to Transaction.query - ids parameter to Transfer.query diff --git a/README.md b/README.md index 7d61299..6f213cc 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, "~> 0.6.0"} + {:starkbank, "~> 2.0.0"} ] end ``` diff --git a/lib/utils/request.ex b/lib/utils/request.ex index 9299ef3..3e566e3 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-0.6.0'}, + {'User-Agent', 'Elixir-#{System.version()}-SDK-2.0.0'}, {'Accept-Language', Check.language()} ] end diff --git a/mix.exs b/mix.exs index 8e27a44..7d212bd 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule StarkBank.MixProject do [ app: :starkbank, name: :starkbank, - version: "0.6.0", + version: "2.0.0", homepage_url: "https://starkbank.com", source_url: "https://github.com/starkbank/sdk-elixir", description: description(),