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

Configure Feed

Select the types of activity you want to include in your feed.

bump version to 1.0.0-alpha.1

+10 -8
+2
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] - yyyy-mm-dd 9 9 10 + ## [v1.0.0-alpha.1] - 2025-11-24 11 + 10 12 ### Added 11 13 12 14 - `--handle-unreachable` arg was added. You can use `--handle-unreachable ignore` to
+3 -3
Cargo.lock
··· 914 914 915 915 [[package]] 916 916 name = "key_agent" 917 - version = "1.0.0-alpha.0" 917 + version = "1.0.0-alpha.1" 918 918 dependencies = [ 919 919 "anyhow", 920 920 "base64", ··· 935 935 936 936 [[package]] 937 937 name = "lib" 938 - version = "1.0.0-alpha.0" 938 + version = "1.0.0-alpha.1" 939 939 dependencies = [ 940 940 "aho-corasick", 941 941 "anyhow", ··· 2452 2452 2453 2453 [[package]] 2454 2454 name = "wire" 2455 - version = "1.0.0-alpha.0" 2455 + version = "1.0.0-alpha.1" 2456 2456 dependencies = [ 2457 2457 "clap", 2458 2458 "clap-markdown",
+1 -1
Cargo.toml
··· 2 2 members = ["wire/key_agent", "wire/lib", "wire/cli"] 3 3 resolver = "2" 4 4 package.edition = "2024" 5 - package.version = "1.0.0-alpha.0" 5 + package.version = "1.0.0-alpha.1" 6 6 7 7 [workspace.metadata.crane] 8 8 name = "wire"
+1 -1
doc/guides/installation.md
··· 47 47 Alternatively, you can use a tag instead: 48 48 49 49 ```sh 50 - $ npins add github mrshmllow wire --at v1.0.0-alpha.0 50 + $ npins add github mrshmllow wire --at v1.0.0-alpha.1 51 51 ``` 52 52 53 53 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.0.0-alpha.0", 3 + "version": "1.0.0-alpha.1", 4 4 "type": "module", 5 5 "devDependencies": { 6 6 "mermaid": "^11.12.1",
+1 -1
doc/snippets/guides/installation/flake.nix
··· 4 4 wire.url = "github:mrshmllow/wire/stable"; 5 5 6 6 # alternatively, you can use a tag instead: 7 - # wire.url = "github:mrshmllow/wire/v1.0.0-alpha.0"; 7 + # wire.url = "github:mrshmllow/wire/v1.0.0-alpha.1"; 8 8 9 9 systems.url = "github:nix-systems/default"; 10 10 };
+1 -1
doc/tutorial/overview.md
··· 11 11 [^1]: A lot of your colmena module options will continue to work with wire, but wire has additional ergonomic changes you can take advantage of. 12 12 13 13 ::: warning 14 - wire is alpha software, please use at your own risk. Many features listed in this documentation overall may not be complete / implemented, however features covered in this this tutorial are considered complete. 14 + wire is alpha software, please use at your own risk. 15 15 ::: 16 16 17 17 ---