Skip to content

Commit

Permalink
hotfix progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
kescobo committed Mar 21, 2022
1 parent e11246a commit d713462
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@
Manifest.toml
/docs/build/
.vscode
.envrc
scratch.*
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Airtable"
uuid = "96f7d883-6668-4fbe-bb01-b60427b16035"
authors = ["Kevin Bonham PhD <[email protected]>", "contributors"]
version = "0.2.1"
version = "0.2.2"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
2 changes: 1 addition & 1 deletion src/interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function query(cred::Credential, baseid, tablename; query_kwargs...)
if haskey(resp, :offset)
prog = ProgressUnknown("Making additional requests:", spinner=true)
while haskey(resp, :offset)
ProgressMeter.next!(prog, spinner=true)
ProgressMeter.next!(prog)
resp = get(cred, path(tab); offset=resp.offset, query_kwargs...)
append!(records, map(rec-> AirRecord(rec.id, tab, rec.fields), resp.records))
end
Expand Down

2 comments on commit d713462

@kescobo
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/57001

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" d71346231554255ebbf39483a4c0529e957d75e1
git push origin v0.2.2

Please sign in to comment.