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

Commit

Permalink
[RELEASE] v1.1.0 (#18)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
somentelucas authored Sep 21, 2018
1 parent c7ee3db commit 5bee84f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
.gradle
out/
*.iml
build/
build/
.DS_Store
gradle/.DS_Store
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'signing'

group 'br.com.moip'
archivesBaseName = "sdk-java"
version '1.0.0'
version '1.1.0'

description = "Java SDK for Moip APIs integration"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/br/com/moip/models/error/Error.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
package br.com.moip.models.error;

class Error {
public class Error {

private String code;
private String path;
Expand Down

0 comments on commit 5bee84f

Please sign in to comment.