Skip to content

Commit

Permalink
SP-579 Java - Implement better refund exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarzybok-sumoheavy committed Nov 17, 2023
1 parent d38a1b7 commit bf40111
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.bitpay</groupId>
<artifactId>bitpay_sdk</artifactId>
<version>10.0.0-alfa</version>
<version>10.0.0</version>
<packaging>jar</packaging>

<name>BitPay</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/bitpay/sdk/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class Config {
/**
* BitPay Plugin Info Version.
*/
public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.0.0-alfa";
public static final String BITPAY_PLUGIN_INFO = "BitPay_Java_Client_v10.0.0";
/**
* BitPay Api Frame.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/bitpay/sdk/ConfigTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void it_should_returns_bitpay_api_version() {

@Test
public void it_should_returns_bitpay_plugin_info() {
Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.0.0-alfa"));
Assertions.assertTrue(Config.BITPAY_PLUGIN_INFO.contains("BitPay_Java_Client_v10.0.0"));
}

@Test
Expand Down

0 comments on commit bf40111

Please sign in to comment.