Skip to content

Commit

Permalink
increment patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuki-yamanaka committed Oct 5, 2022
1 parent ac6a8b1 commit 616872a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,4 +1,8 @@

=== 0.6.1 2022-10-05

* Add 3D Secure feature. #37

=== 0.6.0 2022-09-08

* Add retry feature. #34
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -18,7 +18,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>jp.pay</groupId>
<artifactId>payjp-java</artifactId>
<version>0.6.0</version>
<version>0.6.1</version>
</dependency>
```

Expand All @@ -27,7 +27,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "jp.pay:payjp-java:0.6.0"
compile "jp.pay:payjp-java:0.6.1"
```

### Others
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.6.0
0.6.1
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -3,7 +3,7 @@
<groupId>jp.pay</groupId>
<artifactId>payjp-java</artifactId>
<packaging>jar</packaging>
<version>0.6.0</version>
<version>0.6.1</version>
<name>pay-java</name>
<url>https://github.com/payjp/payjp-java</url>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jp/pay/Payjp.java
Expand Up @@ -25,7 +25,7 @@

public abstract class Payjp {
public static final String LIVE_API_BASE = "https://api.pay.jp";
public static final String VERSION = "0.6.0";
public static final String VERSION = "0.6.1";
public static volatile String apiKey;
public static volatile String apiVersion;
public static volatile Integer maxRetry = 0;
Expand Down

0 comments on commit 616872a

Please sign in to comment.