ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/

cut v1.2.0 (#396)

authored by

marshmallow and committed by
GitHub
8e41fb74 9e747ed0

+9 -7
+2
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] - yyyy-mm-dd 9 9 10 + ## [v1.2.0] - 2025-01-05 11 + 10 12 ### Added 11 13 12 14 - Manpages for `1` & `5`, including subcommands.
+3 -3
Cargo.lock
··· 3173 3173 3174 3174 [[package]] 3175 3175 name = "wire" 3176 - version = "1.1.1" 3176 + version = "1.2.0" 3177 3177 dependencies = [ 3178 3178 "clap", 3179 3179 "clap-markdown", ··· 3200 3200 3201 3201 [[package]] 3202 3202 name = "wire-core" 3203 - version = "1.1.1" 3203 + version = "1.2.0" 3204 3204 dependencies = [ 3205 3205 "aho-corasick", 3206 3206 "anyhow", ··· 3239 3239 3240 3240 [[package]] 3241 3241 name = "wire-key-agent" 3242 - version = "1.1.1" 3242 + version = "1.2.0" 3243 3243 dependencies = [ 3244 3244 "anyhow", 3245 3245 "base64",
+1 -1
Cargo.toml
··· 2 2 members = ["crates/key_agent", "crates/core", "crates/cli"] 3 3 resolver = "2" 4 4 package.edition = "2024" 5 - package.version = "1.1.1" 5 + package.version = "1.2.0" 6 6 7 7 [workspace.metadata.crane] 8 8 name = "wire"
+1 -1
doc/guides/installation.md
··· 51 51 Alternatively, you can use a tag instead: 52 52 53 53 ```sh 54 - $ npins add github forallsys wire --at v1.1.1 54 + $ npins add github forallsys wire --at v1.2.0 55 55 ``` 56 56 57 57 Then, use this pinned version of wire for both your `hive.nix` and `shell.nix`:
+1 -1
doc/package.json
··· 1 1 { 2 2 "name": "wire-docs", 3 - "version": "1.1.1", 3 + "version": "1.2.0", 4 4 "type": "module", 5 5 "devDependencies": { 6 6 "vitepress": "^1.6.4",
+1 -1
doc/snippets/guides/installation/flake.nix
··· 4 4 wire.url = "github:forallsys/wire/stable"; 5 5 6 6 # alternatively, you can use a tag instead: 7 - # wire.url = "github:forallsys/wire/v1.1.1"; 7 + # wire.url = "github:forallsys/wire/v1.2.0"; 8 8 9 9 systems.url = "github:nix-systems/default"; 10 10 };