Skip to content

Commit 336b645

Browse files
committed
chore: Release
1 parent c0dce62 commit 336b645

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2020
<!-- next-header -->
2121
## [Unreleased] - ReleaseDate
2222

23+
## [4.5.28] - 2025-02-03
24+
2325
### Features
2426

2527
- *(derive)* Unstable support for full markdown syntax for doc comments, enabled with `unstable-markdown`
@@ -4699,7 +4701,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
46994701
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
47004702

47014703
<!-- next-url -->
4702-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.27...HEAD
4704+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.28...HEAD
4705+
[4.5.28]: https://github.com/clap-rs/clap/compare/v4.5.27...v4.5.28
47034706
[4.5.27]: https://github.com/clap-rs/clap/compare/v4.5.26...v4.5.27
47044707
[4.5.26]: https://github.com/clap-rs/clap/compare/v4.5.25...v4.5.26
47054708
[4.5.25]: https://github.com/clap-rs/clap/compare/v4.5.24...v4.5.25

CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cff-version: 1.2.0
33
message: Please cite this crate using these information.
44

55
# Version information.
6-
date-released: 2025-01-20
7-
version: 4.5.27
6+
date-released: 2025-02-03
7+
version: 4.5.28
88

99
# Project information.
1010
abstract: A full featured, fast Command Line Argument Parser for Rust

Cargo.lock

+6-6
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
@@ -99,7 +99,7 @@ blocks_in_conditions = "allow"
9999

100100
[package]
101101
name = "clap"
102-
version = "4.5.27"
102+
version = "4.5.28"
103103
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
104104
categories = ["command-line-interface"]
105105
keywords = [
@@ -177,7 +177,7 @@ bench = false
177177

178178
[dependencies]
179179
clap_builder = { path = "./clap_builder", version = "=4.5.27", default-features = false }
180-
clap_derive = { path = "./clap_derive", version = "=4.5.24", optional = true }
180+
clap_derive = { path = "./clap_derive", version = "=4.5.28", optional = true }
181181

182182
[dev-dependencies]
183183
trybuild = "1.0.91"

clap_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_derive"
3-
version = "4.5.24"
3+
version = "4.5.28"
44
description = "Parse command line argument by defining a struct, derive crate."
55
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
66
keywords = [

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! - [Cookbook][_cookbook]
1212
//! - [FAQ][_faq]
1313
//! - [Discussions](https://github.com/clap-rs/clap/discussions)
14-
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.27/CHANGELOG.md) (includes major version migration
14+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.28/CHANGELOG.md) (includes major version migration
1515
//! guides)
1616
//!
1717
//! ## Aspirations

0 commit comments

Comments
 (0)