Skip to content

Commit cb640f9

Browse files
authored
chore: release
1 parent 03b22e9 commit cb640f9

9 files changed

Lines changed: 51 additions & 15 deletions

File tree

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.8.0](https://github.com/cot-rs/cot/compare/cot-v0.7.0...cot-v0.8.0) - 2026-08-08
10+
11+
[View diff on diff.rs](https://diff.rs/cot/0.7.0/cot/0.8.0/Cargo.toml)
12+
13+
### New features
14+
15+
- [**breaking**] Support for rolling back migrations ([#583](https://github.com/cot-rs/cot/pull/583)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
16+
- [**breaking**] *(orm)* Transactions support ([#468](https://github.com/cot-rs/cot/pull/468)) (by [@m4tx](https://github.com/m4tx))
17+
- Add trailing slash redirect middleware ([#633](https://github.com/cot-rs/cot/pull/633)) (by [@Guflly](https://github.com/Guflly))
18+
- *(db)* Reject application models in migrations ([#625](https://github.com/cot-rs/cot/pull/625)) (by [@Guflly](https://github.com/Guflly))
19+
- *(orm)* Add an escape hatch for raw SELECT queries ([#609](https://github.com/cot-rs/cot/pull/609)) (by [@m4tx](https://github.com/m4tx))
20+
- *(orm)* String matching in `Query` ([#605](https://github.com/cot-rs/cot/pull/605)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
21+
22+
### Fixes
23+
24+
- Snapshot tests, update compiler output ([#635](https://github.com/cot-rs/cot/pull/635)) (by [@m4tx](https://github.com/m4tx))
25+
26+
### Other
27+
28+
- Use built-in askama profile in djlint ([#620](https://github.com/cot-rs/cot/pull/620)) (by [@m4tx](https://github.com/m4tx))
29+
- *(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]))
30+
931
## [0.7.0](https://github.com/cot-rs/cot/compare/cot-v0.6.0...cot-v0.7.0) - 2026-07-11
1032

1133
[View diff on diff.rs](https://diff.rs/cot/0.6.0/cot/0.7.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.54", default-features = false }
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" }
86+
cot = { version = "0.8.0", path = "cot" }
87+
cot-cli = { version = "0.8.0", path = "cot-cli" }
88+
cot_codegen = { version = "0.7.1", path = "cot-codegen" }
89+
cot_core = { version = "0.7.1", path = "cot-core" }
90+
cot_macros = { version = "0.8.0", path = "cot-macros" }
9191
criterion = "0.8"
9292
darling = "0.24"
9393
deadpool-redis = { version = "0.23", default-features = false }

cot-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.7.0...cot-cli-v0.8.0) - 2026-08-08
11+
12+
[View diff on diff.rs](https://diff.rs/cot-cli/0.7.0/cot-cli/0.8.0/Cargo.toml)
13+
14+
### New features
15+
16+
- [**breaking**] Support for rolling back migrations ([#583](https://github.com/cot-rs/cot/pull/583)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
17+
- Add trailing slash redirect middleware ([#633](https://github.com/cot-rs/cot/pull/633)) (by [@Guflly](https://github.com/Guflly))
18+
19+
### Other
20+
21+
- *(deps)* Bump all deps ([#627](https://github.com/cot-rs/cot/pull/627)) (by [@m4tx](https://github.com/m4tx))
22+
- *(deps)* Bump all deps ([#616](https://github.com/cot-rs/cot/pull/616)) (by [@m4tx](https://github.com/m4tx))
23+
1024
## [0.7.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.6.0...cot-cli-v0.7.0) - 2026-07-11
1125

1226
[View diff on diff.rs](https://diff.rs/cot-cli/0.6.0/cot-cli/0.7.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.7.0"
3+
version = "0.8.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.7.0"
3+
version = "0.7.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.7.0"
3+
version = "0.7.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.7.0"
3+
version = "0.8.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.7.0"
3+
version = "0.8.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)