Skip to content

Commit 25dd902

Browse files
authored
build: bump version, draft changelog. (#1274)
1 parent d343855 commit 25dd902

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
# v0.23.2
2+
3+
## Bug Fixes
4+
5+
- fixup for failing hmc test by @michaeldeistler in https://github.com/sbi-dev/sbi/pull/1247
6+
- fix: make RestrictedPrior a distribution to enable log_prob @janfb in https://github.com/sbi-dev/sbi/pull/1257
7+
- fix: npe iid handling by @janfb in https://github.com/sbi-dev/sbi/pull/1262
8+
- fix: tutorials test error handling, fix bugs in tutorials by @janfb in https://github.com/sbi-dev/sbi/pull/1264
9+
- fix #1260: include points in plotting limits by @janfb in https://github.com/sbi-dev/sbi/pull/1265
10+
- fix: conditioned potential error handling by @janfb in https://github.com/sbi-dev/sbi/pull/1275
11+
12+
## Documentation
13+
14+
- Rename SNPE to NPE in the README by @michaeldeistler in https://github.com/sbi-dev/sbi/pull/1248
15+
- update pickling FAQ by @michaeldeistler in https://github.com/sbi-dev/sbi/pull/1255
16+
- Adding example for custom DataLoader to tutorial 18 by @psteinb in https://github.com/sbi-dev/sbi/pull/1256
17+
- docs: add readme intro to docs landing page by @janfb in https://github.com/sbi-dev/sbi/pull/1272
18+
19+
## Maintenance
20+
21+
- Refactor simulate_for_sbi location by @samadpls in https://github.com/sbi-dev/sbi/pull/1253
22+
- build: devcontainer update by @janfb in https://github.com/sbi-dev/sbi/pull/1252
23+
- fix: docker notebook python version by @janfb in https://github.com/sbi-dev/sbi/pull/1258
24+
- refactor: remove outputs except plots from tutorials. by @janfb in https://github.com/sbi-dev/sbi/pull/1266
25+
- build: automatic nb stripping and pypi upload by @janfb in https://github.com/sbi-dev/sbi/pull/1267
26+
- refactor: remove deprecated x_shape where not needed. by @janfb in https://github.com/sbi-dev/sbi/pull/1271
27+
28+
# v0.23.1
29+
30+
- fix: include `score` folder by adding `__init__.py` (#1245 #1246)
31+
132
# v0.23.0
233

334
## Announcements

sbi/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of sbi, a toolkit for simulation-based inference. sbi is licensed
22
# under the Apache License Version 2.0, see <https://www.apache.org/licenses/>
33

4-
VERSION = (0, 23, 1)
4+
VERSION = (0, 23, 2)
55

66
__version__ = ".".join(map(str, VERSION))

0 commit comments

Comments
 (0)