From 41fdc2d20e8a9b64d21244265c9b0f2d20428197 Mon Sep 17 00:00:00 2001 From: Ana Hobden Date: Tue, 14 Feb 2023 09:45:20 -0800 Subject: [PATCH] Release v0.3.0 (#249) --- Cargo.lock | 2 +- Cargo.toml | 2 +- flake.nix | 2 +- tests/fixtures/linux/linux.json | 2 +- tests/fixtures/linux/steam-deck.json | 2 +- tests/fixtures/macos/macos.json | 2 +- tests/windows/test-wsl.ps1 | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7e13dd9..e0bd4d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -915,7 +915,7 @@ dependencies = [ [[package]] name = "nix-installer" -version = "0.2.1-unreleased" +version = "0.3.0" dependencies = [ "async-trait", "atty", diff --git a/Cargo.toml b/Cargo.toml index 25cc938..e000482 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nix-installer" description = "The Determinate Nix Installer" -version = "0.2.1-unreleased" +version = "0.3.0" edition = "2021" resolver = "2" license = "LGPL-2.1" diff --git a/flake.nix b/flake.nix index cd64af8..6fbb90a 100644 --- a/flake.nix +++ b/flake.nix @@ -65,7 +65,7 @@ }; sharedAttrs = { pname = "nix-installer"; - version = "0.2.1-unreleased"; + version = "0.3.0"; src = builtins.path { name = "nix-installer-source"; path = self; diff --git a/tests/fixtures/linux/linux.json b/tests/fixtures/linux/linux.json index d75a8ff..73b1ebd 100644 --- a/tests/fixtures/linux/linux.json +++ b/tests/fixtures/linux/linux.json @@ -1,5 +1,5 @@ { - "version": "0.2.1-unreleased", + "version": "0.3.0", "actions": [ { "action": { diff --git a/tests/fixtures/linux/steam-deck.json b/tests/fixtures/linux/steam-deck.json index 9b59e09..5d7b400 100644 --- a/tests/fixtures/linux/steam-deck.json +++ b/tests/fixtures/linux/steam-deck.json @@ -1,5 +1,5 @@ { - "version": "0.2.1-unreleased", + "version": "0.3.0", "actions": [ { "action": { diff --git a/tests/fixtures/macos/macos.json b/tests/fixtures/macos/macos.json index 595af13..efc6412 100644 --- a/tests/fixtures/macos/macos.json +++ b/tests/fixtures/macos/macos.json @@ -1,5 +1,5 @@ { - "version": "0.2.1-unreleased", + "version": "0.3.0", "actions": [ { "action": { diff --git a/tests/windows/test-wsl.ps1 b/tests/windows/test-wsl.ps1 index 8eae4fd..cc7c42f 100644 --- a/tests/windows/test-wsl.ps1 +++ b/tests/windows/test-wsl.ps1 @@ -56,7 +56,7 @@ $MaybeInitChoice = switch ($Systemd) { $true { "" } $false { "--init none" } } -wsl --distribution $DistroName bash --login -c "/root/.cargo/bin/cargo run --quiet --manifest-path /nix-installer/Cargo.toml -- install linux-multi --no-confirm $MaybeInitChoice" +wsl --distribution $DistroName bash --login -c "/root/.cargo/bin/cargo run --quiet --manifest-path /nix-installer/Cargo.toml -- install linux --no-confirm $MaybeInitChoice" if ($LastExitCode -ne 0) { exit $LastExitCode }