Skip to content

Commit

Permalink
Fix for BijectorsZygoteExt. (#269)
Browse files Browse the repository at this point in the history
* added missing reference in the Zygote extension

* bump patch version
  • Loading branch information
torfjelde authored Jun 14, 2023
1 parent 1cbb5a4 commit 3fe36ac
Show file tree
Hide file tree
Showing 2 changed files with 5 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 = "Bijectors"
uuid = "76274a88-744f-5084-9051-94815aaf08c4"
version = "0.12.7"
version = "0.12.8"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down
6 changes: 4 additions & 2 deletions ext/BijectorsZygoteExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ if isdefined(Base, :get_extension)
pd_link,
pd_from_lower,
lower_triangular,
upper_triangular
upper_triangular,
getlogp

using Bijectors.LinearAlgebra
using Bijectors.Compat: eachcol
Expand Down Expand Up @@ -67,7 +68,8 @@ else
pd_link,
pd_from_lower,
lower_triangular,
upper_triangular
upper_triangular,
getlogp

using ..Bijectors.LinearAlgebra
using ..Bijectors.Compat: eachcol
Expand Down

2 comments on commit 3fe36ac

@yebai
Copy link
Member

@yebai yebai commented on 3fe36ac Jun 14, 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/85575

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.12.8 -m "<description of version>" 3fe36acbc6efd01da47e87365e7c47ae8a2cf3bf
git push origin v0.12.8

Please sign in to comment.