Skip to content

Commit

Permalink
versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
abelcastilloavant committed Jun 6, 2016
1 parent 62d51cd commit d85d9e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: looker3
Type: Package
Title: looker3 (http://github.com/abelcastilloavant/avant-looker3)
Description: Pull data from Looker using the fancy new 3.0 API.
Version: 0.1.6
Version: 0.1.7
Author: Abel Castillo <[email protected]>
Maintainer: Abel Castillo <[email protected]>
Authors@R: c(person("Abel", "Castillo",
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version 0.1.6
- `extract_query_result` now uses `readr::read_csv` instead of `utils::read.csv` under the hood.

# Version 0.1.6
- removed `logout_api_call`, using `cacher` to cache tokens instead.

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-response_handlers.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe("processing successful responses", {
})
test_that("extract_query_result returns a data frame", {
result <- extract_query_result(fake_query_response)
# readr::read_csv adds extra class types,
# readr::read_csv adds extra classes,
# so let's remove them before making our comparison
class(result) <- "data.frame"
expect_equal(result, data.frame(ID = 1, VALUE = 2))
Expand Down

0 comments on commit d85d9e3

Please sign in to comment.