Skip to content

Commit

Permalink
v0.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
alanvardy committed Apr 15, 2023
1 parent 8f35b3a commit 5551eb9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 2023-04-15 v0.3.11

- Update tod.gif to demonstrate current feel of app
- Check for TODO and dbg! on CI
- Allow completing tasks as one of the options when dating them
Expand Down
28 changes: 14 additions & 14 deletions 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 = "tod"
version = "0.3.10"
version = "0.3.11"
authors = ["Alan Vardy <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/projects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ pub fn date_items(config: &Config, project_name: &str) -> Result<String, String>
} else {
for item in undated_items.iter() {
println!("{}", item.fmt(config));
let due_string = config::get_input("Input a date in natural language or complete")?;
let due_string = config::get_input("Input a date in natural language or (c)omplete")?;
match due_string.as_str() {
"complete" | "c" => {
let config = config.set_next_id(item.id.clone());
Expand Down

0 comments on commit 5551eb9

Please sign in to comment.