Skip to content

Commit e0a1fe0

Browse files
committed
Bump version to 0.4.0
1 parent 2933f13 commit e0a1fe0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "miniarg"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
authors = ["Niklas Sombert <niklas@ytvwld.de>"]
55
description = "A minimal argument parser, with support for no-std and no-alloc"
66
categories = ["command-line-interface", "no-std"]
@@ -13,7 +13,7 @@ repository = "https://github.com/YtvwlD/miniarg"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
miniarg_derive = { version = "0.3", optional = true }
16+
miniarg_derive = { version = "0.4", optional = true }
1717
cfg-if = "1.0"
1818

1919
[dev-dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The last parameter can also be just a key without a value.
1717
Add this to your `Cargo.toml`:
1818
```toml
1919
[dependencies]
20-
miniarg = "0.3"
20+
miniarg = "0.4"
2121
```
2222
The feature `std` is enabled by default and `alloc` and `derive` are optional.
2323

miniarg_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "miniarg_derive"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
authors = ["Niklas Sombert <niklas@ytvwld.de>"]
55
description = "custom derive for miniarg"
66
readme = "README.md"

miniarg_derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! custom derives for [miniarg]
22
//!
33
//! [miniarg]: https://github.com/YtvwlD/miniarg
4-
#![doc(html_root_url = "https://docs.rs/miniarg_derive/0.3.1")]
4+
#![doc(html_root_url = "https://docs.rs/miniarg_derive/0.4.0")]
55

66
use proc_macro::TokenStream;
77
use quote::quote;

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
//! [`ToString`]: https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html
9292
//! [`ParseError`]: enum.ParseError.html
9393
//! [`split_args`]: split_args/index.html
94-
#![doc(html_root_url = "https://docs.rs/miniarg/0.3.1")]
94+
#![doc(html_root_url = "https://docs.rs/miniarg/0.4.0")]
9595
#![cfg_attr(not(feature = "std"), no_std)]
9696
#[cfg(feature = "alloc")]
9797
extern crate alloc;

0 commit comments

Comments
 (0)