From 7731d9f87f492b917596f54b730fee023d7f65b8 Mon Sep 17 00:00:00 2001 From: Lars Norman Date: Tue, 6 Jan 2026 23:37:56 +0100 Subject: [PATCH] chore: bump version to 0.1.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- CLAUDE.md | 4 ++++ Cargo.lock | 2 +- rote/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 2e4998e..5181a8c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -24,6 +24,10 @@ Whenever the config format changes, update `example.yaml` and `README.md`. Integration test scripts should have names starting with the test name. The only allowed languages are Rust for application code, and bash for scripts used in tests. +## Releases + +A new release is created by bumping the version in `Cargo.toml` in a pull request. + ## Project Overview Rote is a terminal multiplexer for monitoring and managing multiple processes. Users define tasks in YAML with dependencies, and Rote starts them in topological order with a TUI for monitoring output. diff --git a/Cargo.lock b/Cargo.lock index a06c6a9..4b44e7b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -550,7 +550,7 @@ dependencies = [ [[package]] name = "rote-mux" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "chrono", diff --git a/rote/Cargo.toml b/rote/Cargo.toml index 80a7058..1067e30 100644 --- a/rote/Cargo.toml +++ b/rote/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rote-mux" -version = "0.1.3" +version = "0.1.4" edition = "2024" description = "A terminal multiplexer for monitoring and managing multiple processes" license = "MIT"