Skip to content

Commit

Permalink
Fix non-differentiation ruleset for keyword argument dropping
Browse files Browse the repository at this point in the history
I don't really know what to call this, but it fixes #257 , whatever that is.
  • Loading branch information
ChrisRackauckas committed Sep 3, 2020
1 parent bcd92d0 commit 6561b40
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 = "ChainRules"
uuid = "082447d4-558c-5d27-93f4-14fc19e9eca2"
version = "0.7.16"
version = "0.7.17"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
2 changes: 1 addition & 1 deletion src/rulesets/Base/nondiff.jl
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ VERSION >= v"1.1" && @non_differentiable splitpath(::AbstractString)
@non_differentiable xor(::Any, ::Any, ::Any, ::Any, ::Any)

# Non-public Base
@non_differentiable Base.OneTo(::Integer)
@non_differentiable Base.OneTo(::AbstractRange{<:Integer})

@non_differentiable Base.gc_num()
@non_differentiable Base.time_ns()
@non_differentiable Base.typename(::Any)
Expand Down

2 comments on commit 6561b40

@ChrisRackauckas
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 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/20793

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.7.17 -m "<description of version>" 6561b40d620b07c194212bc0ebda5ea5f6526498
git push origin v0.7.17

Please sign in to comment.