From 3293c92b940fb0fdcb9580f26aa9b01da2bc6195 Mon Sep 17 00:00:00 2001 From: Felipe Sueto Date: Fri, 5 Nov 2021 11:43:26 -0300 Subject: [PATCH] Update java sdk library version to 2.8.1 --- CHANGELOG.md | 2 ++ project.clj | 2 +- test/starkbank/institution_test.clj | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f11e0..e52be66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] +### Changed +- java sdk version to 2.8.1 ## [2.5.0] - 2021-08-20 ### Added diff --git a/project.clj b/project.clj index c4638f9..719bda1 100644 --- a/project.clj +++ b/project.clj @@ -4,6 +4,6 @@ :license {:name "MIT" :url "https://opensource.org/licenses/MIT"} :dependencies [ - [com.starkbank/sdk "2.8.0"] + [com.starkbank/sdk "2.8.1"] [org.clojure/clojure "1.10.1"]] :repl-options {:init-ns starkbank.core}) diff --git a/test/starkbank/institution_test.clj b/test/starkbank/institution_test.clj index 302804c..dfcd77c 100644 --- a/test/starkbank/institution_test.clj +++ b/test/starkbank/institution_test.clj @@ -6,6 +6,6 @@ (deftest query-and-get-institutions (testing "query institutions" (user/set-test-project) - (is (= 1 (count (institution/query {:search "stark"})))) + (is (= 2 (count (institution/query {:search "stark"})))) (is (= 1 (count (institution/query {:spi-codes (into-array String ["20018183"])})))) (is (= 1 (count (institution/query {:str-codes (into-array String ["341"])}))))))