Chore: prep 0.1.4 unreleased placeholder and release guardrails

This commit is contained in:
Peter Steinberger
2025-11-25 17:08:13 +01:00
parent 9c25e15e92
commit c251681a40
5 changed files with 9 additions and 4 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## [Unreleased] 0.1.4
### Pending
- (add entries here)
## 0.1.3 — 2025-11-25 ## 0.1.3 — 2025-11-25
### Features ### Features

View File

@@ -30,6 +30,6 @@ Use `pnpm` (Node 22+) from the repo root. Keep the working tree clean before tag
6) **Post-publish** 6) **Post-publish**
- [ ] Tag and push: `git tag vX.Y.Z && git push origin vX.Y.Z` (or `git push --tags`). - [ ] 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. - [ ] 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. - [ ] Announce/share release notes.

View File

@@ -1,6 +1,6 @@
{ {
"name": "warelay", "name": "warelay",
"version": "0.1.3", "version": "0.1.4",
"description": "WhatsApp relay CLI (send, monitor, webhook, auto-reply) using Twilio", "description": "WhatsApp relay CLI (send, monitor, webhook, auto-reply) using Twilio",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",

View File

@@ -18,7 +18,7 @@ import { spawnRelayTmux } from "./relay_tmux.js";
export function buildProgram() { export function buildProgram() {
const program = new Command(); const program = new Command();
const PROGRAM_VERSION = "0.1.3"; const PROGRAM_VERSION = "0.1.4";
const TAGLINE = const TAGLINE =
"Send, receive, and auto-reply on WhatsApp—Twilio-backed or QR-linked."; "Send, receive, and auto-reply on WhatsApp—Twilio-backed or QR-linked.";

View File

@@ -53,7 +53,7 @@ export async function createWaSocket(printQr: boolean, verbose: boolean) {
version, version,
logger, logger,
printQRInTerminal: false, printQRInTerminal: false,
browser: ["warelay", "cli", "0.1.3"], browser: ["warelay", "cli", "0.1.4"],
syncFullHistory: false, syncFullHistory: false,
markOnlineOnConnect: false, markOnlineOnConnect: false,
}); });