From dfbbf21dc38c9be9b06526a951c163e5a9e66277 Mon Sep 17 00:00:00 2001 From: marshmallow Date: Sat, 14 Feb 2026 07:50:19 +1100 Subject: [PATCH] cut 1.2.0 --- CHANGELOG.md | 2 ++ Cargo.lock | 6 +++--- Cargo.toml | 2 +- doc/guides/installation.md | 2 +- doc/package.json | 2 +- doc/snippets/guides/installation/flake.nix | 2 +- 6 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3316ff0..6c46f7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - yyyy-mm-dd +## [v1.2.0] - 2025-01-05 + ### Added - Manpages for `1` & `5`, including subcommands. diff --git a/Cargo.lock b/Cargo.lock index 6d9eb57..60a04fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3173,7 +3173,7 @@ dependencies = [ [[package]] name = "wire" -version = "1.1.1" +version = "1.2.0" dependencies = [ "clap", "clap-markdown", @@ -3200,7 +3200,7 @@ dependencies = [ [[package]] name = "wire-core" -version = "1.1.1" +version = "1.2.0" dependencies = [ "aho-corasick", "anyhow", @@ -3239,7 +3239,7 @@ dependencies = [ [[package]] name = "wire-key-agent" -version = "1.1.1" +version = "1.2.0" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index bac7cdb..c5d9c02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ members = ["crates/key_agent", "crates/core", "crates/cli"] resolver = "2" package.edition = "2024" -package.version = "1.1.1" +package.version = "1.2.0" [workspace.metadata.crane] name = "wire" diff --git a/doc/guides/installation.md b/doc/guides/installation.md index 708cdad..d2468b4 100644 --- a/doc/guides/installation.md +++ b/doc/guides/installation.md @@ -51,7 +51,7 @@ $ npins add github forallsys wire --branch stable Alternatively, you can use a tag instead: ```sh -$ npins add github forallsys wire --at v1.1.1 +$ npins add github forallsys wire --at v1.2.0 ``` Then, use this pinned version of wire for both your `hive.nix` and `shell.nix`: diff --git a/doc/package.json b/doc/package.json index 56ef768..a9d077d 100644 --- a/doc/package.json +++ b/doc/package.json @@ -1,6 +1,6 @@ { "name": "wire-docs", - "version": "1.1.1", + "version": "1.2.0", "type": "module", "devDependencies": { "vitepress": "^1.6.4", diff --git a/doc/snippets/guides/installation/flake.nix b/doc/snippets/guides/installation/flake.nix index 062d6f7..b67313f 100644 --- a/doc/snippets/guides/installation/flake.nix +++ b/doc/snippets/guides/installation/flake.nix @@ -4,7 +4,7 @@ wire.url = "github:forallsys/wire/stable"; # alternatively, you can use a tag instead: - # wire.url = "github:forallsys/wire/v1.1.1"; + # wire.url = "github:forallsys/wire/v1.2.0"; systems.url = "github:nix-systems/default"; };