From 5e6f4a24f9f41a6b9e428277e442f0af41899911 Mon Sep 17 00:00:00 2001 From: Filip Andonie <47191006+Filip1x9@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:00:34 +0000 Subject: [PATCH 1/3] chore: increase version --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a5aaf6a..131b03c 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add the below dependency to the project's POM: com.factset.sdk utils - 1.1.1 + 1.1.3 ``` @@ -32,7 +32,7 @@ repositories { } dependencies { - implementation "com.factset.sdk:utils:1.1.1" + implementation "com.factset.sdk:utils:1.1.3" } ``` From 7dd8c6f0a79b8e9ad9c4c330696f134ade899bd9 Mon Sep 17 00:00:00 2001 From: Filip Andonie <47191006+Filip1x9@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:01:08 +0000 Subject: [PATCH 2/3] chore: use correct version --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 4b517ac..0c8c911 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ apply plugin: 'jacoco' apply plugin: 'maven-publish' group 'com.factset.sdk' -version '1.1.2' +version '1.1.3' dependencies { implementation 'org.slf4j:slf4j-api:1.7.36' From e19865854e4b7099e3684433ba8f0f8d757c9846 Mon Sep 17 00:00:00 2001 From: Filip Andonie <47191006+Filip1x9@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:01:42 +0000 Subject: [PATCH 3/3] chore: use correct version --- .../com/factset/sdk/utils/authentication/RequestOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/factset/sdk/utils/authentication/RequestOptions.java b/src/main/java/com/factset/sdk/utils/authentication/RequestOptions.java index ca3dc7a..fd72c18 100644 --- a/src/main/java/com/factset/sdk/utils/authentication/RequestOptions.java +++ b/src/main/java/com/factset/sdk/utils/authentication/RequestOptions.java @@ -21,5 +21,5 @@ public class RequestOptions { SSLSocketFactory sslSocketFactory = HttpsURLConnection.getDefaultSSLSocketFactory(); @Builder.Default - String userAgent = "fds-sdk/java/utils/1.1.2 (" + System.getProperty("os.name") + "; Java" + System.getProperty("java.version") + ")"; + String userAgent = "fds-sdk/java/utils/1.1.3 (" + System.getProperty("os.name") + "; Java" + System.getProperty("java.version") + ")"; }