Skip to content

Commit b47c7e2

Browse files
authored
chore: release
1 parent ca74f41 commit b47c7e2

File tree

8 files changed

+66
-8
lines changed

8 files changed

+66
-8
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0](https://github.com/cot-rs/cot/compare/cot-v0.1.4...cot-v0.2.0) - 2025-03-12
11+
12+
### Added
13+
14+
- add a user-friendly message for AddrInUse error ([#233](https://github.com/cot-rs/cot/pull/233))
15+
- add support for remove field in automatic migration generator ([#232](https://github.com/cot-rs/cot/pull/232))
16+
- add basic pagination support for admin panel ([#217](https://github.com/cot-rs/cot/pull/217))
17+
- support "Remove Model" in Automatic Migration Generator ([#221](https://github.com/cot-rs/cot/pull/221))
18+
19+
### Fixed
20+
21+
- panic backtrace/location not displayed on the error page ([#237](https://github.com/cot-rs/cot/pull/237))
22+
- include APP_NAME in model ([#228](https://github.com/cot-rs/cot/pull/228))
23+
24+
### Other
25+
26+
- more docs (up to 100% doc coverage) ([#229](https://github.com/cot-rs/cot/pull/229))
27+
1028
## [0.1.4](https://github.com/cot-rs/cot/compare/cot-v0.1.3...cot-v0.1.4) - 2025-02-28
1129

1230
### Added

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ cargo_toml = "0.21"
5959
chrono = { version = "0.4", default-features = false }
6060
clap = { version = "4", features = ["deprecated"] }
6161
clap-verbosity-flag = { version = "3", default-features = false }
62-
cot = { version = "0.1.4", path = "cot" }
62+
cot = { version = "0.2.0", path = "cot" }
6363
cot_codegen = { version = "0.1.2", path = "cot-codegen" }
64-
cot_macros = { version = "0.1.2", path = "cot-macros" }
64+
cot_macros = { version = "0.1.3", path = "cot-macros" }
6565
darling = "0.20"
6666
derive_builder = "0.20"
6767
derive_more = "2"

cot-cli/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0](https://github.com/cot-rs/cot/compare/cot-cli-v0.1.4...cot-cli-v0.2.0) - 2025-03-12
11+
12+
### Added
13+
14+
- create Workspace Manager ([#235](https://github.com/cot-rs/cot/pull/235))
15+
- add support for remove field in automatic migration generator ([#232](https://github.com/cot-rs/cot/pull/232))
16+
- support "Remove Model" in Automatic Migration Generator ([#221](https://github.com/cot-rs/cot/pull/221))
17+
18+
### Fixed
19+
20+
- unit test after 25785c27 ([#218](https://github.com/cot-rs/cot/pull/218))
21+
22+
### Other
23+
24+
- more docs (up to 100% doc coverage) ([#229](https://github.com/cot-rs/cot/pull/229))
25+
- change MigrationGenerator for future use ([#224](https://github.com/cot-rs/cot/pull/224))
26+
1027
## [0.1.4](https://github.com/cot-rs/cot/compare/cot-cli-v0.1.3...cot-cli-v0.1.4) - 2025-02-28
1128

1229
### Fixed

cot-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cot-cli"
3-
version = "0.1.4"
3+
version = "0.2.0"
44
description = "The Rust web framework for lazy developers - CLI tool."
55
categories = ["command-line-utilities", "web-programming"]
66
edition.workspace = true

cot-macros/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.3](https://github.com/cot-rs/cot/compare/cot_macros-v0.1.2...cot_macros-v0.1.3) - 2025-03-12
11+
12+
### Added
13+
14+
- add basic pagination support for admin panel ([#217](https://github.com/cot-rs/cot/pull/217))
15+
16+
### Fixed
17+
18+
- panic backtrace/location not displayed on the error page ([#237](https://github.com/cot-rs/cot/pull/237))
19+
- include APP_NAME in model ([#228](https://github.com/cot-rs/cot/pull/228))
20+
21+
### Other
22+
23+
- more docs (up to 100% doc coverage) ([#229](https://github.com/cot-rs/cot/pull/229))

cot-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cot_macros"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "The Rust web framework for lazy developers - macros."
55
edition.workspace = true
66
rust-version.workspace = true

cot/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cot"
3-
version = "0.1.4"
3+
version = "0.2.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)