diff --git a/CHANGELOG.md b/CHANGELOG.md index 70930e0..07c13c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased (on main branch only) +## 2025-01-04 v0.6.27 + - Render attachment URLs in comments - Make `max_comment_length` configurable - Enable grouping using filters separated by commas diff --git a/Cargo.lock b/Cargo.lock index b7cc4aa..24e349f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,9 +165,9 @@ checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b" [[package]] name = "cc" -version = "1.2.6" +version = "1.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333" +checksum = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7" dependencies = [ "shlex", ] @@ -1884,12 +1884,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.14.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if", "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", @@ -1947,7 +1948,7 @@ dependencies = [ [[package]] name = "tod" -version = "0.6.26" +version = "0.6.27" dependencies = [ "chrono", "chrono-tz", diff --git a/Cargo.toml b/Cargo.toml index 6445ffb..e0dcf2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tod" -version = "0.6.26" +version = "0.6.27" authors = ["Alan Vardy "] edition = "2021" license = "MIT" diff --git a/PUBLISH_CHECKLIST.md b/PUBLISH_CHECKLIST.md index 645a7af..1b2f875 100644 --- a/PUBLISH_CHECKLIST.md +++ b/PUBLISH_CHECKLIST.md @@ -15,7 +15,7 @@ Create `tod-bin` directory for pushing to AUR 3. Create PR with ```fish -VERSION=0.6.26 ./scripts/create_pr.sh +VERSION=0.6.27 ./scripts/create_pr.sh ``` 4. Wait for it to pass, then merge and pull in latest changes @@ -27,6 +27,6 @@ gh pr merge -r --admin && gs 5. Release it to all the places ```fish -VERSION=0.6.26 NAME=tod ./scripts/release.sh +VERSION=0.6.27 NAME=tod ./scripts/release.sh ```