From f584e62665f62f2d6ad47c741a7fa1468e13df16 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Tue, 10 Dec 2024 01:16:34 +0000 Subject: [PATCH] v1.0.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- RELEASING.md | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e314da577..de426b255 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2503,7 +2503,7 @@ dependencies = [ [[package]] name = "taskchampion" -version = "1.0.0-pre" +version = "1.0.0" dependencies = [ "anyhow", "aws-config", diff --git a/Cargo.toml b/Cargo.toml index 43ca170bb..7fe03a8cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "taskchampion" -version = "1.0.0-pre" +version = "1.0.0" authors = ["Dustin J. Mitchell "] description = "Personal task-tracking" homepage = "https://gothenburgbitfactory.github.io/taskchampion/" diff --git a/README.md b/README.md index e81a9f899..f967a7896 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ See the [documentation](https://gothenburgbitfactory.org/taskchampion/) for more There are two crates here: - * [taskchampion](./taskchampion) - the core of the tool - * [xtask](./xtask) (private) - implementation of the `cargo xtask msrv` command + * `taskchampion` (root of the repository) - the core of the tool + * [`xtask`](./xtask) (private) - implementation of the `cargo xtask msrv` command ## Rust API diff --git a/RELEASING.md b/RELEASING.md index a8cbb0c50..9ba232320 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -3,7 +3,7 @@ 1. Run `git pull upstream main` 1. Run `cargo test` 1. Run `cargo clean && cargo clippy` -1. Remove the `-pre` from `version` in `taskchampion/Cargo.toml`. +1. Remove the `-pre` from `version` in `Cargo.toml`. 1. Run `cargo semver-checks` (https://crates.io/crates/cargo-semver-checks) 1. Run `mdbook test docs` 1. Run `cargo build --release -p taskchampion` @@ -11,8 +11,8 @@ 1. Run `git tag vX.Y.Z` 1. Run `git push upstream` 1. Run `git push --tags upstream` -1. Run `(cd taskchampion; cargo publish)` -1. Bump the patch version in `taskchampion/Cargo.toml` and add the `-pre` suffix. This allows `cargo-semver-checks` to check for changes not accounted for in the version delta. +1. Run `cargo publish -p taskchampion` +1. Bump the patch version in `Cargo.toml` and add the `-pre` suffix. This allows `cargo-semver-checks` to check for changes not accounted for in the version delta. 1. Run `cargo build --release -p taskchampion` again to update `Cargo.lock` 1. Commit that change with comment "Bump to -pre version". 1. Run `git push upstream`