Skip to content

Commit

Permalink
Merge #119
Browse files Browse the repository at this point in the history
119: split has no parameter keep, instead keepempty r=iamed2 a=mattBrzezinski



Co-authored-by: Matt Brzezinski <matt.brzezinski@invenia.ca>
  • Loading branch information
bors[bot] and mattBrzezinski authored May 27, 2020
2 parents b1d185b + 317cc13 commit d42e912
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "AWSCore"
uuid = "4f1ea46c-232b-54a6-9b17-cc2d0f3e6598"
version = "0.6.11"
version = "0.6.12"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
2 changes: 1 addition & 1 deletion src/sign.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ end
function sign_aws2!(r::AWSRequest, t)

query = Dict{AbstractString,AbstractString}()
for elem in split(r[:content], '&', keep=false)
for elem in split(r[:content], '&', keepempty=false)
(n, v) = split(elem, "=")
query[n] = HTTP.unescapeuri(v)
end
Expand Down

2 comments on commit d42e912

@mattBrzezinski
Copy link
Member

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/15485

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.6.12 -m "<description of version>" d42e912c90cc6512ba611299a069fa089a97105f
git push origin v0.6.12

Please sign in to comment.