Skip to content

Commit bf3d87f

Browse files
author
github-actions
committed
chore(release): 0.0.6
Automatically generated by python-semantic-release
1 parent 7cd4195 commit bf3d87f

File tree

3 files changed

+45
-2
lines changed

3 files changed

+45
-2
lines changed

Diff for: CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22

33

44

5+
## v0.0.6 (2024-04-19)
6+
7+
### Ci
8+
9+
* ci: public release
10+
11+
turning on the PyPI upload flag to kick off a public release ([`6018126`](https://github.com/LedgerInvesting/bayesblend/commit/601812651331e4482e2ca4176d66088939f5ca0a))
12+
13+
### Fix
14+
15+
* fix: docstring update ([`9d1386a`](https://github.com/LedgerInvesting/bayesblend/commit/9d1386a3fc597c9bd0a0dd691a346a0a66e4f837))
16+
17+
* fix: rm todo from install ([`f04c8c8`](https://github.com/LedgerInvesting/bayesblend/commit/f04c8c88fc6d204f48d8129e874c8f0cf5666e14))
18+
19+
### Unknown
20+
21+
* Merge pull request #37 from LedgerInvesting/fix-docstring
22+
23+
fix: docstring update ([`7cd4195`](https://github.com/LedgerInvesting/bayesblend/commit/7cd419571b2320571b200873efab5e47b477d19f))
24+
25+
* Merge pull request #36 from LedgerInvesting/docs-public-release
26+
27+
ci: public release ([`a7dbb00`](https://github.com/LedgerInvesting/bayesblend/commit/a7dbb0072582bf1cf93fabf64bd6cdec9290c5a1))
28+
29+
* Merge pull request #34 from LedgerInvesting/docs-add-pmp
30+
31+
docs: fix PMP calculation ([`1c65be7`](https://github.com/LedgerInvesting/bayesblend/commit/1c65be77e0f718a2e633bc055b7986925b1ac327))
32+
33+
534
## v0.0.5 (2024-04-19)
635

736
### Ci
@@ -14,6 +43,16 @@
1443

1544
### Documentation
1645

46+
* docs(simulation.md): Baye's -> Bayes' ([`0067930`](https://github.com/LedgerInvesting/bayesblend/commit/0067930697e1b758f6740807c90bfd9492de0d2d))
47+
48+
* docs(simulation.md): use z, not k ([`b2bc721`](https://github.com/LedgerInvesting/bayesblend/commit/b2bc7211fd0e773f0a71f019a55fc3e59e66f101))
49+
50+
* docs: grammar
51+
52+
Co-authored-by: Nathaniel Haines <[email protected]> ([`30b483e`](https://github.com/LedgerInvesting/bayesblend/commit/30b483ea73889c37d539693d942520826090c4dc))
53+
54+
* docs: fix PMP calculation ([`2685c03`](https://github.com/LedgerInvesting/bayesblend/commit/2685c038f5b08b47ed0cda67c0e4cc489f19715e))
55+
1756
* docs: fix marginal likelihood in blending.md ([`a54a442`](https://github.com/LedgerInvesting/bayesblend/commit/a54a442c75bd36ba7be0a4d8ad1adaf38f272845))
1857

1958
* docs: clarify the mixture model definition, fix index link ([`40926fa`](https://github.com/LedgerInvesting/bayesblend/commit/40926fa83b00f6b5dec2f3abc89552058aedd243))
@@ -44,6 +83,10 @@ Previously, the Draws.from_lpd method was reshaping the lpd array by referencing
4483

4584
fix(io): allow multiple dimension lpd arrays in from_lpd method ([`c9aa90b`](https://github.com/LedgerInvesting/bayesblend/commit/c9aa90b82d1d912a982b8d6ad799fd528d015666))
4685

86+
* correct mixture code ([`70048e3`](https://github.com/LedgerInvesting/bayesblend/commit/70048e30e7e99d6d70dc647275b38d6307886cd6))
87+
88+
* Merge branch 'docs-add-pmp' of git+ssh://github.com/LedgerInvesting/bayesblend into docs-add-pmp ([`23957b5`](https://github.com/LedgerInvesting/bayesblend/commit/23957b5dea2d5a509259ee250350d234a8b556e4))
89+
4790
* Merge pull request #33 from LedgerInvesting/docs-marginal-math
4891

4992
docs: fix marginal likelihood in blending.md ([`d1d690a`](https://github.com/LedgerInvesting/bayesblend/commit/d1d690a872aa1a91928d9500f9349e958558e8e8))

Diff for: bayesblend/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
)
88
from .io import Draws
99

10-
__version__ = "0.0.5"
10+
__version__ = "0.0.6"
1111

1212
__all__ = [
1313
"SimpleBlend",

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bayesblend"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
description = "Easily combine predictions from multiple Bayesian models using techniques including (pseudo) Bayesian model averaging, hierarchical stacking, and more!"
55
authors = [
66
"Nathaniel Haines <[email protected]>",

0 commit comments

Comments
 (0)