Skip to content

Commit 16e6db1

Browse files
authored
chore: release
1 parent 1fad55f commit 16e6db1

9 files changed

Lines changed: 74 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,43 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.7.0](https://github.com/cot-rs/cot/compare/cot-v0.6.0...cot-v0.7.0) - 2026-07-11
10+
11+
[View diff on diff.rs](https://diff.rs/cot/0.6.0/cot/0.7.0/Cargo.toml)
12+
13+
### New features
14+
15+
- [**breaking**] Expose `on_delete` and `on_update` fields for ForeignKey field ([#576](https://github.com/cot-rs/cot/pull/576)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
16+
- [**breaking**] Implement `Serialize`, `Deserialize`, and `JsonSchema` implementations for cot internal types ([#575](https://github.com/cot-rs/cot/pull/575)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
17+
- [**breaking**] More form attributes ([#352](https://github.com/cot-rs/cot/pull/352)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
18+
- Implement DbField for Bytes ([#596](https://github.com/cot-rs/cot/pull/596)) (by [@firas-yangui](https://github.com/firas-yangui))
19+
- Support custom cache and email in TestRequestBuilder ([#582](https://github.com/cot-rs/cot/pull/582)) (by [@m4tx](https://github.com/m4tx))
20+
- Add `set_username` and `set_password` to `DatabaseUser` ([#579](https://github.com/cot-rs/cot/pull/579)) (by [@m4tx](https://github.com/m4tx))
21+
- Implement `From<DbFieldValue>` for Non primitive types ([#562](https://github.com/cot-rs/cot/pull/562)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
22+
- Add tests for guide code snippets ([#552](https://github.com/cot-rs/cot/pull/552)) (by [@m4tx](https://github.com/m4tx))
23+
- Derive `Ord` and `PartialOrd` for `Auto` ([#544](https://github.com/cot-rs/cot/pull/544)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
24+
- Allow accessing extra config ([#518](https://github.com/cot-rs/cot/pull/518)) (by [@m4tx](https://github.com/m4tx))
25+
- Use securer_string for more secure Password and SecretKey ([#328](https://github.com/cot-rs/cot/pull/328)) (by [@eibrahim95](https://github.com/eibrahim95))
26+
27+
### Fixes
28+
29+
- Normalize route paths with a leading slash ([#591](https://github.com/cot-rs/cot/pull/591)) (by [@firas-yangui](https://github.com/firas-yangui))
30+
- Non-ASCII URLs can be properly routed now ([#561](https://github.com/cot-rs/cot/pull/561)) (by [@m4tx](https://github.com/m4tx))
31+
- Place correct contributing guide link ([#557](https://github.com/cot-rs/cot/pull/557)) (by [@kingazm](https://github.com/kingazm))
32+
33+
### Other
34+
35+
- Update Star History chart links with tokens ([#606](https://github.com/cot-rs/cot/pull/606)) (by [@seqre](https://github.com/seqre))
36+
- *(deps)* Bump all dependencies; bump MSRV to 1.92 ([#592](https://github.com/cot-rs/cot/pull/592)) (by [@m4tx](https://github.com/m4tx))
37+
- *(deps)* Bump sea-query from 0.32.7 to 1.0.1 ([#585](https://github.com/cot-rs/cot/pull/585)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
38+
- Add index route to JSON example ([#572](https://github.com/cot-rs/cot/pull/572)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
39+
- Add DeepWiki badge ([#568](https://github.com/cot-rs/cot/pull/568)) (by [@seqre](https://github.com/seqre))
40+
- Fix clippy errors ([#560](https://github.com/cot-rs/cot/pull/560)) (by [@m4tx](https://github.com/m4tx))
41+
- Add query macro docs ([#543](https://github.com/cot-rs/cot/pull/543)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
42+
- *(deps)* Remove chumsky ([#538](https://github.com/cot-rs/cot/pull/538)) (by [@m4tx](https://github.com/m4tx))
43+
- *(deps)* Use `grass_compiler` directly ([#537](https://github.com/cot-rs/cot/pull/537)) (by [@m4tx](https://github.com/m4tx))
44+
- *(deps)* Bump fake from 4.4.0 to 5.1.0 ([#533](https://github.com/cot-rs/cot/pull/533)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
45+
946
## [0.6.0](https://github.com/cot-rs/cot/compare/cot-v0.5.0...cot-v0.6.0) - 2026-03-18
1047

1148
[View diff on diff.rs](https://diff.rs/cot/0.5.0/cot/0.6.0/Cargo.toml)

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ clap-verbosity-flag = { version = "3", default-features = false }
8383
clap_complete = "4"
8484
clap_mangen = "0.3.0"
8585
comrak = { version = "0.52", default-features = false }
86-
cot = { version = "0.6.0", path = "cot" }
87-
cot-cli = { version = "0.6.0", path = "cot-cli" }
88-
cot_codegen = { version = "0.6.0", path = "cot-codegen" }
89-
cot_core = { version = "0.6.0", path = "cot-core" }
90-
cot_macros = { version = "0.6.0", path = "cot-macros" }
86+
cot = { version = "0.7.0", path = "cot" }
87+
cot-cli = { version = "0.7.0", path = "cot-cli" }
88+
cot_codegen = { version = "0.7.0", path = "cot-codegen" }
89+
cot_core = { version = "0.7.0", path = "cot-core" }
90+
cot_macros = { version = "0.7.0", path = "cot-macros" }
9191
criterion = "0.8"
9292
darling = "0.23"
9393
deadpool-redis = { version = "0.23", default-features = false }

cot-cli/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.6.0...cot-cli-v0.7.0) - 2026-07-11
11+
12+
[View diff on diff.rs](https://diff.rs/cot-cli/0.6.0/cot-cli/0.7.0/Cargo.toml)
13+
14+
### New features
15+
16+
- [**breaking**] Expose `on_delete` and `on_update` fields for ForeignKey field ([#576](https://github.com/cot-rs/cot/pull/576)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
17+
- [**breaking**] More form attributes ([#352](https://github.com/cot-rs/cot/pull/352)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
18+
19+
### Fixes
20+
21+
- Place correct contributing guide link ([#557](https://github.com/cot-rs/cot/pull/557)) (by [@kingazm](https://github.com/kingazm))
22+
23+
### Other
24+
25+
- Update Star History chart links with tokens ([#606](https://github.com/cot-rs/cot/pull/606)) (by [@seqre](https://github.com/seqre))
26+
- *(deps)* Bump the dependencies group across 1 directory with 7 updates ([#602](https://github.com/cot-rs/cot/pull/602)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
27+
- *(deps)* Bump all dependencies; bump MSRV to 1.92 ([#592](https://github.com/cot-rs/cot/pull/592)) (by [@m4tx](https://github.com/m4tx))
28+
- Add DeepWiki badge ([#568](https://github.com/cot-rs/cot/pull/568)) (by [@seqre](https://github.com/seqre))
29+
- *(deps)* Bump the dependencies group with 11 updates ([#564](https://github.com/cot-rs/cot/pull/564)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
30+
- *(deps)* Remove chumsky ([#538](https://github.com/cot-rs/cot/pull/538)) (by [@m4tx](https://github.com/m4tx))
31+
1032
## [0.6.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.5.0...cot-cli-v0.6.0) - 2026-03-18
1133

1234
[View diff on diff.rs](https://diff.rs/cot-cli/0.5.0/cot-cli/0.6.0/Cargo.toml)

cot-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cot-cli"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "Command-line interface for the Cot web framework"
55
categories = ["command-line-utilities", "web-programming"]
66
edition.workspace = true

cot-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cot_codegen"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "The Rust web framework for lazy developers - code generation utils."
55
edition.workspace = true
66
rust-version.workspace = true

cot-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cot_core"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "The Rust web framework for lazy developers - framework core."
55
categories = ["web-programming", "web-programming::http-server", "network-programming"]
66
edition.workspace = true

cot-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cot_macros"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "The Rust web framework for lazy developers - macros."
55
edition.workspace = true
66
rust-version.workspace = true

cot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cot"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "The Rust web framework for lazy developers."
55
categories = ["web-programming", "web-programming::http-server", "network-programming"]
66
edition.workspace = true

0 commit comments

Comments
 (0)