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

bump version to 1.0.0-beta.0

+6 -4
+2
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] - yyyy-mm-dd 9 9 10 + ## [v1.0.0-beta.0] - 2025-12-02 11 + 10 12 ### Added 11 13 12 14 - `meta.nodeNixpkgs` was implemented.
+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.1" 5 + package.version = "1.0.0-beta.0" 6 6 7 7 [workspace.metadata.crane] 8 8 name = "wire"
+1 -1
doc/guides/installation.md
··· 45 45 Alternatively, you can use a tag instead: 46 46 47 47 ```sh 48 - $ npins add github mrshmllow wire --at v1.0.0-alpha.1 48 + $ npins add github mrshmllow wire --at v1.0.0-beta.0 49 49 ``` 50 50 51 51 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.1", 3 + "version": "1.0.0-beta.0", 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.1"; 7 + # wire.url = "github:mrshmllow/wire/v1.0.0-beta.0"; 8 8 9 9 systems.url = "github:nix-systems/default"; 10 10 };