Skip to content

Commit 1bdb76e

Browse files
authored
Merge branch 'breaking' into py/actually-use-init
2 parents 3bb7ade + 1e1cd94 commit 1bdb76e

26 files changed

+164
-283
lines changed

.github/workflows/Benchmarking.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Checkout Repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
ref: ${{ github.event.pull_request.head.sha }}
1515

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- Group2
5757

5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060

6161
- uses: julia-actions/setup-julia@v2
6262
with:

.github/workflows/DocTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030

3131
- uses: julia-actions/setup-julia@v2
3232
with:

.github/workflows/DocsNav.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout gh-pages branch
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
ref: gh-pages
2323

.github/workflows/DocsPreviewCleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout gh-pages branch
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
ref: gh-pages
1515
- name: Delete preview and history + push changes

.github/workflows/Enzyme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
enzyme:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- uses: julia-actions/setup-julia@v2
2626
with:

.github/workflows/IntegrationTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
- {user: TuringLang, repo: Turing.jl}
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: julia-actions/setup-julia@v2
2626
with:
2727
version: 1
2828
- uses: julia-actions/julia-buildpkg@v1
2929
- name: Clone Downstream
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
3333
path: downstream

.github/workflows/JuliaPre.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- Group2
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- uses: julia-actions/setup-julia@v2
2828
with:
2929
version: 'pre' # pre-release

HISTORY.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
## 0.38.0
44

5-
[...]
5+
The `varname_leaves` and `varname_and_value_leaves` functions have been moved to AbstractPPL.jl.
6+
Their behaviour is otherwise identical.
7+
8+
## 0.37.2
9+
10+
Make the `resume_from` keyword work for multiple-chain (parallel) sampling as well.
11+
Prior to this version, it was silently ignored.
12+
Note that to get the correct behaviour you also need to have a recent version of MCMCChains (v7.2.1).
613

714
## 0.37.1
815

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ DynamicPPLMooncakeExt = ["Mooncake"]
4747
[compat]
4848
ADTypes = "1"
4949
AbstractMCMC = "5"
50-
AbstractPPL = "0.13"
50+
AbstractPPL = "0.13.1"
5151
Accessors = "0.1"
5252
BangBang = "0.4.1"
5353
Bijectors = "0.13.18, 0.14, 0.15"

0 commit comments

Comments
 (0)