From 64383d7507456eb22124cb72419b959f0112b408 Mon Sep 17 00:00:00 2001 From: Michael Abbott <32575566+mcabbott@users.noreply.github.com> Date: Fri, 27 Aug 2021 12:50:38 -0400 Subject: [PATCH 1/2] tighter fill! non-diff --- src/rulesets/Base/nondiff.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rulesets/Base/nondiff.jl b/src/rulesets/Base/nondiff.jl index a85f32170..b9543f062 100644 --- a/src/rulesets/Base/nondiff.jl +++ b/src/rulesets/Base/nondiff.jl @@ -41,8 +41,8 @@ @non_differentiable eachcol(::AbstractArray{Bool}) @non_differentiable eachrow(::AbstractArray{Bool}) @non_differentiable eachslice(::AbstractArray{Bool}) -@non_differentiable fill(::AbstractArray{Bool}) -@non_differentiable fill!(::AbstractArray, ::Any) +@non_differentiable fill(::Bool, ::Any...) +@non_differentiable fill!(::AbstractArray{Bool}, ::Any) @non_differentiable findprev(::AbstractArray{Bool}, ::Any) @non_differentiable findprev(::Any, ::AbstractArray{Bool}, ::Any) @non_differentiable getindex(::AbstractArray{Bool}, ::Any...) From f1041eceeb6ec890e710ebd74089fb9e855b84d0 Mon Sep 17 00:00:00 2001 From: Michael Abbott <32575566+mcabbott@users.noreply.github.com> Date: Fri, 27 Aug 2021 13:39:27 -0400 Subject: [PATCH 2/2] v1.11.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 5b1cb4cb0..dc3687ffa 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ChainRules" uuid = "082447d4-558c-5d27-93f4-14fc19e9eca2" -version = "1.11.0" +version = "1.11.1" [deps] ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"