Skip to content

Commit 7a5dc4b

Browse files
authored
v0.1.6 release notes, version bump (#498)
1 parent 571ff9f commit 7a5dc4b

File tree

3 files changed

+13
-170
lines changed

3 files changed

+13
-170
lines changed

notes/RELEASE_v0.1.6.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Verifiers v0.1.6 Release Notes
2+
3+
*Date:* 10/20/25
4+
5+
Verifiers v0.1.6 primarly focuses on a refactor of the evaluation logic (`vf-eval`) and generation methods (in `vf.Environment`) to track more metadata, streamline duplicated logic, enable intermediate saving of generations, and allow for more flexible evaluation workflows (i.e. importable utilities in `verifiers.utils.eval_utils`).
6+
7+
The main **breaking change** is that `vf.Environment.generate` and `vf.Environment.evaluate` are now async methods, with `generate_sync` and `evaluate_sync` included as synchronous wrappers.
8+
9+
We are also migrating towards using the `state` object more explicitly to track information throughout rollouts; existing workflows should be unaffected, but we encourage users to migrate to the new `state` object for better tracking of information throughout rollouts, as eventually other arguments will be deprecated.
10+
11+
12+
**Full Changelog**: https://github.com/willccbb/verifiers/compare/v0.1.5...v0.1.6

notes/rollout_orchestration_refactor.md

Lines changed: 0 additions & 169 deletions
This file was deleted.

verifiers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.5.post0"
1+
__version__ = "0.1.6"
22

33
import importlib
44
import logging

0 commit comments

Comments
 (0)