Skip to content

Commit

Permalink
Merge pull request #63 from paypay/release-0.8.0
Browse files Browse the repository at this point in the history
release 0.8.0
  • Loading branch information
Shreyansh Pandey committed Oct 21, 2020
2 parents 2310ee8 + a9c93d3 commit 76b17b0
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion DynamicQRCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Before integrating with the SDK, run through this checklist:
Add this dependency to your project's build file:

```groovy
compile "jp.ne.paypay:paypayopa:0.7.1"
compile "jp.ne.paypay:paypayopa:0.8.0"
```
### Build your Client
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/dynamicqrcode#tag/Api-Authentication) if you want to know more about the authentication.
Expand Down
4 changes: 2 additions & 2 deletions PendingPayment.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ gradle install
<dependency>
<groupId>jp.ne.paypay</groupId>
<artifactId>paypayopa</artifactId>
<version>0.7.1</version>
<version>0.8.0</version>
<scope>compile</scope>
</dependency>
#Gradle: Add this dependency to your project's build file:
compile "jp.ne.paypay:paypayopa:0.7.0"
compile "jp.ne.paypay:paypayopa:0.8.0"
```
### Build your Client
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/pending_payments#tag/Api-Authentication) if you want to know more about the authentication.
Expand Down
4 changes: 2 additions & 2 deletions PreAuthCapture.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ gradle install
<dependency>
<groupId>jp.ne.paypay</groupId>
<artifactId>paypayopa</artifactId>
<version>0.7.1</version>
<version>0.8.0</version>
<scope>compile</scope>
</dependency>
#Gradle: Add this dependency to your project's build file:
compile "jp.ne.paypay:paypayopa:0.7.0"
compile "jp.ne.paypay:paypayopa:0.8.0"
```
### Build your Client
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/preauth_capture#tag/Api-Authentication) if you want to know more about the authentication.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Building the API client library requires Gradle to be installed.
Add this dependency to your project's build.gradle file:

```groovy
compile "jp.ne.paypay:paypayopa:0.7.1"
compile "jp.ne.paypay:paypayopa:0.8.0"
```

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'jp.ne.paypay'
version = '0.7.1'
version = '0.8.0'



Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jp/ne/paypay/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public ApiClient() {
httpClient = new OkHttpClient();
json = new JSON();
// Set default User-Agent.
setUserAgent("PayPay-SDK/0.7.1/java");
setUserAgent("PayPay-SDK/0.8.0/java");
authentications = new HashMap<>();
authentications.put("HmacAuth", new HmacAuth());
authentications = Collections.unmodifiableMap(authentications);
Expand Down
4 changes: 2 additions & 2 deletions userAuth.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ gradle install
<dependency>
<groupId>jp.ne.paypay</groupId>
<artifactId>paypayopa</artifactId>
<version>0.7.1</version>
<version>0.8.0</version>
<scope>compile</scope>
</dependency>
#Gradle: Add this dependency to your project's build file:
compile "jp.ne.paypay:paypayopa:0.7.1"
compile "jp.ne.paypay:paypayopa:0.8.0"
```
### Build your Client
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/pending_payments#tag/Api-Authentication) if you want to know more about the authentication.
Expand Down

0 comments on commit 76b17b0

Please sign in to comment.