Skip to content

Commit

Permalink
Actual fix for LazyArrays extension (#247)
Browse files Browse the repository at this point in the history
* actual fix for lazyarrays extension

* patch version bump
  • Loading branch information
torfjelde authored Jun 13, 2023
1 parent a80fdb8 commit 2aef975
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "DistributionsAD"
uuid = "ced4e74d-a319-5a8a-b0ac-84af2272839c"
version = "0.6.48"
version = "0.6.49"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
6 changes: 3 additions & 3 deletions ext/DistributionsADLazyArraysExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ module DistributionsADLazyArraysExt
if isdefined(Base, :get_extension)
using DistributionsAD
using LazyArrays
using DistributionsAD: Distributions, ValueSupport
using DistributionsAD: Distributions, ValueSupport, UnivariateDistribution, VectorOfUnivariate, MatrixOfUnivariate
using LazyArrays: BroadcastArray, BroadcastVector, LazyArray
else
using ..DistributionsAD
using ..LazyArrays
using ..DistributionsAD: Distributions, ValueSupport
using ..DistributionsAD: Distributions, ValueSupport, UnivariateDistribution, VectorOfUnivariate, MatrixOfUnivariate
using ..LazyArrays: BroadcastArray, BroadcastVector, LazyArray
end

Expand Down Expand Up @@ -49,4 +49,4 @@ end

DistributionsAD.lazyarray(f, x...) = LazyArray(Base.broadcasted(f, x...))

end # module
end # module

2 comments on commit 2aef975

@torfjelde
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/85486

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.6.49 -m "<description of version>" 2aef975367197879fe4b41cef737d42025523463
git push origin v0.6.49

Please sign in to comment.