Skip to content

Commit

Permalink
Replace DoesNotExist with NoTangent (#327)
Browse files Browse the repository at this point in the history
* Replace `DoesNotExist` with `NoTangent`

* Bump version
  • Loading branch information
devmotion authored Jun 2, 2021
1 parent 26acc96 commit f67c0f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "SpecialFunctions"
uuid = "276daf66-3868-5448-9aa4-cd146d93841b"
version = "1.5"
version = "1.5.1"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
4 changes: 2 additions & 2 deletions src/chainrules.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ ChainRulesCore.@scalar_rule(
(
ChainRulesCore.@not_implemented(INCOMPLETE_GAMMA_INFO),
z,
ChainRulesCore.DoesNotExist(),
ChainRulesCore.NoTangent(),
),
(
ChainRulesCore.@not_implemented(INCOMPLETE_GAMMA_INFO),
-z,
ChainRulesCore.DoesNotExist(),
ChainRulesCore.NoTangent(),
),
)
ChainRulesCore.@scalar_rule(
Expand Down

2 comments on commit f67c0f6

@giordano
Copy link
Member

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/38048

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

Please sign in to comment.