Skip to content

Commit 794ebef

Browse files
ateeplesclaude
andcommitted
fix: sync version strings to match PyPI 0.15.0 release
__init__.py and pyproject.toml were still at 0.14.0 while PyPI had 0.15.0, causing `sesh --version` to report the wrong version. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8117bca commit 794ebef

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentsesh"
7-
version = "0.14.0"
7+
version = "0.15.0"
88
description = "Agent session intelligence — behavioral analysis, grading, remediation, replay, outcome testing, and prompt debugging for AI agent sessions"
99
readme = "README.md"
1010
license = {text = "MIT"}

sesh/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""sesh — Agent Session Intelligence CLI."""
22

3-
__version__ = "0.14.0"
3+
__version__ = "0.15.0"

0 commit comments

Comments
 (0)