forked from lix-project/lix-installer
Release v0.6.0 (#352)
This commit is contained in:
parent
8afb8e457d
commit
a9a2e4bad7
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -961,7 +961,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "nix-installer"
|
||||
version = "0.5.1-unreleased"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atty",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "nix-installer"
|
||||
description = "The Determinate Nix Installer"
|
||||
version = "0.5.1-unreleased"
|
||||
version = "0.6.0"
|
||||
edition = "2021"
|
||||
resolver = "2"
|
||||
license = "LGPL-2.1"
|
||||
|
|
|
@ -267,7 +267,7 @@ nix build -L ".#nix-installer-static"
|
|||
# to build the remote main development branch
|
||||
nix build -L "github:determinatesystems/nix-installer#nix-installer-static"
|
||||
# for a specific version of the installer:
|
||||
export NIX_INSTALLER_TAG="v0.5.0"
|
||||
export NIX_INSTALLER_TAG="v0.6.0"
|
||||
nix build -L "github:determinatesystems/nix-installer/$NIX_INSTALLER_TAG#nix-installer-static"
|
||||
```
|
||||
|
||||
|
@ -279,7 +279,7 @@ nix build -L ".#nix-installer"
|
|||
# to build the remote main development branch
|
||||
nix build -L "github:determinatesystems/nix-installer#nix-installer"
|
||||
# for a specific version of the installer:
|
||||
export NIX_INSTALLER_TAG="v0.5.0"
|
||||
export NIX_INSTALLER_TAG="v0.6.0"
|
||||
nix build -L "github:determinatesystems/nix-installer/$NIX_INSTALLER_TAG#nix-installer"
|
||||
```
|
||||
|
||||
|
@ -294,7 +294,7 @@ RUSTFLAGS="--cfg tokio_unstable" cargo run -- --help
|
|||
RUSTFLAGS="--cfg tokio_unstable" cargo install --git https://github.com/DeterminateSystems/nix-installer
|
||||
nix-installer --help
|
||||
# for a specific version of the installer:
|
||||
export NIX_INSTALLER_TAG="v0.5.0"
|
||||
export NIX_INSTALLER_TAG="v0.6.0"
|
||||
RUSTFLAGS="--cfg tokio_unstable" cargo install --git https://github.com/DeterminateSystems/nix-installer --tag $NIX_INSTALLER_TAG
|
||||
nix-installer --help
|
||||
```
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
};
|
||||
sharedAttrs = {
|
||||
pname = "nix-installer";
|
||||
version = "0.5.1-unreleased";
|
||||
version = "0.6.0";
|
||||
src = builtins.path {
|
||||
name = "nix-installer-source";
|
||||
path = self;
|
||||
|
|
6
tests/fixtures/linux/linux.json
vendored
6
tests/fixtures/linux/linux.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.5.1-unreleased",
|
||||
"version": "0.6.0",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
@ -927,7 +927,7 @@
|
|||
}
|
||||
},
|
||||
"diagnostic_data": {
|
||||
"version": "0.5.1-unreleased",
|
||||
"version": "0.6.0",
|
||||
"planner": "linux",
|
||||
"configured_settings": [],
|
||||
"os_name": "Ubuntu",
|
||||
|
@ -937,4 +937,4 @@
|
|||
"endpoint": "https://install.determinate.systems/nix/diagnostic",
|
||||
"failure_chain": null
|
||||
}
|
||||
}
|
||||
}
|
6
tests/fixtures/linux/steam-deck.json
vendored
6
tests/fixtures/linux/steam-deck.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.5.1-unreleased",
|
||||
"version": "0.6.0",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
@ -976,7 +976,7 @@
|
|||
}
|
||||
},
|
||||
"diagnostic_data": {
|
||||
"version": "0.5.1-unreleased",
|
||||
"version": "0.6.0",
|
||||
"planner": "steam-deck",
|
||||
"configured_settings": [],
|
||||
"os_name": "Ubuntu",
|
||||
|
@ -986,4 +986,4 @@
|
|||
"endpoint": "https://install.determinate.systems/nix/diagnostic",
|
||||
"failure_chain": null
|
||||
}
|
||||
}
|
||||
}
|
2
tests/fixtures/macos/macos.json
vendored
2
tests/fixtures/macos/macos.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.5.1-unreleased",
|
||||
"version": "0.6.0",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
|
Loading…
Reference in a new issue