Skip to content

Commit 1e33852

Browse files
committed
chore: prep v0.1.1 (handoff system + cwd-case fix)
1 parent 282605d commit 1e33852

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.1] - 2026-05-08
11+
1012
### Added
1113

1214
- `handoff` subcommand for structured cross-session work transfer with optional note fields (`--done`, `--pending`, `--blocked`) and acknowledgment tracking.
@@ -39,5 +41,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3941
- Pytest smoke test suite and GitHub Actions CI matrix (macOS + Ubuntu, Python 3.10 / 3.11 / 3.12).
4042
- MIT license.
4143

42-
[Unreleased]: https://github.com/ThatGuyAstro/context-absorb/compare/v0.1.0...HEAD
44+
[Unreleased]: https://github.com/ThatGuyAstro/context-absorb/compare/v0.1.1...HEAD
45+
[0.1.1]: https://github.com/ThatGuyAstro/context-absorb/releases/tag/v0.1.1
4346
[0.1.0]: https://github.com/ThatGuyAstro/context-absorb/releases/tag/v0.1.0

Formula/context-absorb.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
class ContextAbsorb < Formula
22
desc "Cross-CLI session transfer tool for parallel AI coding sessions (Claude Code + Codex)"
33
homepage "https://github.com/ThatGuyAstro/context-absorb"
4-
url "https://github.com/ThatGuyAstro/context-absorb/archive/refs/tags/v0.1.0.tar.gz"
5-
sha256 "f97f972b48d97f23ad13978b32781f3ef1246874cda9f83016f3ba2bc9cfd0ff"
4+
url "https://github.com/ThatGuyAstro/context-absorb/archive/refs/tags/v0.1.1.tar.gz"
5+
sha256 "REPLACE_WITH_V011_TARBALL_SHA256"
66
license "MIT"
77
head "https://github.com/ThatGuyAstro/context-absorb.git", branch: "main"
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Tomorrow's session runs `/inbox`, sees the pending handoff, reads the brief at `
5252
## Install
5353

5454
```bash
55-
curl -sSL https://raw.githubusercontent.com/ThatGuyAstro/context-absorb/v0.1.0/install.sh | bash
55+
curl -sSL https://raw.githubusercontent.com/ThatGuyAstro/context-absorb/v0.1.1/install.sh | bash
5656
```
5757

5858
That installs the `session-absorb` command, the `/absorb`, `/session-absorb`, `/handoff`, `/inbox`, and `/ack` skills for Claude Code (plus `/session-absorb` for Codex), and a SessionStart hook that auto-tags new sessions with short alias codes (e.g. `TMS01`). Requires Python 3.10+. macOS-tested; Linux/Windows fallbacks landed but unverified.

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 = "context-absorb"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "Cross-CLI session transfer tool for parallel AI coding sessions (Claude Code + Codex)"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)