Skip to content

Commit

Permalink
Remove deprecated Formatting (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Feb 28, 2024
1 parent 52cc3e2 commit 5f8e591
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ uuid = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
keywords = ["markov chain monte carlo", "probablistic programming"]
license = "MIT"
desc = "Chain types and utility functions for MCMC simulations."
version = "6.0.5"
version = "6.0.6"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Formatting = "59287772-0a20-5a39-b81b-1366585eb4c0"
IteratorInterfaceExtensions = "82899510-4779-5014-852e-03e436cf321d"
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand All @@ -32,7 +31,6 @@ AbstractMCMC = "0.4, 0.5, 1.0, 2.0, 3.0, 4, 5"
AxisArrays = "0.4.4"
Dates = "<0.0.1, 1"
Distributions = "0.21, 0.22, 0.23, 0.24, 0.25"
Formatting = "0.4"
IteratorInterfaceExtensions = "0.1.1, 1"
KernelDensity = "0.6.2"
LinearAlgebra = "<0.0.1, 1"
Expand Down
1 change: 0 additions & 1 deletion src/MCMCChains.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import AbstractMCMC
import AbstractMCMC: chainscat
using Distributions
using RecipesBase
using Formatting
using Dates
using KernelDensity: kde, pdf
import StatsBase: autocov, counts, sem, AbstractWeights,
Expand Down

2 comments on commit 5f8e591

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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 v6.0.6 -m "<description of version>" 5f8e591ad3a9c6e8af01732d8a421cff306434c1
git push origin v6.0.6

Please sign in to comment.