From 7a1a450e2ce9c6b05a052944db352e205f17a598 Mon Sep 17 00:00:00 2001 From: "cotbot[bot]" <198769328+cotbot[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 19:02:52 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 10 +++++----- Cargo.toml | 10 +++++----- cot-cli/CHANGELOG.md | 13 +++++++++++++ cot-cli/Cargo.toml | 2 +- cot-codegen/Cargo.toml | 2 +- cot-core/Cargo.toml | 2 +- cot-macros/Cargo.toml | 2 +- cot/Cargo.toml | 2 +- 9 files changed, 44 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bc46446a..e2bcd398a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.8.0](https://github.com/cot-rs/cot/compare/cot-v0.7.0...cot-v0.8.0) - 2026-08-03 + +[View diff on diff.rs](https://diff.rs/cot/0.7.0/cot/0.8.0/Cargo.toml) + +### New features + +- [**breaking**] Support for rolling back migrations ([#583](https://github.com/cot-rs/cot/pull/583)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo)) +- *(db)* Reject application models in migrations ([#625](https://github.com/cot-rs/cot/pull/625)) (by [@Guflly](https://github.com/Guflly)) +- *(orm)* Add an escape hatch for raw SELECT queries ([#609](https://github.com/cot-rs/cot/pull/609)) (by [@m4tx](https://github.com/m4tx)) +- *(orm)* String matching in `Query` ([#605](https://github.com/cot-rs/cot/pull/605)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo)) + +### 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 70b752fd3..1c3d02883 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -912,7 +912,7 @@ dependencies = [ [[package]] name = "cot" -version = "0.7.0" +version = "0.8.0" dependencies = [ "ahash", "aide", @@ -982,7 +982,7 @@ dependencies = [ [[package]] name = "cot-cli" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "assert_cmd", @@ -1027,7 +1027,7 @@ dependencies = [ [[package]] name = "cot_codegen" -version = "0.7.0" +version = "0.7.1" dependencies = [ "darling 0.24.0", "heck", @@ -1039,7 +1039,7 @@ dependencies = [ [[package]] name = "cot_core" -version = "0.7.0" +version = "0.7.1" dependencies = [ "askama", "async-stream", @@ -1072,7 +1072,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 55471725c..d50d7cb25 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_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 = { version = "0.8.0", path = "cot" } +cot-cli = { version = "0.8.0", path = "cot-cli" } +cot_codegen = { version = "0.7.1", path = "cot-codegen" } +cot_core = { version = "0.7.1", path = "cot-core" } +cot_macros = { version = "0.7.1", path = "cot-macros" } criterion = "0.8" darling = "0.24" deadpool-redis = { version = "0.23", default-features = false } diff --git a/cot-cli/CHANGELOG.md b/cot-cli/CHANGELOG.md index dbdf73065..3a462b571 100644 --- a/cot-cli/CHANGELOG.md +++ b/cot-cli/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.7.0...cot-cli-v0.8.0) - 2026-08-03 + +[View diff on diff.rs](https://diff.rs/cot-cli/0.7.0/cot-cli/0.8.0/Cargo.toml) + +### New features + +- [**breaking**] Support for rolling back migrations ([#583](https://github.com/cot-rs/cot/pull/583)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo)) + +### Other + +- *(deps)* Bump all deps ([#627](https://github.com/cot-rs/cot/pull/627)) (by [@m4tx](https://github.com/m4tx)) +- *(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 341b564bd..afb10dfe1 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.8.0" description = "Command-line interface for the Cot web framework" categories = ["command-line-utilities", "web-programming"] edition.workspace = true diff --git a/cot-codegen/Cargo.toml b/cot-codegen/Cargo.toml index 8a11573a4..b630fd269 100644 --- a/cot-codegen/Cargo.toml +++ b/cot-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot_codegen" -version = "0.7.0" +version = "0.7.1" description = "The Rust web framework for lazy developers - code generation utils." edition.workspace = true rust-version.workspace = true diff --git a/cot-core/Cargo.toml b/cot-core/Cargo.toml index a9552a307..47836745b 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 a9d19c056..266f03c7a 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 345dac818..6e0d47e52 100644 --- a/cot/Cargo.toml +++ b/cot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot" -version = "0.7.0" +version = "0.8.0" description = "The Rust web framework for lazy developers." categories = ["web-programming", "web-programming::http-server", "network-programming"] edition.workspace = true