From 207b2101d9ffbf59f69e6438c1807dccea44f296 Mon Sep 17 00:00:00 2001 From: Jerus Bot <171541392+jerus-bot@users.noreply.github.com> Date: Sat, 18 Jan 2025 04:09:16 +0000 Subject: [PATCH] chore: Release --- CHANGELOG.md | 4 ++-- Cargo.lock | 26 +++++++++++----------- README.md | 2 +- hcaptcha-cli/Cargo.toml | 2 +- hcaptcha/Cargo.toml | 4 ++-- hcaptcha/examples/hcaptcha-wasm/Cargo.toml | 2 +- hcaptcha/src/lib.rs | 2 +- hcaptcha_derive/Cargo.toml | 2 +- mock-verifier/Cargo.toml | 2 +- test-suite-cli/Cargo.toml | 2 +- test-suite-default/Cargo.toml | 2 +- test-suite-enterprise/Cargo.toml | 2 +- test-suite-native-only/Cargo.toml | 2 +- test-suite-no-default/Cargo.toml | 2 +- test-suite-rustls-only/Cargo.toml | 2 +- test-suite-trace/Cargo.toml | 2 +- test-wasm/Cargo.toml | 2 +- 17 files changed, 31 insertions(+), 31 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7e7b1c8..b9bd92bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [3.0.5] - 2025-01-18 ### Fixed @@ -935,7 +935,7 @@ emitted if a tracing subscriber is not found. [#1246]: https://github.com/jerus-org/hcaptcha-rs/pull/1246 [#1247]: https://github.com/jerus-org/hcaptcha-rs/pull/1247 [#1248]: https://github.com/jerus-org/hcaptcha-rs/pull/1248 -[Unreleased]: https://github.com/jerus-org/hcaptcha-rs/compare/v3.0.4...HEAD +[3.0.5]: https://github.com/jerus-org/hcaptcha-rs/compare/v3.0.4...hcaptcha-v3.0.5 [3.0.4]: https://github.com/jerus-org/hcaptcha-rs/compare/v3.0.3...v3.0.4 [3.0.3]: https://github.com/jerus-org/hcaptcha-rs/compare/v3.0.2...v3.0.3 [3.0.2]: https://github.com/jerus-org/hcaptcha-rs/compare/v3.0.1...v3.0.2 diff --git a/Cargo.lock b/Cargo.lock index 17a531f7..939d9a94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -789,7 +789,7 @@ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" [[package]] name = "hcaptcha" -version = "3.0.4" +version = "3.0.5" dependencies = [ "async-trait", "chrono", @@ -822,7 +822,7 @@ dependencies = [ [[package]] name = "hcaptcha-cli" -version = "3.0.4" +version = "3.0.5" dependencies = [ "clap", "clap-verbosity-flag", @@ -833,7 +833,7 @@ dependencies = [ [[package]] name = "hcaptcha-wasm" -version = "3.0.4" +version = "3.0.5" dependencies = [ "claims", "hcaptcha", @@ -845,7 +845,7 @@ dependencies = [ [[package]] name = "hcaptcha_derive" -version = "3.0.4" +version = "3.0.5" dependencies = [ "hcaptcha", "macrotest", @@ -1468,7 +1468,7 @@ dependencies = [ [[package]] name = "mock-verifier" -version = "3.0.4" +version = "3.0.5" dependencies = [ "chrono", "hcaptcha", @@ -2485,11 +2485,11 @@ dependencies = [ [[package]] name = "test-suite-cli" -version = "3.0.4" +version = "3.0.5" [[package]] name = "test-suite-default" -version = "3.0.4" +version = "3.0.5" dependencies = [ "chrono", "claims", @@ -2508,7 +2508,7 @@ dependencies = [ [[package]] name = "test-suite-enterprise" -version = "3.0.4" +version = "3.0.5" dependencies = [ "chrono", "claims", @@ -2527,7 +2527,7 @@ dependencies = [ [[package]] name = "test-suite-native-only" -version = "3.0.4" +version = "3.0.5" dependencies = [ "chrono", "claims", @@ -2546,7 +2546,7 @@ dependencies = [ [[package]] name = "test-suite-no-default" -version = "3.0.4" +version = "3.0.5" dependencies = [ "chrono", "claims", @@ -2565,7 +2565,7 @@ dependencies = [ [[package]] name = "test-suite-rustls-only" -version = "3.0.4" +version = "3.0.5" dependencies = [ "chrono", "claims", @@ -2584,7 +2584,7 @@ dependencies = [ [[package]] name = "test-suite-trace" -version = "3.0.4" +version = "3.0.5" dependencies = [ "chrono", "claims", @@ -2603,7 +2603,7 @@ dependencies = [ [[package]] name = "test-wasm" -version = "3.0.4" +version = "3.0.5" dependencies = [ "claims", "hcaptcha", diff --git a/README.md b/README.md index ee3f5cbe..39191166 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ To use hcaptcha, add the following to your `Cargo.toml`: ```toml [dependencies] -hcaptcha = "3.0.4" +hcaptcha = "3.0.5" ``` diff --git a/hcaptcha-cli/Cargo.toml b/hcaptcha-cli/Cargo.toml index a048bb4b..37edd1c1 100644 --- a/hcaptcha-cli/Cargo.toml +++ b/hcaptcha-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcaptcha-cli" -version = "3.0.4" +version = "3.0.5" edition.workspace = true publish.workspace = true rust-version.workspace = true diff --git a/hcaptcha/Cargo.toml b/hcaptcha/Cargo.toml index ebe474d4..028d9434 100644 --- a/hcaptcha/Cargo.toml +++ b/hcaptcha/Cargo.toml @@ -3,7 +3,7 @@ name = "hcaptcha" description = """ hCaptcha client response verification. Validate the hCaptcha response submitted from to your server from the client. """ -version = "3.0.4" +version = "3.0.5" authors = ["Jeremiah Russell "] license = "MIT OR Apache-2.0" repository = "https://github.com/jerusdp/hcaptcha-rs" @@ -34,7 +34,7 @@ nightly = [] [dependencies] async-trait.workspace = true hex = { workspace = true, optional = true } -hcaptcha_derive = { version = "3.0.4", path = "../hcaptcha_derive" } +hcaptcha_derive = { version = "3.0.5", path = "../hcaptcha_derive" } reqwest.workspace = true serde_json.workspace = true serde_urlencoded.workspace = true diff --git a/hcaptcha/examples/hcaptcha-wasm/Cargo.toml b/hcaptcha/examples/hcaptcha-wasm/Cargo.toml index a71b3f75..29a73e62 100644 --- a/hcaptcha/examples/hcaptcha-wasm/Cargo.toml +++ b/hcaptcha/examples/hcaptcha-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcaptcha-wasm" -version = "3.0.4" +version = "3.0.5" authors = ["Jeremiah Russell "] edition.workspace = true rust-version.workspace = true diff --git a/hcaptcha/src/lib.rs b/hcaptcha/src/lib.rs index f6fb478e..9d7f31d8 100644 --- a/hcaptcha/src/lib.rs +++ b/hcaptcha/src/lib.rs @@ -265,7 +265,7 @@ //! //! ```toml //! [dependency] -//! hcaptcha = { version = "3.0.4", default-features = false } +//! hcaptcha = { version = "3.0.5", default-features = false } //! ``` //! //! The following feature flags are available: diff --git a/hcaptcha_derive/Cargo.toml b/hcaptcha_derive/Cargo.toml index 92c78f9b..0dcfdf54 100644 --- a/hcaptcha_derive/Cargo.toml +++ b/hcaptcha_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcaptcha_derive" -version = "3.0.4" +version = "3.0.5" edition = "2018" description = """ Derive macro for hCaptcha. Please use hcaptcha crate. diff --git a/mock-verifier/Cargo.toml b/mock-verifier/Cargo.toml index 28aea699..19258b62 100644 --- a/mock-verifier/Cargo.toml +++ b/mock-verifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mock-verifier" -version = "3.0.4" +version = "3.0.5" rust-version.workspace = true edition.workspace = true publish.workspace = true diff --git a/test-suite-cli/Cargo.toml b/test-suite-cli/Cargo.toml index e2b79004..84f6cc4c 100644 --- a/test-suite-cli/Cargo.toml +++ b/test-suite-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-suite-cli" -version = "3.0.4" +version = "3.0.5" edition.workspace = true publish.workspace = true rust-version.workspace = true diff --git a/test-suite-default/Cargo.toml b/test-suite-default/Cargo.toml index 76c2decb..d568a83f 100644 --- a/test-suite-default/Cargo.toml +++ b/test-suite-default/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-suite-default" -version = "3.0.4" +version = "3.0.5" edition.workspace = true publish = false rust-version = "1.75" diff --git a/test-suite-enterprise/Cargo.toml b/test-suite-enterprise/Cargo.toml index 86ba19a0..6dd7b274 100644 --- a/test-suite-enterprise/Cargo.toml +++ b/test-suite-enterprise/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-suite-enterprise" -version = "3.0.4" +version = "3.0.5" edition.workspace = true publish.workspace = true rust-version.workspace = true diff --git a/test-suite-native-only/Cargo.toml b/test-suite-native-only/Cargo.toml index 600f2853..595ea742 100644 --- a/test-suite-native-only/Cargo.toml +++ b/test-suite-native-only/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-suite-native-only" -version = "3.0.4" +version = "3.0.5" edition.workspace = true publish.workspace = true rust-version.workspace = true diff --git a/test-suite-no-default/Cargo.toml b/test-suite-no-default/Cargo.toml index 45985f5a..17e109af 100644 --- a/test-suite-no-default/Cargo.toml +++ b/test-suite-no-default/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-suite-no-default" -version = "3.0.4" +version = "3.0.5" edition.workspace = true publish.workspace = true rust-version.workspace = true diff --git a/test-suite-rustls-only/Cargo.toml b/test-suite-rustls-only/Cargo.toml index 55afcc4a..08e0d0ce 100644 --- a/test-suite-rustls-only/Cargo.toml +++ b/test-suite-rustls-only/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-suite-rustls-only" -version = "3.0.4" +version = "3.0.5" edition = "2021" publish = false rust-version = "1.75" diff --git a/test-suite-trace/Cargo.toml b/test-suite-trace/Cargo.toml index cbfbc1a1..33476b38 100644 --- a/test-suite-trace/Cargo.toml +++ b/test-suite-trace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-suite-trace" -version = "3.0.4" +version = "3.0.5" edition.workspace = true publish.workspace = true rust-version.workspace = true diff --git a/test-wasm/Cargo.toml b/test-wasm/Cargo.toml index 74f8564c..290b10c5 100644 --- a/test-wasm/Cargo.toml +++ b/test-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-wasm" -version = "3.0.4" +version = "3.0.5" authors = ["Jeremiah Russell "] edition.workspace = true rust-version.workspace = true