Skip to content

Commit

Permalink
Fix order of parameters (#332)
Browse files Browse the repository at this point in the history
* Fix order of parameters

* Add test

* Bump version

* Update docs/Manifest.toml
  • Loading branch information
devmotion authored Sep 8, 2021
1 parent 6fc4eae commit e7b3db5
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 80 deletions.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ 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 = "5.0.0"
version = "5.0.1"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
Expand All @@ -18,6 +18,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MCMCDiagnosticTools = "be115224-59cd-429b-ad48-344e309966f0"
MLJModelInterface = "e80e1ace-859a-464e-9ed9-23947d8ae3ea"
NaturalSort = "c020b1a1-e9b0-503a-9c33-f039bfc54a85"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Expand All @@ -40,6 +41,7 @@ KernelDensity = "0.6.2"
MCMCDiagnosticTools = "0.1"
MLJModelInterface = "0.3.5, 0.4, 1.0"
NaturalSort = "1"
OrderedCollections = "1.4"
PrettyTables = "0.9, 0.10, 0.11, 0.12, 1"
RecipesBase = "0.7, 0.8, 1.0"
SpecialFunctions = "^0.8, 0.9, 0.10, 1.0"
Expand Down
Loading

2 comments on commit e7b3db5

@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/44431

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 v5.0.1 -m "<description of version>" e7b3db5a4bb09e0c7dcdffc82a51461e084faa54
git push origin v5.0.1

Please sign in to comment.