Skip to content

Commit ddae26d

Browse files
committed
update release
1 parent e9ff431 commit ddae26d

5 files changed

Lines changed: 31 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
args: release --clean
3737
env:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
HOMEBREW_TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN || secrets.GITHUB_TOKEN }}
3940

4041
- name: Publish npm package
4142
run: npm publish --access public --provenance

.github/workflows/tag-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Extract version
2020
id: version
2121
run: |
22-
version=$(rg -m1 '^## \\[[0-9]+\\.[0-9]+\\.[0-9]+\\]' CHANGELOG.md | sed -E 's/^## \\[([0-9]+\\.[0-9]+\\.[0-9]+)\\].*/\\1/')
22+
version=$(grep -m1 -E '^## \[[0-9]+\.[0-9]+\.[0-9]+\]' CHANGELOG.md | cut -d'[' -f2 | cut -d']' -f1)
2323
if [ -z "$version" ]; then
2424
echo "No version found in CHANGELOG.md"
2525
exit 1

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ brews:
4949
repository:
5050
owner: adamavenir
5151
name: mini-msg
52-
token: "{{ .Env.GITHUB_TOKEN }}"
52+
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
5353
homepage: "https://github.com/adamavenir/mini-msg"
5454
description: "Lightweight agent-to-agent messaging CLI."
5555
license: "MIT"

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.0] - 2025-12-22
9+
10+
### Added
11+
- Batch agent updates with `mm batch-update`
12+
- Merge command to combine agent history
13+
- Reactions for short replies (<20 chars)
14+
- Chat: input auto-expands up to 8 lines and supports selection/copy
15+
- Chat: click a message to start a threaded reply; double-click to copy
16+
- Chat: shortcut help overlay and clearer layout
17+
- Sidebar: filter channels with `#` or space
18+
- Autocomplete shows agent nicknames
19+
- Roster/info show nicknames and consistent status/purpose fields
20+
- `mm destroy <channel>` to delete a channel entirely
21+
- Prune preserves thread integrity
22+
23+
### Changed
24+
- Chat colors are assigned by recency instead of hash
25+
- Chat: Ctrl-C clears input first, exits only when empty
26+
- Roster uses `here: true|false` instead of `status: active`
27+
- Mention highlighting respects default color
28+
29+
### Fixed
30+
- `mm prune --all` now prunes all messages
31+
- Suggest correct agent name when delimiter differs
32+
833
## [0.2.0] - 2025-12-19
934

1035
### Added
@@ -58,4 +83,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5883
- Agent lifecycle commands (new, back, bye)
5984
- Simple agent names (alice, bob) with auto-generated options
6085

86+
[0.3.0]: https://github.com/adamavenir/mini-msg/releases/tag/v0.3.0
87+
[0.2.0]: https://github.com/adamavenir/mini-msg/releases/tag/v0.2.0
6188
[0.1.0]: https://github.com/adamavenir/mini-msg/releases/tag/v0.1.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mini-msg",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Lightweight agent-to-agent messaging CLI.",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)