Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 5bee84f

Browse files
authored
[RELEASE] v1.1.0 (#18)
* adds basic settings and basic auth * adds OAuth authentication * adds Moip API error models * adds Moip API exceptions * adds request properties * adds Setup class * adds GsonFactory * adds missing request properties * doc * preparing methods to receive responses * feat(customer): adds customer endpoint * fix(customer): apply fixes to customer creation * feat(customer): adds get customer * feat(order): adds create order endpoint * feat(order): adds get order * feat(payment): adds payment endpoint * feat(customer): adds funding instruments endpoint and list customers * adds resource to cast objects to map and adds validation to Response method * feat(order): adds list orders * feat(order): adds list order payments * feat(payment): adds capture and cancel pre-authorized * feat(refund): adds refund endpoints * test: add missing tests * feat(notification): adds notification preference endpoint * test(notification): adds missing tests * adds resource to convert the JSON to List * feat(webhook): adds webhook resources * refactor: organize instances * fix method access level * fixed untracked files * remove some @test annotations * test(customer): add missing unit tests to customer * completes customer unit tests * test(order): adds order unit tests * test(payment): adds payment unit tests * test(refund): adds refund unit tests * test(notification): adds notification unit tests * .gitignore * circleCI integration * circleCI * update circleCI test * update gradle * update circleci * test circleci * test circleci * test circleci * test circleci * test circleci * test circleci * update circleci * test circleci * test circleci * test circleci * test circleci * test circleci * update circleci * remove comment * account * feat(account): adds moip account endpoint * test(account): adds tests to get account * APIResources: fix imports * fix typo * Account: fix method isTaxDocument * Account: refactor method checkExistence * resolves codacy issue * feat(connect): adds Moip Connect features * feat(account): get keys * test(connect): connect unit tests * feat(multiorders): create, get * test(multiorder): get tests * fix class imports * refactor: change resources name * fix class imports * refactor multiorder tests * feat(multipayments): create, get, capture and cancel pre-authorized * test(multipayment): add unit tests * test(multiorder): pay multiorder * test(multiorder): pay multiorder * fix class imports * fix codacy issue * feat(bank account): adds create, get, list, delete and update * test(bank account): add feature tests * style: fix spacement * feat(balances): adds get balances * test: get balances * feat(entries): adds get and list * test: entries * feat(transfers): adds create, revert, get and list * test: transfers * fix class imports * feat(escrow): release * test: escrow * chore: bump version to v1.0.0-beta * remove conflicts * feat: adds PayloadFactory resources * refactor: fix connect resources * docs: adds README.md description * release v1.0.0 * public class Error * v1.0.1 * Changing to minor release instead of patch
1 parent c7ee3db commit 5bee84f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
.gradle
33
out/
44
*.iml
5-
build/
5+
build/
6+
.DS_Store
7+
gradle/.DS_Store

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44

55
group 'br.com.moip'
66
archivesBaseName = "sdk-java"
7-
version '1.0.0'
7+
version '1.1.0'
88

99
description = "Java SDK for Moip APIs integration"
1010

src/main/java/br/com/moip/models/error/Error.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44
package br.com.moip.models.error;
55

6-
class Error {
6+
public class Error {
77

88
private String code;
99
private String path;

0 commit comments

Comments
 (0)