From 616872a99be91a1f378d15d0ea664a0a96a9d393 Mon Sep 17 00:00:00 2001 From: nyamanaka Date: Wed, 5 Oct 2022 14:00:46 +0900 Subject: [PATCH] increment patch version --- CHANGELOG | 4 ++++ README.md | 4 ++-- VERSION | 2 +- pom.xml | 2 +- src/main/java/jp/pay/Payjp.java | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 90fc952..efff6db 100755 --- a/CHANGELOG +++ b/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 diff --git a/README.md b/README.md index 10bee8a..d4e9983 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add this dependency to your project's POM: jp.pay payjp-java - 0.6.0 + 0.6.1 ``` @@ -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 diff --git a/VERSION b/VERSION index a918a2a..ee6cdce 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.0 +0.6.1 diff --git a/pom.xml b/pom.xml index d3bfdcc..6794120 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ jp.pay payjp-java jar - 0.6.0 + 0.6.1 pay-java https://github.com/payjp/payjp-java diff --git a/src/main/java/jp/pay/Payjp.java b/src/main/java/jp/pay/Payjp.java index c2c917c..79468fd 100644 --- a/src/main/java/jp/pay/Payjp.java +++ b/src/main/java/jp/pay/Payjp.java @@ -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;