Skip to content
This repository has been archived by the owner on Dec 13, 2021. It is now read-only.

Commit

Permalink
Update to 1.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgerace committed Oct 7, 2021
1 parent 408af37 commit 11dcbce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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,6 +1,6 @@
[package]
name = "bovine"
version = "0.3.0"
version = "1.0.0-rc1"
edition = "2018"

authors = ["Nick Gerace <nickagerace@gmail.com>"]
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ This checklist details the `bovine` release process.
### Preparation

- [ ] Checkout (or create a branch of) `main` at its latest commit.
- [ ] Change the `version` field in `Cargo.toml` to `$NEW_TAG`.
- [ ] Change the `version` field in `Cargo.toml` to the new tag.
- [ ] (Skip for release candidates) change the version in `CHANGELOG.md` and uncomment the line, `<!--The latest version contains all changes.-->`.
- [ ] Run `cargo xtask ci` and verify that everything looks/works as expected.
- [ ] Create a commit with the following message: `Update to $NEW_TAG`. Do not push (or merge) the commit.
- [ ] Create a commit with the following message `Update to <new-tag>`. Do not push (or merge) the commit.
- [ ] Test and verify the publishing workflow: `cargo publish --dry-run`.
- [ ] Finally, push (or merge) the preparation commit into `main`.

Expand Down
4 changes: 2 additions & 2 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ fn bloat() -> Result<()> {
}

fn ci() -> Result<()> {
cargo(&["+nightly", "fmt", "--all", "--", "--checks"])?;
cargo(&["+nightly", "fmt", "--all", "--", "--check"])?;
cargo(&["clippy", "--", "-D", "warnings"])?;
cargo(&["test", "--", "--nocapture"])?;
cargo(&["clippy", "--", "-D", "warnings"])
cargo(&["build", "--release"])
}

fn compare() -> Result<()> {
Expand Down

0 comments on commit 11dcbce

Please sign in to comment.