From 7b1e62d384c5e28b96906474f4b9434fe07ca39d Mon Sep 17 00:00:00 2001 From: declark1 <44146800+declark1@users.noreply.github.com> Date: Thu, 17 Apr 2025 10:40:37 -0700 Subject: [PATCH] Prepare 0.2.5-alpha Signed-off-by: declark1 <44146800+declark1@users.noreply.github.com> --- README.md | 2 +- book/src/getting-started.md | 2 +- mocktail/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2470046..b0e5500 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ mocktail is a **minimal** crate for mocking HTTP and gRPC servers in Rust, with 1. Add `mocktail` to `Cargo.toml` as a development dependency: ```toml [dev-dependencies] - mocktail = "0.2.4-alpha" + mocktail = "0.2.5-alpha" ``` 2. Basic usage example: diff --git a/book/src/getting-started.md b/book/src/getting-started.md index 0aac65f..c04d822 100644 --- a/book/src/getting-started.md +++ b/book/src/getting-started.md @@ -3,7 +3,7 @@ 1. Add `mocktail` to `Cargo.toml` as a development dependency: ```toml [dev-dependencies] - mocktail = "0.2.4-alpha" + mocktail = "0.2.5-alpha" ``` 2. Basic usage example: diff --git a/mocktail/Cargo.toml b/mocktail/Cargo.toml index c72f564..32279e1 100644 --- a/mocktail/Cargo.toml +++ b/mocktail/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mocktail" -version = "0.2.4-alpha" +version = "0.2.5-alpha" edition = "2021" authors = ["Dan Clark"] description = "HTTP & gRPC server mocking for Rust"