Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Dec 10, 2024
1 parent e7b9d2b commit f584e62
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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 = "taskchampion"
version = "1.0.0-pre"
version = "1.0.0"
authors = ["Dustin J. Mitchell <[email protected]>"]
description = "Personal task-tracking"
homepage = "https://gothenburgbitfactory.github.io/taskchampion/"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
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`
1. Commit the changes (Cargo.lock will change too) with comment `vX.Y.Z`.
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`
Expand Down

0 comments on commit f584e62

Please sign in to comment.