Skip to content

Commit a941cf0

Browse files
Bump version
1 parent d305e42 commit a941cf0

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## Version 0.12.0 (2025-09-24)
4+
5+
- Add a `take` test instruction to the demonstration language for manually specifying an action to take at a given node. This ensures that the demonstration language is complete (any success node can be reached via a demonstration).
6+
- **Breaking**: improve navigation function for `Abduction` nodes to make it (conditionally) invertible.
7+
- Add `workers_setup` argument to `Experiment`.
8+
- Experimental: add support for external answer sources in demonstrations and in the `run_strategy` command, and for hindsight feedback.
9+
- Fix path bug in experiment launcher.
10+
311
## Version 0.11.1 (2025-09-13)
412

513
- **Breaking**: `Experiment` puts all config folders in a `configs` subdirectory of the output directory.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ repomix:
165165
# is valid for the latest stable release.
166166
deploy-doc-release:
167167
git fetch origin gh-pages
168-
mike deploy 0.11 latest --update-aliases --push
168+
mike deploy 0.12 latest --update-aliases --push
169169

170170

171171
# Build and deploy the documentation for the dev version

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ First, download the Delphyne repository and enter it:
9898
```sh
9999
git clone git@github.com:jonathan-laurent/delphyne.git
100100
cd delphyne
101-
git checkout v0.11.1 # latest stable version
101+
git checkout v0.12.0 # latest stable version
102102
```
103103

104104
Then, to install the Delphyne library and CLI in your current Python environment:

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ First, download the Delphyne repository and enter it:
9999
```sh
100100
git clone git@github.com:jonathan-laurent/delphyne.git
101101
cd delphyne
102-
git checkout v0.11.1 # latest stable version
102+
git checkout v0.12.0 # latest stable version
103103
```
104104

105105
Then, to install the Delphyne library and CLI in your current Python environment:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "delphyne"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
description = ""
55
authors = [{name="Jonathan Laurent", email="jonathan.laurent@cs.cmu.edu"}]
66
readme = "README.md"

vscode-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Language support for Delphyne in VSCode",
55
"repository": "https://github.com/jonathan-laurent/delphyne",
66
"publisher": "jonathan-laurent",
7-
"version": "0.11.1",
7+
"version": "0.12.0",
88
"icon": "media/logo/delphyne.png",
99
"engines": {
1010
"vscode": "^1.89.0"

0 commit comments

Comments
 (0)