Skip to content

Commit

Permalink
fixing missing reference to ValueSupport from Distributions (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
torfjelde authored Jun 10, 2023
1 parent e4ea4fe commit e559ac2
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 = "DistributionsAD"
uuid = "ced4e74d-a319-5a8a-b0ac-84af2272839c"
version = "0.6.47"
version = "0.6.48"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
4 changes: 2 additions & 2 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
using DistributionsAD: Distributions, ValueSupport
using LazyArrays: BroadcastArray, BroadcastVector, LazyArray
else
using ..DistributionsAD
using ..LazyArrays
using ..DistributionsAD: Distributions
using ..DistributionsAD: Distributions, ValueSupport
using ..LazyArrays: BroadcastArray, BroadcastVector, LazyArray
end

Expand Down

2 comments on commit e559ac2

@yebai
Copy link
Member

@yebai yebai commented on e559ac2 Jun 10, 2023

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

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.48 -m "<description of version>" e559ac2e0463139bc6c3123357a3b55bc8de37e2
git push origin v0.6.48

Please sign in to comment.