Release v0.3.0 (#249)

This commit is contained in:
Ana Hobden 2023-02-14 09:45:20 -08:00 committed by GitHub
parent 6ec5080a2f
commit 41fdc2d20e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

2
Cargo.lock generated
View file

@ -915,7 +915,7 @@ dependencies = [
[[package]]
name = "nix-installer"
version = "0.2.1-unreleased"
version = "0.3.0"
dependencies = [
"async-trait",
"atty",

View file

@ -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"

View file

@ -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;

View file

@ -1,5 +1,5 @@
{
"version": "0.2.1-unreleased",
"version": "0.3.0",
"actions": [
{
"action": {

View file

@ -1,5 +1,5 @@
{
"version": "0.2.1-unreleased",
"version": "0.3.0",
"actions": [
{
"action": {

View file

@ -1,5 +1,5 @@
{
"version": "0.2.1-unreleased",
"version": "0.3.0",
"actions": [
{
"action": {

View file

@ -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
}