Skip to content

Commit 3d6ad09

Browse files
GokhanKabarclaude
andcommitted
chore: update CHANGELOG, banner, and Homebrew formula for v0.1.8
- Add v0.1.7 and v0.1.8 entries to CHANGELOG - Update banner.svg branding to memo-agent - Update Formula/memo.rb URLs and version to 0.1.8 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 6cab1d7 commit 3d6ad09

3 files changed

Lines changed: 27 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.8] - 2026-03-16
6+
7+
### Changed
8+
- Renamed project to **memo-agent** (repo, crate, branding, documentation)
9+
- Merged `memo-core` and `memo-hooks` into `memo-agent` — single crate, single publish
10+
- Fixed path display on Windows: backslashes normalized to forward slashes in log entries
11+
- Fixed `memo doctor` PATH check on Windows: looks for `memo.exe` instead of `memo`
12+
- Fixed doctor integration test: injects binary directory into PATH so doctor check passes in CI
13+
14+
### Fixed
15+
- Clippy warnings: `&PathBuf``&Path` in `run_capture`, five collapsed `if` blocks
16+
17+
## [0.1.7] - 2026-03-16
18+
19+
### Fixed
20+
- Clippy `ptr_arg` and `collapsible_if` warnings (part of CI `-D warnings` enforcement)
21+
- Integration test `test_doctor_after_setup`: binary dir now added to PATH so doctor finds the `memo` binary
22+
523
## [0.1.6] - 2026-03-16
624

725
### Added

Formula/memo.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
class Memo < Formula
22
desc "Persistent memory for AI coding agents"
3-
homepage "https://github.com/rustkit-ai/memo"
4-
version "0.1.1"
3+
homepage "https://github.com/rustkit-ai/memo-agent"
4+
version "0.1.8"
55
license "MIT"
66

77
on_macos do
88
on_arm do
9-
url "https://github.com/rustkit-ai/memo/releases/download/v#{version}/memo-aarch64-apple-darwin.tar.gz"
9+
url "https://github.com/rustkit-ai/memo-agent/releases/download/v#{version}/memo-aarch64-apple-darwin.tar.gz"
1010
sha256 :no_check
1111
end
1212
on_intel do
13-
url "https://github.com/rustkit-ai/memo/releases/download/v#{version}/memo-x86_64-apple-darwin.tar.gz"
13+
url "https://github.com/rustkit-ai/memo-agent/releases/download/v#{version}/memo-x86_64-apple-darwin.tar.gz"
1414
sha256 :no_check
1515
end
1616
end
1717

1818
on_linux do
1919
on_arm do
20-
url "https://github.com/rustkit-ai/memo/releases/download/v#{version}/memo-aarch64-unknown-linux-gnu.tar.gz"
20+
url "https://github.com/rustkit-ai/memo-agent/releases/download/v#{version}/memo-aarch64-unknown-linux-gnu.tar.gz"
2121
sha256 :no_check
2222
end
2323
on_intel do
24-
url "https://github.com/rustkit-ai/memo/releases/download/v#{version}/memo-x86_64-unknown-linux-gnu.tar.gz"
24+
url "https://github.com/rustkit-ai/memo-agent/releases/download/v#{version}/memo-x86_64-unknown-linux-gnu.tar.gz"
2525
sha256 :no_check
2626
end
2727
end

assets/banner.svg

Lines changed: 3 additions & 3 deletions
Loading

0 commit comments

Comments
 (0)