Skip to content

Commit ef39687

Browse files
committed
Enabled batch of ranges by default on read_rows
1 parent b2ba542 commit ef39687

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/elixir_google_spreadsheets/spreadsheet.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ defmodule GSS.Spreadsheet do
385385
column_to = Keyword.get(options, :column_to, @default_column_to)
386386

387387
options =
388-
if Keyword.get(options, :batch_range, false) do
388+
if Keyword.get(options, :batch_range, true) do
389389
batched_range = range(row_index_start, row_index_end, column_from, column_to)
390390
options
391391
|> Keyword.put(:batched_ranges, [batched_range])

mix.exs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule GSS.Mixfile do
44
def project do
55
[
66
app: :elixir_google_spreadsheets,
7-
version: "0.1.9",
7+
version: "0.1.10",
88
elixir: "~> 1.4",
99
description: "Elixir library to read and write data of Google Spreadsheets.",
1010
docs: [extras: ["README.md"]],
@@ -48,7 +48,6 @@ defmodule GSS.Mixfile do
4848
{:earmark, ">= 0.0.0", only: :dev},
4949
{:ex_doc, ">= 0.0.0", only: :dev},
5050
{:logger_file_backend, ">= 0.0.10", only: [:dev, :test]},
51-
#{:json_web_token, git: "https://github.com/starbuildr/json_web_token_ex.git", override: true},
5251
{:dialyxir, "~> 0.5", only: :dev, runtime: false}
5352
]
5453
end

0 commit comments

Comments
 (0)