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

Configure Feed

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

update semver for 1.1.0-dev

+7 -7
+3 -3
Cargo.lock
··· 3157 3157 3158 3158 [[package]] 3159 3159 name = "wire" 3160 - version = "1.0.0" 3160 + version = "1.1.0-dev" 3161 3161 dependencies = [ 3162 3162 "clap", 3163 3163 "clap-markdown", ··· 3186 3186 3187 3187 [[package]] 3188 3188 name = "wire-core" 3189 - version = "1.0.0" 3189 + version = "1.1.0-dev" 3190 3190 dependencies = [ 3191 3191 "aho-corasick", 3192 3192 "anyhow", ··· 3225 3225 3226 3226 [[package]] 3227 3227 name = "wire-key-agent" 3228 - version = "1.0.0" 3228 + version = "1.1.0-dev" 3229 3229 dependencies = [ 3230 3230 "anyhow", 3231 3231 "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.0.0" 5 + package.version = "1.1.0-dev" 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 mrshmllow wire --at v1.0.0 54 + $ npins add github mrshmllow wire --at v1.1.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.0.0", 3 + "version": "1.1.0-dev", 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:mrshmllow/wire/stable"; 5 5 6 6 # alternatively, you can use a tag instead: 7 - # wire.url = "github:mrshmllow/wire/v1.0.0"; 7 + # wire.url = "github:mrshmllow/wire/v1.1.0"; 8 8 9 9 systems.url = "github:nix-systems/default"; 10 10 };