From ea430f7ee2e22339301cb6e09b6fd790f38d6b86 Mon Sep 17 00:00:00 2001 From: "cotbot[bot]" <198769328+cotbot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 20:39:46 +0000 Subject: [PATCH] chore: release v0.7.1 --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 8 ++++---- Cargo.toml | 8 ++++---- cot-cli/CHANGELOG.md | 8 ++++++++ cot-cli/Cargo.toml | 2 +- cot-core/Cargo.toml | 2 +- cot-macros/Cargo.toml | 2 +- cot/Cargo.toml | 2 +- 8 files changed, 29 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bc46446..4bd4f0fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.7.1](https://github.com/cot-rs/cot/compare/cot-v0.7.0...cot-v0.7.1) - 2026-07-20 + +[View diff on diff.rs](https://diff.rs/cot/0.7.0/cot/0.7.1/Cargo.toml) + +### Other + +- Use built-in askama profile in djlint ([#620](https://github.com/cot-rs/cot/pull/620)) (by [@m4tx](https://github.com/m4tx)) +- *(pre-commit.ci)* Pre-commit autoupdate ([#607](https://github.com/cot-rs/cot/pull/607)) (by [@pre-commit-ci[bot]](https://github.com/pre-commit-ci[bot])) + ## [0.7.0](https://github.com/cot-rs/cot/compare/cot-v0.6.0...cot-v0.7.0) - 2026-07-11 [View diff on diff.rs](https://diff.rs/cot/0.6.0/cot/0.7.0/Cargo.toml) diff --git a/Cargo.lock b/Cargo.lock index 9134f060..8eb68bca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -906,7 +906,7 @@ dependencies = [ [[package]] name = "cot" -version = "0.7.0" +version = "0.7.1" dependencies = [ "ahash", "aide", @@ -974,7 +974,7 @@ dependencies = [ [[package]] name = "cot-cli" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anstyle", "anyhow", @@ -1032,7 +1032,7 @@ dependencies = [ [[package]] name = "cot_core" -version = "0.7.0" +version = "0.7.1" dependencies = [ "askama", "async-stream", @@ -1065,7 +1065,7 @@ dependencies = [ [[package]] name = "cot_macros" -version = "0.7.0" +version = "0.7.1" dependencies = [ "askama_derive", "cot", diff --git a/Cargo.toml b/Cargo.toml index a7f41dde..fcbebb7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -83,11 +83,11 @@ clap-verbosity-flag = { version = "3", default-features = false } clap_complete = "4" clap_mangen = "0.3.0" comrak = { version = "0.54", default-features = false } -cot = { version = "0.7.0", path = "cot" } -cot-cli = { version = "0.7.0", path = "cot-cli" } +cot = { version = "0.7.1", path = "cot" } +cot-cli = { version = "0.7.1", path = "cot-cli" } cot_codegen = { version = "0.7.0", path = "cot-codegen" } -cot_core = { version = "0.7.0", path = "cot-core" } -cot_macros = { version = "0.7.0", path = "cot-macros" } +cot_core = { version = "0.7.1", path = "cot-core" } +cot_macros = { version = "0.7.1", path = "cot-macros" } criterion = "0.8" darling = "0.23" deadpool-redis = { version = "0.23", default-features = false } diff --git a/cot-cli/CHANGELOG.md b/cot-cli/CHANGELOG.md index dbdf7306..6cf43327 100644 --- a/cot-cli/CHANGELOG.md +++ b/cot-cli/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1](https://github.com/cot-rs/cot/compare/cot-cli-v0.7.0...cot-cli-v0.7.1) - 2026-07-20 + +[View diff on diff.rs](https://diff.rs/cot-cli/0.7.0/cot-cli/0.7.1/Cargo.toml) + +### Other + +- *(deps)* Bump all deps ([#616](https://github.com/cot-rs/cot/pull/616)) (by [@m4tx](https://github.com/m4tx)) + ## [0.7.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.6.0...cot-cli-v0.7.0) - 2026-07-11 [View diff on diff.rs](https://diff.rs/cot-cli/0.6.0/cot-cli/0.7.0/Cargo.toml) diff --git a/cot-cli/Cargo.toml b/cot-cli/Cargo.toml index 0dd89af5..88ec1c52 100644 --- a/cot-cli/Cargo.toml +++ b/cot-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot-cli" -version = "0.7.0" +version = "0.7.1" description = "Command-line interface for the Cot web framework" categories = ["command-line-utilities", "web-programming"] edition.workspace = true diff --git a/cot-core/Cargo.toml b/cot-core/Cargo.toml index a9552a30..47836745 100644 --- a/cot-core/Cargo.toml +++ b/cot-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot_core" -version = "0.7.0" +version = "0.7.1" description = "The Rust web framework for lazy developers - framework core." categories = ["web-programming", "web-programming::http-server", "network-programming"] edition.workspace = true diff --git a/cot-macros/Cargo.toml b/cot-macros/Cargo.toml index a9d19c05..266f03c7 100644 --- a/cot-macros/Cargo.toml +++ b/cot-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot_macros" -version = "0.7.0" +version = "0.7.1" description = "The Rust web framework for lazy developers - macros." edition.workspace = true rust-version.workspace = true diff --git a/cot/Cargo.toml b/cot/Cargo.toml index 8f50d158..62c66ee4 100644 --- a/cot/Cargo.toml +++ b/cot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot" -version = "0.7.0" +version = "0.7.1" description = "The Rust web framework for lazy developers." categories = ["web-programming", "web-programming::http-server", "network-programming"] edition.workspace = true