Skip to content

Commit 284adf8

Browse files
authored
chore: release v0.3.1
1 parent 37c18e5 commit 284adf8

File tree

8 files changed

+32
-11
lines changed

8 files changed

+32
-11
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.1](https://github.com/cot-rs/cot/compare/cot-v0.3.0...cot-v0.3.1) - 2025-05-16
11+
12+
### <!-- 1 -->New features
13+
14+
- allow more types to be used as a primary key ([#330](https://github.com/cot-rs/cot/pull/330))
15+
- more just commands and clippy fix ([#331](https://github.com/cot-rs/cot/pull/331))
16+
17+
### <!-- 2 -->Fixes
18+
19+
- don't clone string in `<Html as IntoResponse>` ([#324](https://github.com/cot-rs/cot/pull/324))
20+
21+
### <!-- 3 -->Other
22+
23+
- add contributors to the README.md ([#327](https://github.com/cot-rs/cot/pull/327))
24+
1025
## [0.3.0](https://github.com/cot-rs/cot/compare/cot-v0.2.2...cot-v0.3.0) - 2025-05-13
1126

1227
### <!-- 1 -->New features

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
@@ -65,9 +65,9 @@ clap = { version = "4", features = ["deprecated"] }
6565
clap-verbosity-flag = { version = "3", default-features = false }
6666
clap_complete = "4"
6767
clap_mangen = "0.2.26"
68-
cot = { version = "0.3.0", path = "cot" }
69-
cot_codegen = { version = "0.3.0", path = "cot-codegen" }
70-
cot_macros = { version = "0.3.0", path = "cot-macros" }
68+
cot = { version = "0.3.1", path = "cot" }
69+
cot_codegen = { version = "0.3.1", path = "cot-codegen" }
70+
cot_macros = { version = "0.3.1", path = "cot-macros" }
7171
darling = "0.20"
7272
derive_builder = "0.20"
7373
derive_more = "2"

cot-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.1](https://github.com/cot-rs/cot/compare/cot-cli-v0.3.0...cot-cli-v0.3.1) - 2025-05-16
11+
12+
### <!-- 3 -->Other
13+
14+
- add contributors to the README.md ([#327](https://github.com/cot-rs/cot/pull/327))
15+
1016
## [0.3.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.2.2...cot-cli-v0.3.0) - 2025-05-13
1117

1218
### <!-- 1 -->New features

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.3.0"
3+
version = "0.3.1"
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.3.0"
3+
version = "0.3.1"
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.3.0"
3+
version = "0.3.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.3.0"
3+
version = "0.3.1"
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)