Skip to content

Commit a7adab5

Browse files
authored
chore: release v0.5.0
1 parent 613860e commit a7adab5

File tree

8 files changed

+47
-11
lines changed

8 files changed

+47
-11
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/cot-rs/cot/compare/cot-v0.4.0...cot-v0.5.0) - 2026-01-02
10+
11+
[View diff on diff.rs](https://diff.rs/cot/0.4.0/cot/0.5.0/Cargo.toml)
12+
13+
### New features
14+
15+
- [**breaking**] Cache support with pluggable backends ([#399](https://github.com/cot-rs/cot/pull/399)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
16+
- [**breaking**] Add Redis Cache store ([#410](https://github.com/cot-rs/cot/pull/410)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
17+
- [**breaking**] *(db)* Add `bulk_insert` ([#414](https://github.com/cot-rs/cot/pull/414)) (by [@m4tx](https://github.com/m4tx))
18+
- Add derive macro `SelectAsFormField` ([#397](https://github.com/cot-rs/cot/pull/397)) (by [@kumarUjjawal](https://github.com/kumarUjjawal))
19+
20+
### Fixes
21+
22+
- Clippy errors ([#402](https://github.com/cot-rs/cot/pull/402)) (by [@m4tx](https://github.com/m4tx))
23+
24+
### Other
25+
26+
- [**breaking**] Rename opt to opts ([#398](https://github.com/cot-rs/cot/pull/398)) (by [@seqre](https://github.com/seqre))
27+
- [**breaking**] Use `trait_upcasting`, bump MSRV to 1.86 ([#412](https://github.com/cot-rs/cot/pull/412)) (by [@m4tx](https://github.com/m4tx))
28+
- [**breaking**] Bump deps, bump MSRV to 1.88 ([#431](https://github.com/cot-rs/cot/pull/431)) (by [@m4tx](https://github.com/m4tx))
29+
- [**breaking**] Use `Arc` internally in `Database` ([#432](https://github.com/cot-rs/cot/pull/432)) (by [@m4tx](https://github.com/m4tx))
30+
- *(deps)* Bump the dependencies group with 22 updates ([#401](https://github.com/cot-rs/cot/pull/401)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
31+
- Remove `#[cfg(doc_auto_cfg)]` ([#406](https://github.com/cot-rs/cot/pull/406)) (by [@m4tx](https://github.com/m4tx))
32+
- Remove rust-lang/rust#145288 workaround ([#411](https://github.com/cot-rs/cot/pull/411)) (by [@m4tx](https://github.com/m4tx))
33+
- `Cache` instead of `Arc<Cache>` in public APIs ([#433](https://github.com/cot-rs/cot/pull/433)) (by [@m4tx](https://github.com/m4tx))
34+
935
## [0.4.0](https://github.com/cot-rs/cot/compare/cot-v0.3.1...cot-v0.4.0) - 2025-09-11
1036

1137
[View diff on diff.rs](https://diff.rs/cot/0.3.1/cot/0.4.0/Cargo.toml)

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ clap = { version = "4.5.53", features = ["deprecated"] }
7272
clap-verbosity-flag = { version = "3", default-features = false }
7373
clap_complete = "4"
7474
clap_mangen = "0.2.31"
75-
cot = { version = "0.4.0", path = "cot" }
76-
cot_codegen = { version = "0.4.0", path = "cot-codegen" }
77-
cot_macros = { version = "0.4.0", path = "cot-macros" }
75+
cot = { version = "0.5.0", path = "cot" }
76+
cot_codegen = { version = "0.5.0", path = "cot-codegen" }
77+
cot_macros = { version = "0.5.0", path = "cot-macros" }
7878
criterion = "0.8"
7979
darling = "0.23"
8080
deadpool-redis = { version = "0.22", default-features = false }

cot-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.4.0...cot-cli-v0.5.0) - 2026-01-02
11+
12+
[View diff on diff.rs](https://diff.rs/cot-cli/0.4.0/cot-cli/0.5.0/Cargo.toml)
13+
14+
### Other
15+
16+
- [**breaking**] Bump deps, bump MSRV to 1.88 ([#431](https://github.com/cot-rs/cot/pull/431)) (by [@m4tx](https://github.com/m4tx))
17+
- *(deps)* Bump the dependencies group with 22 updates ([#401](https://github.com/cot-rs/cot/pull/401)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
18+
- *(deps)* Bump the dependencies group with 11 updates ([#407](https://github.com/cot-rs/cot/pull/407)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
19+
1020
## [0.4.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.3.1...cot-cli-v0.4.0) - 2025-09-11
1121

1222
[View diff on diff.rs](https://diff.rs/cot-cli/0.3.1/cot-cli/0.4.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.4.0"
3+
version = "0.5.0"
44
description = "The Rust web framework for lazy developers - CLI tool."
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.4.0"
3+
version = "0.5.0"
44
description = "The Rust web framework for lazy developers - code generation utils."
55
edition.workspace = true
66
rust-version.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.4.0"
3+
version = "0.5.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.4.0"
3+
version = "0.5.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)