Release v0.0.1 (#168)
* Release v0.0.1 * Bump fixtures * Fixup upload_s3.sh Co-authored-by: Cole Helbling <cole.helbling@determinate.systems>
This commit is contained in:
parent
1849d9005a
commit
bbeed6a729
|
@ -251,7 +251,7 @@ If you are working on the `action.yml` There is an integration test for `action.
|
|||
To cut a release:
|
||||
|
||||
* Create a release branch from `main` (`git checkout -b release-v0.0.1`)
|
||||
* Remove the `-unreleased` from the `version` field in `Cargo.toml`
|
||||
* Remove the `-unreleased` from the `version` field in `Cargo.toml` and `flake.nix`
|
||||
* Push the branch, create a PR ("Release v0.0.1")
|
||||
* Once the PR tests pass and it has been reviewed, merge it
|
||||
* `git pull` on the `main` branch
|
||||
|
@ -264,7 +264,7 @@ To cut a release:
|
|||
* Undraft the release
|
||||
* Once you are certain the release is good, `cargo publish` it
|
||||
+ **Warning:** While you can re-release Github releases, it is not possible to do the same on `crates.io`
|
||||
* Create a PR bumping the version up one minor in the `Cargo.toml`, adding `-unreleased` at the end (`v0.0.2-unreleased`)
|
||||
* Create a PR bumping the version up one minor in the `Cargo.toml` and `flake.nix`, adding `-unreleased` at the end (`v0.0.2-unreleased`)
|
||||
|
||||
# Who maintains `nix-installer` and why?
|
||||
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -881,7 +881,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "nix-installer"
|
||||
version = "0.0.0-unreleased"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atty",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "nix-installer"
|
||||
description = "A `nix` installer"
|
||||
version = "0.0.0-unreleased"
|
||||
version = "0.0.1"
|
||||
edition = "2021"
|
||||
resolver = "2"
|
||||
license = "LGPL-2.1"
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
};
|
||||
sharedAttrs = {
|
||||
pname = "nix-installer";
|
||||
version = "0.0.0-unreleased";
|
||||
version = "0.0.1";
|
||||
src = builtins.path {
|
||||
name = "nix-installer-source";
|
||||
path = self;
|
||||
|
|
2
tests/fixtures/darwin/darwin-multi.json
vendored
2
tests/fixtures/darwin/darwin-multi.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.0.0-unreleased",
|
||||
"version": "0.0.1",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
|
2
tests/fixtures/linux/linux-multi.json
vendored
2
tests/fixtures/linux/linux-multi.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.0.0-unreleased",
|
||||
"version": "0.0.1",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
|
2
tests/fixtures/linux/steam-deck.json
vendored
2
tests/fixtures/linux/steam-deck.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.0.0-unreleased",
|
||||
"version": "0.0.1",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
|
Loading…
Reference in a new issue