Skip to content

Commit

Permalink
Release v0.0.1 (#168)
Browse files Browse the repository at this point in the history
* Release v0.0.1

* Bump fixtures

* Fixup upload_s3.sh

Co-authored-by: Cole Helbling <[email protected]>
  • Loading branch information
Hoverbear and cole-h authored Jan 9, 2023
1 parent 1849d90 commit bbeed6a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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?

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/darwin/darwin-multi.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.0-unreleased",
"version": "0.0.1",
"actions": [
{
"action": {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/linux/linux-multi.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.0-unreleased",
"version": "0.0.1",
"actions": [
{
"action": {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/linux/steam-deck.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.0-unreleased",
"version": "0.0.1",
"actions": [
{
"action": {
Expand Down

0 comments on commit bbeed6a

Please sign in to comment.