Skip to content

Commit 0a089f3

Browse files
authored
chore: release
1 parent 2fe53f3 commit 0a089f3

File tree

9 files changed

+32
-14
lines changed

9 files changed

+32
-14
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.6.0](https://github.com/cot-rs/cot/compare/cot-v0.5.0...cot-v0.6.0) - 2026-01-27
10+
11+
[View diff on diff.rs](https://diff.rs/cot/0.5.0/cot/0.6.0/Cargo.toml)
12+
13+
### Other
14+
15+
- [**breaking**] Extract framework core to cot-core ([#444](https://github.com/cot-rs/cot/pull/444)) (by [@seqre](https://github.com/seqre))
16+
- [**breaking**] Remove deprecated items ([#457](https://github.com/cot-rs/cot/pull/457)) (by [@m4tx](https://github.com/m4tx))
17+
- Various tiny doc fixes ([#450](https://github.com/cot-rs/cot/pull/450)) (by [@m4tx](https://github.com/m4tx))
18+
919
## [0.5.0](https://github.com/cot-rs/cot/compare/cot-v0.4.0...cot-v0.5.0) - 2026-01-21
1020

1121
[View diff on diff.rs](https://diff.rs/cot/0.4.0/cot/0.5.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
@@ -76,10 +76,10 @@ clap = { version = "4.5.53", features = ["deprecated"] }
7676
clap-verbosity-flag = { version = "3", default-features = false }
7777
clap_complete = "4"
7878
clap_mangen = "0.2.31"
79-
cot = { version = "0.5.0", path = "cot" }
80-
cot_core = { version = "0.5.0", path = "cot-core" }
81-
cot_codegen = { version = "0.5.0", path = "cot-codegen" }
82-
cot_macros = { version = "0.5.0", path = "cot-macros" }
79+
cot = { version = "0.6.0", path = "cot" }
80+
cot_core = { version = "0.6.0", path = "cot-core" }
81+
cot_codegen = { version = "0.5.1", path = "cot-codegen" }
82+
cot_macros = { version = "0.5.1", path = "cot-macros" }
8383
criterion = "0.8"
8484
darling = "0.23"
8585
deadpool-redis = { version = "0.22", default-features = false }

cot-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.1](https://github.com/cot-rs/cot/compare/cot-cli-v0.5.0...cot-cli-v0.5.1) - 2026-01-27
11+
12+
[View diff on diff.rs](https://diff.rs/cot-cli/0.5.0/cot-cli/0.5.1/Cargo.toml)
13+
14+
### Other
15+
16+
- Various tiny doc fixes ([#450](https://github.com/cot-rs/cot/pull/450)) (by [@m4tx](https://github.com/m4tx))
17+
1018
## [0.5.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.4.0...cot-cli-v0.5.0) - 2026-01-21
1119

1220
[View diff on diff.rs](https://diff.rs/cot-cli/0.4.0/cot-cli/0.5.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.5.0"
3+
version = "0.5.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.5.0"
3+
version = "0.5.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.5.0"
3+
version = "0.6.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.5.0"
3+
version = "0.5.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.5.0"
3+
version = "0.6.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)