Skip to content

Commit 5c3cfe1

Browse files
authored
chore: release
1 parent 659b4ca commit 5c3cfe1

9 files changed

Lines changed: 83 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,52 @@ 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-05-08
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+
-
16+
17+
Derive `Ord` and `PartialOrd` for `Auto` ([#544](https://github.com/cot-rs/cot/pull/544)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
18+
-
19+
20+
Allow accessing extra config ([#518](https://github.com/cot-rs/cot/pull/518)) (by [@m4tx](https://github.com/m4tx))
21+
22+
### Fixes
23+
24+
-
25+
26+
Non-ASCII URLs can be properly routed now ([#561](https://github.com/cot-rs/cot/pull/561)) (by [@m4tx](https://github.com/m4tx))
27+
-
28+
29+
Place correct contributing guide link ([#557](https://github.com/cot-rs/cot/pull/557)) (by [@kingazm](https://github.com/kingazm))
30+
31+
### Other
32+
33+
-
34+
35+
Fix clippy errors ([#560](https://github.com/cot-rs/cot/pull/560)) (by [@m4tx](https://github.com/m4tx))
36+
-
37+
38+
Add query macro docs ([#543](https://github.com/cot-rs/cot/pull/543)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
39+
-
40+
41+
*(deps)*
42+
43+
Remove chumsky ([#538](https://github.com/cot-rs/cot/pull/538)) (by [@m4tx](https://github.com/m4tx))
44+
-
45+
46+
*(deps)*
47+
48+
Use `grass_compiler` directly ([#537](https://github.com/cot-rs/cot/pull/537)) (by [@m4tx](https://github.com/m4tx))
49+
-
50+
51+
*(deps)*
52+
53+
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]))
54+
955
## [0.6.0](https://github.com/cot-rs/cot/compare/cot-v0.5.0...cot-v0.6.0) - 2026-03-18
1056

1157
[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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ clap = { version = "4.6.1", features = ["deprecated"] }
8181
clap-verbosity-flag = { version = "3", default-features = false }
8282
clap_complete = "4"
8383
clap_mangen = "0.3.0"
84-
cot = { version = "0.6.0", path = "cot" }
85-
cot_core = { version = "0.6.0", path = "cot-core" }
86-
cot_codegen = { version = "0.6.0", path = "cot-codegen" }
87-
cot_macros = { version = "0.6.0", path = "cot-macros" }
84+
cot = { version = "0.7.0", path = "cot" }
85+
cot_core = { version = "0.6.1", path = "cot-core" }
86+
cot_codegen = { version = "0.6.1", path = "cot-codegen" }
87+
cot_macros = { version = "0.6.1", path = "cot-macros" }
8888
criterion = "0.8"
8989
darling = "0.23"
9090
deadpool-redis = { version = "0.23", default-features = false }

cot-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.6.1](https://github.com/cot-rs/cot/compare/cot-cli-v0.6.0...cot-cli-v0.6.1) - 2026-05-08
11+
12+
[View diff on diff.rs](https://diff.rs/cot-cli/0.6.0/cot-cli/0.6.1/Cargo.toml)
13+
14+
### Fixes
15+
16+
-
17+
18+
Place correct contributing guide link ([#557](https://github.com/cot-rs/cot/pull/557)) (by [@kingazm](https://github.com/kingazm))
19+
20+
### Other
21+
22+
-
23+
24+
*(deps)*
25+
26+
Bump the dependencies group with 11 updates ([#564](https://github.com/cot-rs/cot/pull/564)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
27+
-
28+
29+
*(deps)*
30+
31+
Remove chumsky ([#538](https://github.com/cot-rs/cot/pull/538)) (by [@m4tx](https://github.com/m4tx))
32+
1033
## [0.6.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.5.0...cot-cli-v0.6.0) - 2026-03-18
1134

1235
[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.6.1"
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.6.1"
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.6.1"
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.6.1"
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)