Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.7.0](https://github.com/cot-rs/cot/compare/cot-v0.6.0...cot-v0.7.0) - 2026-05-22

[View diff on diff.rs](https://diff.rs/cot/0.6.0/cot/0.7.0/Cargo.toml)

### New features

- [**breaking**] Implement `Serialize`, `Deserialize`, and `JsonSchema` implementations for cot internal types ([#575](https://github.com/cot-rs/cot/pull/575)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
- Add `set_username` and `set_password` to `DatabaseUser` ([#579](https://github.com/cot-rs/cot/pull/579)) (by [@m4tx](https://github.com/m4tx))
- Implement `From<DbFieldValue>` for Non primitive types ([#562](https://github.com/cot-rs/cot/pull/562)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
- Derive `Ord` and `PartialOrd` for `Auto` ([#544](https://github.com/cot-rs/cot/pull/544)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
- Allow accessing extra config ([#518](https://github.com/cot-rs/cot/pull/518)) (by [@m4tx](https://github.com/m4tx))

### Fixes

- Non-ASCII URLs can be properly routed now ([#561](https://github.com/cot-rs/cot/pull/561)) (by [@m4tx](https://github.com/m4tx))
- Place correct contributing guide link ([#557](https://github.com/cot-rs/cot/pull/557)) (by [@kingazm](https://github.com/kingazm))

### Other

- Add index route to JSON example ([#572](https://github.com/cot-rs/cot/pull/572)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
- Add DeepWiki badge ([#568](https://github.com/cot-rs/cot/pull/568)) (by [@seqre](https://github.com/seqre))
- Fix clippy errors ([#560](https://github.com/cot-rs/cot/pull/560)) (by [@m4tx](https://github.com/m4tx))
- Add query macro docs ([#543](https://github.com/cot-rs/cot/pull/543)) (by [@ElijahAhianyo](https://github.com/ElijahAhianyo))
- *(deps)* Remove chumsky ([#538](https://github.com/cot-rs/cot/pull/538)) (by [@m4tx](https://github.com/m4tx))
- *(deps)* Use `grass_compiler` directly ([#537](https://github.com/cot-rs/cot/pull/537)) (by [@m4tx](https://github.com/m4tx))
- *(deps)* 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]))

## [0.6.0](https://github.com/cot-rs/cot/compare/cot-v0.5.0...cot-v0.6.0) - 2026-03-18

[View diff on diff.rs](https://diff.rs/cot/0.5.0/cot/0.6.0/Cargo.toml)
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ clap = { version = "4.6.1", features = ["deprecated"] }
clap-verbosity-flag = { version = "3", default-features = false }
clap_complete = "4"
clap_mangen = "0.3.0"
cot = { version = "0.6.0", path = "cot" }
cot_core = { version = "0.6.0", path = "cot-core" }
cot_codegen = { version = "0.6.0", path = "cot-codegen" }
cot_macros = { version = "0.6.0", path = "cot-macros" }
cot = { version = "0.7.0", path = "cot" }
cot_core = { version = "0.6.1", path = "cot-core" }
cot_codegen = { version = "0.7.0", path = "cot-codegen" }
cot_macros = { version = "0.6.1", path = "cot-macros" }
Comment on lines +84 to +87
criterion = "0.8"
darling = "0.23"
deadpool-redis = { version = "0.23", default-features = false }
Expand Down
14 changes: 14 additions & 0 deletions cot-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.1](https://github.com/cot-rs/cot/compare/cot-cli-v0.6.0...cot-cli-v0.6.1) - 2026-05-22

[View diff on diff.rs](https://diff.rs/cot-cli/0.6.0/cot-cli/0.6.1/Cargo.toml)

### Fixes

- Place correct contributing guide link ([#557](https://github.com/cot-rs/cot/pull/557)) (by [@kingazm](https://github.com/kingazm))

### Other

- Add DeepWiki badge ([#568](https://github.com/cot-rs/cot/pull/568)) (by [@seqre](https://github.com/seqre))
- *(deps)* Bump the dependencies group with 11 updates ([#564](https://github.com/cot-rs/cot/pull/564)) (by [@dependabot[bot]](https://github.com/dependabot[bot]))
- *(deps)* Remove chumsky ([#538](https://github.com/cot-rs/cot/pull/538)) (by [@m4tx](https://github.com/m4tx))

## [0.6.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.5.0...cot-cli-v0.6.0) - 2026-03-18

[View diff on diff.rs](https://diff.rs/cot-cli/0.5.0/cot-cli/0.6.0/Cargo.toml)
Expand Down
2 changes: 1 addition & 1 deletion cot-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cot-cli"
version = "0.6.0"
version = "0.6.1"
description = "Command-line interface for the Cot web framework"
categories = ["command-line-utilities", "web-programming"]
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cot-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cot_codegen"
version = "0.6.0"
version = "0.7.0"
description = "The Rust web framework for lazy developers - code generation utils."
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cot-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cot_core"
version = "0.6.0"
version = "0.6.1"
description = "The Rust web framework for lazy developers - framework core."
categories = ["web-programming", "web-programming::http-server", "network-programming"]
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cot-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cot_macros"
version = "0.6.0"
version = "0.6.1"
description = "The Rust web framework for lazy developers - macros."
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cot"
version = "0.6.0"
version = "0.7.0"
description = "The Rust web framework for lazy developers."
categories = ["web-programming", "web-programming::http-server", "network-programming"]
edition.workspace = true
Expand Down
Loading