From 4ab51976a3b8e80596873421546aae8a23cc27bf Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 9 Dec 2021 19:38:37 -0600 Subject: [PATCH] chore: Release --- Cargo.toml | 2 +- README.md | 16 ++++++++-------- clap_generate/Cargo.toml | 4 ++-- clap_generate_fig/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 12a48110..134bf447 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ [package] name = "clap" -version = "3.0.0-rc.1" +version = "3.0.0-rc.2" 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/" diff --git a/README.md b/README.md index 8deba83c..d0e956ac 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ [![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.1/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.1/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.2/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.2/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) @@ -14,15 +14,15 @@ 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.1/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.0.0-rc.1/examples/tutorial_derive/README.md) -3. [Examples](https://github.com/clap-rs/clap/blob/v3.0.0-rc.1/examples/README.md) +2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.0.0-rc.2/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.0.0-rc.2/examples/tutorial_derive/README.md) +3. [Examples](https://github.com/clap-rs/clap/blob/v3.0.0-rc.2/examples/README.md) 4. [API Reference](https://docs.rs/clap) - - [Derive Reference](https://github.com/clap-rs/clap/blob/v3.0.0-rc.1/examples/derive_ref/README.md) + - [Derive Reference](https://github.com/clap-rs/clap/blob/v3.0.0-rc.2/examples/derive_ref/README.md) - [Feature Flags](#feature-flags) -5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.0.0-rc.1/CHANGELOG.md) -6. [FAQ](https://github.com/clap-rs/clap/blob/v3.0.0-rc.1/docs/FAQ.md) +5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.0.0-rc.2/CHANGELOG.md) +6. [FAQ](https://github.com/clap-rs/clap/blob/v3.0.0-rc.2/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.1/CONTRIBUTING.md) +8. [Contributing](https://github.com/clap-rs/clap/blob/v3.0.0-rc.2/CONTRIBUTING.md) 8. [Sponsors](#sponsors) ## About diff --git a/clap_generate/Cargo.toml b/clap_generate/Cargo.toml index 84ae13f2..b78dd547 100644 --- a/clap_generate/Cargo.toml +++ b/clap_generate/Cargo.toml @@ -26,11 +26,11 @@ readme = "README.md" bench = false [dependencies] -clap = { path = "../", version = "=3.0.0-rc.1", default-features = false, features = ["std"] } +clap = { path = "../", version = "=3.0.0-rc.2", default-features = false, features = ["std"] } [dev-dependencies] pretty_assertions = "1.0" -clap = { path = "../", version = "=3.0.0-rc.1", default-features = false, features = ["std", "derive"] } +clap = { path = "../", version = "=3.0.0-rc.2", default-features = false, features = ["std", "derive"] } [features] default = [] diff --git a/clap_generate_fig/Cargo.toml b/clap_generate_fig/Cargo.toml index 105b8e35..59f06fe5 100644 --- a/clap_generate_fig/Cargo.toml +++ b/clap_generate_fig/Cargo.toml @@ -26,7 +26,7 @@ readme = "README.md" bench = false [dependencies] -clap = { path = "../", version = "=3.0.0-rc.1", default-features = false, features = ["std"] } +clap = { path = "../", version = "=3.0.0-rc.2", default-features = false, features = ["std"] } clap_generate = { path = "../clap_generate", version = "=3.0.0-rc.1"} [dev-dependencies]