Skip to content

Commit

Permalink
Missing comma (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattBrzezinski authored Mar 22, 2023
1 parent 68ef035 commit ee6ea42
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,7 +1,7 @@
name = "AWS"
uuid = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"
license = "MIT"
version = "1.84.0"
version = "1.84.1"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/request.jl
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function submit_request(aws::AbstractAWSConfig, request::Request; return_headers
"RequestThrottledException",
"TooManyRequestsException",
"ProvisionedThroughputExceededException",
"TransactionInProgressException"
"TransactionInProgressException",
"LimitExceededException",
"RequestLimitExceeded",
"BandwidthLimitExceeded",
Expand Down

2 comments on commit ee6ea42

@mattBrzezinski
Copy link
Member 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/80128

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 v1.84.1 -m "<description of version>" ee6ea42521304fbcb67f610a4311a41a4e2ae37a
git push origin v1.84.1

Also, note the warning: Version 1.84.1 skips over 1.84.0
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.