File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All 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
Original file line number Diff line number Diff line change 11class 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
You can’t perform that action at this time.
0 commit comments