Skip to content

Commit

Permalink
Fix deprecation warning (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion authored Apr 18, 2023
1 parent f06b776 commit f1f3d1f
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 = "ReverseDiff"
uuid = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
version = "1.14.4"
version = "1.14.5"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
2 changes: 1 addition & 1 deletion src/derivatives/broadcast.jl
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ end

## A generalization of the broadcasting approach in ReverseDiff for general functions

@inline function ∇broadcast(f::F, args::Vararg{<:Any}) where {F}
@inline function ∇broadcast(f::F, args::Vararg{Any}) where {F}
inds, targs, untracked = splitargs(args)
N = length(targs)
D = promote_type(getouttype.(targs)...)
Expand Down

2 comments on commit f1f3d1f

@devmotion
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/81861

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

Please sign in to comment.