Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# v0.23.2

## Bug Fixes

- fixup for failing hmc test by @michaeldeistler in https://github.com/sbi-dev/sbi/pull/1247
- fix: make RestrictedPrior a distribution to enable log_prob @janfb in https://github.com/sbi-dev/sbi/pull/1257
- fix: npe iid handling by @janfb in https://github.com/sbi-dev/sbi/pull/1262
- fix: tutorials test error handling, fix bugs in tutorials by @janfb in https://github.com/sbi-dev/sbi/pull/1264
- fix #1260: include points in plotting limits by @janfb in https://github.com/sbi-dev/sbi/pull/1265
- fix: conditioned potential error handling by @janfb in https://github.com/sbi-dev/sbi/pull/1275

## Documentation

- Rename SNPE to NPE in the README by @michaeldeistler in https://github.com/sbi-dev/sbi/pull/1248
- update pickling FAQ by @michaeldeistler in https://github.com/sbi-dev/sbi/pull/1255
- Adding example for custom DataLoader to tutorial 18 by @psteinb in https://github.com/sbi-dev/sbi/pull/1256
- docs: add readme intro to docs landing page by @janfb in https://github.com/sbi-dev/sbi/pull/1272

## Maintenance

- Refactor simulate_for_sbi location by @samadpls in https://github.com/sbi-dev/sbi/pull/1253
- build: devcontainer update by @janfb in https://github.com/sbi-dev/sbi/pull/1252
- fix: docker notebook python version by @janfb in https://github.com/sbi-dev/sbi/pull/1258
- refactor: remove outputs except plots from tutorials. by @janfb in https://github.com/sbi-dev/sbi/pull/1266
- build: automatic nb stripping and pypi upload by @janfb in https://github.com/sbi-dev/sbi/pull/1267
- refactor: remove deprecated x_shape where not needed. by @janfb in https://github.com/sbi-dev/sbi/pull/1271

# v0.23.1

- fix: include `score` folder by adding `__init__.py` (#1245 #1246)

# v0.23.0

## Announcements
Expand Down
2 changes: 1 addition & 1 deletion sbi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is part of sbi, a toolkit for simulation-based inference. sbi is licensed
# under the Apache License Version 2.0, see <https://www.apache.org/licenses/>

VERSION = (0, 23, 1)
VERSION = (0, 23, 2)

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