Skip to content

Commit

Permalink
Merge pull request #19 from Boulevard/lnikkila/v0.7.0
Browse files Browse the repository at this point in the history
Release v0.7.0
  • Loading branch information
lnikkila authored Sep 21, 2017
2 parents 7a09dc0 + c5eb37a commit 2683748
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@

Everything is still a work in progress.

- OAuth
- OAuth 1.0a
- Data queries
- Item API
- Preferences API
- SalesReceipt API

## Installation

Expand All @@ -20,7 +21,7 @@ dependencies in `mix.exs`:

```elixir
def deps do
[{:exquickbooks, "~> 0.6.1"}]
[{:exquickbooks, "~> 0.7.0"}]
end
```

Expand Down
4 changes: 2 additions & 2 deletions lib/exquickbooks/oauth.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule ExQuickBooks.OAuth do
token using `get_request_token/1`:
```
{:ok, request_token} = ExQuickBooks.get_request_token(callback_url)
{:ok, request_token} = ExQuickBooks.OAuth.get_request_token(callback_url)
```
The token is an `ExQuickBooks.OAuth.RequestToken`, see its documentation for
Expand Down Expand Up @@ -44,7 +44,7 @@ defmodule ExQuickBooks.OAuth do
callback request parameters for an access token using `get_access_token/3`:
```
{:ok, access_token} = ExQuickBooks.get_access_token(request_token, realm_id, verifier)
{:ok, access_token} = ExQuickBooks.OAuth.get_access_token(request_token, realm_id, verifier)
```
Now you can store the access token and use it in API calls to authenticate on
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule ExQuickBooks.Mixfile do

def project do
[app: :exquickbooks,
version: "0.6.1",
version: "0.7.0",
elixir: "~> 1.4",

# Compilation
Expand Down

0 comments on commit 2683748

Please sign in to comment.