Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Dec 16, 2021
1 parent 9da7a5c commit 27893cf
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -7,7 +7,7 @@ members = [

[package]
name = "clap"
version = "3.0.0-rc.6"
version = "3.0.0-rc.7"
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
repository = "https://github.com/clap-rs/clap"
documentation = "https://docs.rs/clap/"
Expand Down Expand Up @@ -112,7 +112,7 @@ name = "06_rustup"
path = "benches/06_rustup.rs"

[dependencies]
clap_derive = { path = "./clap_derive", version = "=3.0.0-rc.6", optional = true }
clap_derive = { path = "./clap_derive", version = "=3.0.0-rc.7", optional = true }
bitflags = "1.2"
textwrap = { version = "0.14.0", default-features = false, features = [] }
unicase = { version = "2.6", optional = true }
Expand Down
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -5,24 +5,24 @@
[![Crates.io](https://img.shields.io/crates/v/clap?style=flat-square)](https://crates.io/crates/clap)
[![Crates.io](https://img.shields.io/crates/d/clap?style=flat-square)](https://crates.io/crates/clap)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/LICENSE-MIT)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/LICENSE-MIT)
[![Build Status](https://img.shields.io/github/workflow/status/clap-rs/clap/CI/staging?style=flat-square)](https://github.com/clap-rs/clap/actions/workflows/ci.yml?query=branch%3Astaging)
[![Coverage Status](https://img.shields.io/coveralls/github/clap-rs/clap/master?style=flat-square)](https://coveralls.io/github/clap-rs/clap?branch=master)
[![Contributors](https://img.shields.io/github/contributors/clap-rs/clap?style=flat-square)](https://github.com/clap-rs/clap/graphs/contributors)

Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).

1. [About](#about)
2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/examples/tutorial_derive/README.md)
3. [Examples](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/examples/README.md)
2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/examples/tutorial_derive/README.md)
3. [Examples](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/examples/README.md)
4. [API Reference](https://docs.rs/clap)
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/examples/derive_ref/README.md)
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/examples/derive_ref/README.md)
- [Feature Flags](#feature-flags)
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/CHANGELOG.md)
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/docs/FAQ.md)
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/CHANGELOG.md)
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/docs/FAQ.md)
7. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.0.0-rc.6/CONTRIBUTING.md)
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.0.0-rc.7/CONTRIBUTING.md)
8. [Sponsors](#sponsors)

## About
Expand Down
2 changes: 1 addition & 1 deletion clap_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "clap_derive"
version = "3.0.0-rc.6"
version = "3.0.0-rc.7"
edition = "2018"
include = [
"src/**/*",
Expand Down
6 changes: 3 additions & 3 deletions clap_generate/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "clap_generate"
version = "3.0.0-rc.6"
version = "3.0.0-rc.7"
edition = "2018"
include = [
"src/**/*",
Expand Down Expand Up @@ -31,11 +31,11 @@ pre-release-replacements = [
bench = false

[dependencies]
clap = { path = "../", version = "=3.0.0-rc.6", default-features = false, features = ["std"] }
clap = { path = "../", version = "=3.0.0-rc.7", default-features = false, features = ["std"] }

[dev-dependencies]
pretty_assertions = "1.0"
clap = { path = "../", version = "=3.0.0-rc.6", default-features = false, features = ["std", "derive"] }
clap = { path = "../", version = "=3.0.0-rc.7", default-features = false, features = ["std", "derive"] }

[features]
default = []
Expand Down
8 changes: 4 additions & 4 deletions clap_generate/README.md
Expand Up @@ -5,16 +5,16 @@
[![Crates.io](https://img.shields.io/crates/v/clap_generate?style=flat-square)](https://crates.io/crates/clap_generate)
[![Crates.io](https://img.shields.io/crates/d/clap_generate?style=flat-square)](https://crates.io/crates/clap_generate)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_generate-v3.0.0-rc.6/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_generate-v3.0.0-rc.6/LICENSE-MIT)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_generate-v3.0.0-rc.7/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_generate-v3.0.0-rc.7/LICENSE-MIT)

Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).

1. [About](#about)
2. [API Reference](https://docs.rs/clap_generate)
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_generate-v3.0.0-rc.6/clap_generate/CCONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_generate-v3.0.0-rc.6/README.md#sponsors)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_generate-v3.0.0-rc.7/clap_generate/CCONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_generate-v3.0.0-rc.7/README.md#sponsors)

## About

Expand Down
6 changes: 3 additions & 3 deletions clap_generate_fig/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "clap_generate_fig"
version = "3.0.0-rc.6"
version = "3.0.0-rc.7"
edition = "2018"
include = [
"src/**/*",
Expand All @@ -26,8 +26,8 @@ readme = "README.md"
bench = false

[dependencies]
clap = { path = "../", version = "=3.0.0-rc.6", default-features = false, features = ["std"] }
clap_generate = { path = "../clap_generate", version = "=3.0.0-rc.6"}
clap = { path = "../", version = "=3.0.0-rc.7", default-features = false, features = ["std"] }
clap_generate = { path = "../clap_generate", version = "=3.0.0-rc.7"}

[dev-dependencies]
pretty_assertions = "1.0"
Expand Down

0 comments on commit 27893cf

Please sign in to comment.