From 6db82cecbf35aabb717c1fcca20222b8e21592a5 Mon Sep 17 00:00:00 2001 From: ernestprovo23 Date: Sat, 1 Aug 2026 12:51:07 -0400 Subject: [PATCH] release: v1.3.0 --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- src/conclave/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09793f0..e5f1ca0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.0] - 2026-08-01 + ### Added - **Durable buffered CLI results (#58).** `conclave ask --json-output PATH` atomically diff --git a/pyproject.toml b/pyproject.toml index 3ab2ee2..7212b44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "hatchling.build" # `conclave` — only the published *distribution* name differs. So users # `pip install conclave-cli`, then run `conclave ...` / `from conclave import Council`. name = "conclave-cli" -version = "1.2.0" +version = "1.3.0" description = "Bring-your-own-keys multi-model council CLI + library. Fan a prompt to N foundation models concurrently and merge their answers." readme = "README.md" requires-python = ">=3.11" diff --git a/src/conclave/__init__.py b/src/conclave/__init__.py index 6644327..ab5a559 100644 --- a/src/conclave/__init__.py +++ b/src/conclave/__init__.py @@ -78,7 +78,7 @@ extract_verdict, ) -__version__ = "1.2.0" +__version__ = "1.3.0" __all__ = [ "Council",