From 16baf3c8fbaa577012a6e87c22c8f56df34a0041 Mon Sep 17 00:00:00 2001 From: "cotbot[bot]" <198769328+cotbot[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 08:55:47 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 10 +++++----- Cargo.toml | 8 ++++---- cot-cli/CHANGELOG.md | 12 ++++++++++++ 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, 41 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0222cac..ff45ba72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.6.0](https://github.com/cot-rs/cot/compare/cot-v0.5.0...cot-v0.6.0) - 2026-02-05 + +[View diff on diff.rs](https://diff.rs/cot/0.5.0/cot/0.6.0/Cargo.toml) + +### New features + +- *(orm)* Support custom migrations ([#455](https://github.com/cot-rs/cot/pull/455)) (by [@m4tx](https://github.com/m4tx)) +- Implement To/FromDbValue for `chrono::DateTime` ([#474](https://github.com/cot-rs/cot/pull/474)) (by [@m4tx](https://github.com/m4tx)) + +### Other + +- [**breaking**] Extract framework core to cot-core ([#444](https://github.com/cot-rs/cot/pull/444)) (by [@seqre](https://github.com/seqre)) +- [**breaking**] Remove deprecated items ([#457](https://github.com/cot-rs/cot/pull/457)) (by [@m4tx](https://github.com/m4tx)) +- Various tiny doc fixes ([#450](https://github.com/cot-rs/cot/pull/450)) (by [@m4tx](https://github.com/m4tx)) + ## [0.5.0](https://github.com/cot-rs/cot/compare/cot-v0.4.0...cot-v0.5.0) - 2026-01-21 [View diff on diff.rs](https://diff.rs/cot/0.4.0/cot/0.5.0/Cargo.toml) diff --git a/Cargo.lock b/Cargo.lock index 7797efff..1318aae2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -857,7 +857,7 @@ dependencies = [ [[package]] name = "cot" -version = "0.5.0" +version = "0.6.0" dependencies = [ "ahash", "aide", @@ -926,7 +926,7 @@ dependencies = [ [[package]] name = "cot-cli" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anstyle", "anyhow", @@ -960,7 +960,7 @@ dependencies = [ [[package]] name = "cot_codegen" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darling 0.23.0", "heck", @@ -972,7 +972,7 @@ dependencies = [ [[package]] name = "cot_core" -version = "0.5.0" +version = "0.6.0" dependencies = [ "askama", "async-stream", @@ -1003,7 +1003,7 @@ dependencies = [ [[package]] name = "cot_macros" -version = "0.5.0" +version = "0.5.1" dependencies = [ "askama_derive", "cot", diff --git a/Cargo.toml b/Cargo.toml index 7d5b93e9..ea6ceb19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,10 +76,10 @@ clap = { version = "4.5.56", features = ["deprecated"] } clap-verbosity-flag = { version = "3", default-features = false } clap_complete = "4" clap_mangen = "0.2.31" -cot = { version = "0.5.0", path = "cot" } -cot_core = { version = "0.5.0", path = "cot-core" } -cot_codegen = { version = "0.5.0", path = "cot-codegen" } -cot_macros = { version = "0.5.0", path = "cot-macros" } +cot = { version = "0.6.0", path = "cot" } +cot_core = { version = "0.6.0", path = "cot-core" } +cot_codegen = { version = "0.5.1", path = "cot-codegen" } +cot_macros = { version = "0.5.1", path = "cot-macros" } criterion = "0.8" darling = "0.23" deadpool-redis = { version = "0.22", default-features = false } diff --git a/cot-cli/CHANGELOG.md b/cot-cli/CHANGELOG.md index b93482c2..d922205c 100644 --- a/cot-cli/CHANGELOG.md +++ b/cot-cli/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.5.0...cot-cli-v0.6.0) - 2026-02-05 + +[View diff on diff.rs](https://diff.rs/cot-cli/0.5.0/cot-cli/0.6.0/Cargo.toml) + +### New features + +- *(orm)* Support custom migrations ([#455](https://github.com/cot-rs/cot/pull/455)) (by [@m4tx](https://github.com/m4tx)) + +### Other + +- Various tiny doc fixes ([#450](https://github.com/cot-rs/cot/pull/450)) (by [@m4tx](https://github.com/m4tx)) + ## [0.5.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.4.0...cot-cli-v0.5.0) - 2026-01-21 [View diff on diff.rs](https://diff.rs/cot-cli/0.4.0/cot-cli/0.5.0/Cargo.toml) diff --git a/cot-cli/Cargo.toml b/cot-cli/Cargo.toml index 0c2fa70a..3102da3b 100644 --- a/cot-cli/Cargo.toml +++ b/cot-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot-cli" -version = "0.5.0" +version = "0.6.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 13ea4aa5..eda3ed85 100644 --- a/cot-codegen/Cargo.toml +++ b/cot-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot_codegen" -version = "0.5.0" +version = "0.5.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 65f66383..b907715b 100644 --- a/cot-core/Cargo.toml +++ b/cot-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot_core" -version = "0.5.0" +version = "0.6.0" 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 54e8379b..d20af1c4 100644 --- a/cot-macros/Cargo.toml +++ b/cot-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot_macros" -version = "0.5.0" +version = "0.5.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 f12f86d3..11e56a37 100644 --- a/cot/Cargo.toml +++ b/cot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cot" -version = "0.5.0" +version = "0.6.0" description = "The Rust web framework for lazy developers." categories = ["web-programming", "web-programming::http-server", "network-programming"] edition.workspace = true