From f83e6db9640332bb4d8b9689740a7db68ba087f3 Mon Sep 17 00:00:00 2001 From: Sammy Khamis Date: Wed, 22 Jun 2022 14:28:53 -1000 Subject: [PATCH] Bump Dogear version to v0.5.0 (#72) * Bump Dogear version to v0.5.0 --- Cargo.toml | 2 +- README.md | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 41e5702..2869191 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dogear" description = "A library for merging bookmark trees." -version = "0.4.0" +version = "0.5.0" repository = "https://github.com/mozilla/dogear" authors = ["Lina Cambridge "] license = "Apache-2.0" diff --git a/README.md b/README.md index f3f9399..751853d 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,12 @@ Dogear implements the merge algorithm only; it doesn't handle syncing, storage, ## Requirements * Rust 1.31.0 or higher + + +## Updating this package +Once a new version of Dogear is ready to release. The new version will need to be published to [crates.io](https://crates.io/crates/dogear). Dogear follows the documentation detailed in the [Cargo book](https://doc.rust-lang.org/cargo/reference/publishing.html#publishing-a-new-version-of-an-existing-crate). +### Steps to publish a new verison +1. Bump the version in the `Cargo.toml` file +2. Run `cargo publish --dry-run` + - Validate it does what you want it to do +3. Run `cargo publish` and follow the steps cargo provides