Skip to content

Commit

Permalink
Merge pull request #1335 from Adyen/promote/main
Browse files Browse the repository at this point in the history
Release v28.1.0
  • Loading branch information
AdyenAutomationBot committed Aug 16, 2024
2 parents ec259b9 + 0d2b2b7 commit 4a42e9e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ You can use Maven and add this dependency to your project's POM:
<dependency>
<groupId>com.adyen</groupId>
<artifactId>adyen-java-api-library</artifactId>
<version>28.0.0</version>
<version>28.1.0</version>
</dependency>
```

Expand Down Expand Up @@ -240,7 +240,7 @@ client.setHttpClient(adyenHttpClientWithProxy);
If your proxy requires authentication, set all the settings as system properties instead (don't mix with previous approach), for example:

~~~~ java
System.setProperty("https.proxyHost", "128.0.0.1");
System.setProperty("https.proxyHost", "128.1.0.1");
System.setProperty("https.proxyPort", "3128");
System.setProperty("https.proxyUser", "squid");
System.setProperty("https.proxyPassword", "ward");
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
28.0.0
28.1.0
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.adyen</groupId>
<artifactId>adyen-java-api-library</artifactId>
<packaging>jar</packaging>
<version>28.0.0</version>
<version>28.1.0</version>
<name>Adyen Java API Library</name>
<description>Adyen API Client Library for Java</description>
<url>https://github.com/adyen/adyen-java-api-library</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/adyen/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class Client {
private ClientInterface httpClient;
private Config config;
public static final String LIB_NAME = "adyen-java-api-library";
public static final String LIB_VERSION = "28.0.0";
public static final String LIB_VERSION = "28.1.0";
public static final String TERMINAL_API_ENDPOINT_TEST = "https://terminal-api-test.adyen.com";
public static final String TERMINAL_API_ENDPOINT_LIVE = "https://terminal-api-live.adyen.com";

Expand Down

0 comments on commit 4a42e9e

Please sign in to comment.