From c251681a401e86776559979e5cf3f29ee4a31d2f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 25 Nov 2025 17:08:13 +0100 Subject: [PATCH] Chore: prep 0.1.4 unreleased placeholder and release guardrails --- CHANGELOG.md | 5 +++++ docs/RELEASING.md | 2 +- package.json | 2 +- src/cli/program.ts | 2 +- src/provider-web.ts | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06f8f27ab..5ba971847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [Unreleased] 0.1.4 + +### Pending +- (add entries here) + ## 0.1.3 — 2025-11-25 ### Features diff --git a/docs/RELEASING.md b/docs/RELEASING.md index 62ab835af..64a2b08e4 100644 --- a/docs/RELEASING.md +++ b/docs/RELEASING.md @@ -30,6 +30,6 @@ Use `pnpm` (Node 22+) from the repo root. Keep the working tree clean before tag 6) **Post-publish** - [ ] Tag and push: `git tag vX.Y.Z && git push origin vX.Y.Z` (or `git push --tags`). -- [ ] Create/refresh the GitHub release for `vX.Y.Z`; body should be the product-facing bullets from the changelog; attach the `npm pack` tarball + checksums if you generated them. +- [ ] Create/refresh the GitHub release for `vX.Y.Z` with **title `warelay X.Y.Z`** (not just the tag); body should inline the product-facing bullets from the changelog (no bare links); attach the `npm pack` tarball + checksums if you generated them. - [ ] From a clean temp directory (no `package.json`), run `npx -y warelay@X.Y.Z send --help` to confirm install/CLI entrypoints work. - [ ] Announce/share release notes. diff --git a/package.json b/package.json index 71b562dec..d3831c3dd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "warelay", - "version": "0.1.3", + "version": "0.1.4", "description": "WhatsApp relay CLI (send, monitor, webhook, auto-reply) using Twilio", "type": "module", "main": "dist/index.js", diff --git a/src/cli/program.ts b/src/cli/program.ts index ff9ef9ed5..dcb72ec19 100644 --- a/src/cli/program.ts +++ b/src/cli/program.ts @@ -18,7 +18,7 @@ import { spawnRelayTmux } from "./relay_tmux.js"; export function buildProgram() { const program = new Command(); - const PROGRAM_VERSION = "0.1.3"; + const PROGRAM_VERSION = "0.1.4"; const TAGLINE = "Send, receive, and auto-reply on WhatsApp—Twilio-backed or QR-linked."; diff --git a/src/provider-web.ts b/src/provider-web.ts index a8e290c7f..79d521459 100644 --- a/src/provider-web.ts +++ b/src/provider-web.ts @@ -53,7 +53,7 @@ export async function createWaSocket(printQr: boolean, verbose: boolean) { version, logger, printQRInTerminal: false, - browser: ["warelay", "cli", "0.1.3"], + browser: ["warelay", "cli", "0.1.4"], syncFullHistory: false, markOnlineOnConnect: false, });