summaryrefslogtreecommitdiff
path: root/internal/version.go
AgeCommit message (Collapse)Author
2025-11-03Fix: Address lint warnings and bump patch version to 0.15.3v0.15.3Paul Buetow
2025-11-02some linter fixesPaul Buetow
2025-10-03Switch inline prompt markers to >! prefixv0.15.1Paul Buetow
2025-10-02feat: add OpenRouter providerv0.15.0Paul Buetow
2025-09-28Add slash toggle for completionsv0.14.0Paul Buetow
2025-09-28Bump version to 0.13.0v0.13.0Paul Buetow
2025-09-26Bump version to 0.12.1v0.12.1Paul Buetow
2025-09-25Bump version to 0.12.0v0.12.0Paul Buetow
2025-09-19Release v0.11.5v0.11.5deletePaul Buetow
2025-09-19Release v0.11.4v0.11.4Paul Buetow
2025-09-17chore: bump version to 0.11.3v0.11.3Paul Buetow
2025-09-17chore: bump version to 0.11.2v0.11.2Paul Buetow
2025-09-17chore(version): bump to v0.11.1 (gpt-5 defaults, timeouts, global stats, ↵v0.11.1Paul Buetow
editor fix)
2025-09-16release: v0.11.0 – context-aware in-editor chat; respect ↵v0.11.0Paul Buetow
general.context_mode; stabilize env-dependent tests
2025-09-15release: v0.10.1v0.10.1Paul Buetow
- Fix TUI 'p' hotkey: open editor for Custom prompt - Introduce ActionCustomPrompt to disambiguate from Custom actions submenu - Bump version to 0.10.1
2025-09-14release: v0.10.0v0.10.0Paul Buetow
2025-09-08tmux: improve white-on-purple legibility; bump version to v0.9.0v0.9.0Paul Buetow
2025-09-07chore: bump version to v0.8.0v0.8.0Paul Buetow
2025-09-07docs: document Custom prompt and CLI no-args editor; bump version to v0.7.3Paul Buetow
2025-09-07chore: bump version to v0.7.2v0.7.2Paul Buetow
2025-09-07chore: cut release v0.7.1 (version bump)v0.7.1Paul Buetow
2025-09-07hexai-action: integrate tmux orchestration; add internal/tmux; tests+docs; ↵v0.7.0Paul Buetow
bump version to v0.7.0
2025-09-06chore(version): bump to 0.6.0; configurable prompts via config + testsv0.6.0Paul Buetow
2025-09-06chore(version): bump to 0.5.0v0.5.0Paul Buetow
2025-09-03lsp: add 'Hexai: implement unit test' code action for Gov0.4.1Paul Buetow
- Generate or append tests to _test.go - Jump to generated test via showDocument (command + server-initiated) - Document the feature in docs/go-unit-tests.md - Prefix action titles with 'Hexai: ' - Bump version to 0.4.1
2025-09-03chore: bump version to 0.4.0v0.4.0Paul Buetow
2025-08-29release: bump version to v0.3.3v0.3.3Paul Buetow
2025-08-28bump version to 0.3.2 (patch release)v0.3.2Paul Buetow
2025-08-28bump version to 0.3.1v0.3.1Paul Buetow
2025-08-28copilot: add session token + codex code completion; lsp: prefer native ↵v0.3.0Paul Buetow
CodeCompleter with chat fallback; remove obsolete throttle path; add tests; bump version to 0.3.0
2025-08-28lsp/chat: remove '..' trigger; docs: update triggers; tests: align throttle ↵v0.2.1Paul Buetow
test; version: bump to 0.2.1
2025-08-20chore: bump version to v0.2.0; docs: split config/usage and update in-editor ↵v0.2.0Paul Buetow
chat
2025-08-20chore: bump version to v0.1.1v0.1.1Paul Buetow
2025-08-17feat: Support XDG config homePaul Buetow
This change implements support for the XDG Base Directory Specification for the configuration file. The configuration file is now read from `$XDG_CONFIG_HOME/hexai/config.json` if the `XDG_CONFIG_HOME` environment variable is set. If it is not set, it falls back to the previous location, `$HOME/.config/hexai/config.json`. This change also includes: - A fix for a bug in the test suite where a test was failing due to an environment variable being set. - Updates to the documentation to reflect the new configuration file location. - A version bump to 0.1.0.
2025-08-17cli+lsp: refactor main packages into internal runners; add testsPaul Buetow
- Move CLI logic to internal/hexaicli with Run/RunWithClient - Move LSP logic to internal/hexailsp with Run/RunWithFactory - Extract helpers; keep behavior identical for both binaries - Add unit tests for hexaicli (input parsing, messages, streaming) and hexailsp (factory wiring, client creation, logging settings) - Add top-of-file summaries and 'Not yet reviewed by a human' comments to all Go files - Update README with internal package docs
2025-08-17chore(release): bump version to 0.1.0v0.1.0Paul Buetow
2025-08-17chore: bump version to 0.0.3v0.0.3Paul Buetow
2025-08-16feat(logging): add LLM stats (averages and per-minute)v0.0.2Paul Buetow
2025-08-16llm: add pluggable provider with OpenAI default; extensive logging; LSP ↵Paul Buetow
completion integration with TextEdit, param-aware prompts; remove idle gating; label/filter improvements; docs update
2025-08-14feat(lsp): scaffold barebones LSP server with contextual completion; add ↵Paul Buetow
Taskfile and AGENTS.md; enable -log context logging