Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
paschermayr committed Feb 17, 2023
1 parent 7f1e2f1 commit 5f5ef8f
Show file tree
Hide file tree
Showing 3 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,7 +1,7 @@
name = "Baytes"
uuid = "72ddfcfc-6e9d-43df-829b-7aed7c549d4f"
authors = ["Patrick Aschermayr <p.aschermayr@gmail.com>"]
version = "0.3.3"
version = "0.3.4"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down
2 changes: 1 addition & 1 deletion src/Baytes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ using MCMCDiagnosticTools: MCMCDiagnosticTools, ess_rhat, mcse, gelmandiag
using Statistics: Statistics, mean, std, sqrt, quantile, var
using Dates: Dates, today, hour, minute, now
using JLD2: JLD2, jldsave
using PrettyTables: PrettyTables, pretty_table
using PrettyTables: PrettyTables, pretty_table, tf_html_simple

################################################################################
#Abstract types to be dispatched in Examples section
Expand Down
4 changes: 2 additions & 2 deletions src/sampling/chain.jl
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function savechainsummary(
header=tablenames, row_labels=paramnames,
backend=Val(:html),
alignment = :c,
tf = tf_html_simple,
tf = PrettyTables.tf_html_simple,
standalone = true
)
end
Expand Down Expand Up @@ -332,7 +332,7 @@ function savechainsummary(
header=vcat("True", tablenames), row_labels=paramnames,
backend=Val(:html),
alignment = :c,
tf = tf_html_simple,
tf = PrettyTables.tf_html_simple,
standalone = true
)
end
Expand Down

2 comments on commit 5f5ef8f

@paschermayr
Copy link
Owner 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/77910

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.3.4 -m "<description of version>" 5f5ef8fa7c8fd490c01eb3e7e0b4db572b338fe7
git push origin v0.3.4

Please sign in to comment.