Skip to content

Commit 0863bba

Browse files
committed
Bump version to 0.1.1
1 parent 4978f76 commit 0863bba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "SessionAnchor"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "One-command context memory for Claude Code sessions. Local SQLite, zero dependencies."
55
readme = "README.md"
66
requires-python = ">=3.9"

src/sessionanchor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""SessionAnchor: One-command context memory for Claude Code sessions."""
22

3-
__version__ = "0.1.0"
3+
__version__ = "0.1.1"

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_version():
3535
env=_cli_env(),
3636
)
3737
assert result.returncode == 0
38-
assert "0.1.0" in result.stdout
38+
assert "0.1.1" in result.stdout
3939

4040

4141
def test_unknown_command():

0 commit comments

Comments
 (0)