Skip to content

Commit 3014e06

Browse files
committed
Version bump.
1 parent 74800b4 commit 3014e06

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [0.4.2] - 2021-06-03
10+
### Fixed
11+
- Ignore long options when parsing short options when `combined-flags` feature is enabled.
12+
Thanks to [@riquito](https://github.com/riquito).
13+
- `Arguments::contains` docs. Thanks to [@jneem](https://github.com/jneem).
14+
915
## [0.4.1] - 2021-05-03
1016
### Added
1117
- `combined-flags` feature. Thanks to [@alexwennerberg](https://github.com/alexwennerberg).
@@ -71,7 +77,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7177
### Fixed
7278
- Do not panic while parsing non UTF-8 arguments.
7379

74-
[Unreleased]: https://github.com/RazrFalcon/pico-args/compare/v0.4.1...HEAD
80+
[Unreleased]: https://github.com/RazrFalcon/pico-args/compare/v0.4.2...HEAD
81+
[0.4.2]: https://github.com/RazrFalcon/pico-args/compare/v0.4.1...v0.4.2
7582
[0.4.1]: https://github.com/RazrFalcon/pico-args/compare/v0.4.0...v0.4.1
7683
[0.4.0]: https://github.com/RazrFalcon/pico-args/compare/v0.3.4...v0.4.0
7784
[0.3.4]: https://github.com/RazrFalcon/pico-args/compare/v0.3.3...v0.3.4

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pico-args"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Evgeniy Reizner <[email protected]>"]
55
edition = "2018"
66
keywords = ["args", "cli"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you think that this library doesn't support some feature, it's probably inten
2828
Allows combination of flags, e.g. `-abc` instead of `-a -b -c`. If `short-space-opt` or `eq-separator` are enabled, you must parse flags after values, to prevent ambiguities.
2929
*/
3030

31-
#![doc(html_root_url = "https://docs.rs/pico-args/0.4.1")]
31+
#![doc(html_root_url = "https://docs.rs/pico-args/0.4.2")]
3232

3333
#![forbid(unsafe_code)]
3434
#![warn(missing_docs)]

0 commit comments

Comments
 (0)