Skip to content

Commit

Permalink
Release 1.36.0 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
toaza authored Jun 19, 2024
1 parent 08668d2 commit 2fffc46
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.transferzero.sdk</groupId>
<artifactId>transferzero-sdk-java8</artifactId>
<version>1.35.1-SNAPSHOT</version>
<version>1.36.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -55,7 +55,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.transferzero.sdk:transferzero-sdk-java8:1.35.1-SNAPSHOT"
compile "com.transferzero.sdk:transferzero-sdk-java8:1.36.0-SNAPSHOT"
```

### Others
Expand All @@ -68,7 +68,7 @@ mvn clean package

Then manually install the following JARs:

* `target/transferzero-sdk-java8-1.35.1-SNAPSHOT.jar`
* `target/transferzero-sdk-java8-1.36.0-SNAPSHOT.jar`
* `target/lib/*.jar`

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

group = 'com.transferzero.sdk'
version = '1.35.1-SNAPSHOT'
version = '1.36.0-SNAPSHOT'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.transferzero.sdk",
name := "transferzero-sdk-java8",
version := "1.35.1-SNAPSHOT",
version := "1.36.0-SNAPSHOT",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>transferzero-sdk-java8</artifactId>
<packaging>jar</packaging>
<name>transferzero-sdk-java8</name>
<version>1.35.1-SNAPSHOT</version>
<version>1.36.0-SNAPSHOT</version>
<url>https://github.com/transferzero/transferzero-sdk-java8</url>
<description>Java 8 library for the TransferZero API</description>
<scm>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,11 @@ public void testPayinMethodDetailsNGNBank() {
}

/**
* Test the property 'paymentMethod'
* Test the property 'phoneNumber'
*/
@Test
public void paymentMethodTest() {
// TODO: test paymentMethod
}

/**
* Test the property 'redirectUrl'
*/
@Test
public void redirectUrlTest() {
// TODO: test redirectUrl
public void phoneNumberTest() {
// TODO: test phoneNumber
}

}

0 comments on commit 2fffc46

Please sign in to comment.