Skip to content

Commit

Permalink
Merge pull request #1357 from JuliaStats/dw/fixbetabinomial
Browse files Browse the repository at this point in the history
Fix #1356
  • Loading branch information
mschauer authored Jul 3, 2021
2 parents a6b9960 + 61fed19 commit 34df63d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Distributions"
uuid = "31c24e10-a181-5473-b8eb-7969acd0382f"
authors = ["JuliaStats"]
version = "0.25.7"
version = "0.25.8"

[deps]
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
Expand Down
2 changes: 1 addition & 1 deletion src/univariate/discrete/betabinomial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ end
# sum values of the probability mass function
cdf(d::BetaBinomial, k::Int) = integerunitrange_cdf(d, k)

for f in (:cdf, :logcdf, :logccdf)
for f in (:ccdf, :logcdf, :logccdf)
@eval begin
$f(d::BetaBinomial, k::Real) = $(Symbol(f, :_int))(d, k)
$f(d::BetaBinomial, k::Int) = $(Symbol(:integerunitrange_, f))(d, k)
Expand Down

2 comments on commit 34df63d

@devmotion
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/40167

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.25.8 -m "<description of version>" 34df63d9bec975ee5baeeb040d8720ee6f1fce99
git push origin v0.25.8

Please sign in to comment.