From 3cb9934aa30d16ba0dc9355413a01d299e340015 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 4 Mar 2024 01:15:44 +0100 Subject: [PATCH] 1.36.1 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- cargo-insta/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d69a645d..58149a29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to insta and cargo-insta are documented here. +## 1.36.1 + +- Fix an ownership issue introduced in 1.36 with snapshot assertions. #453 + ## 1.36.0 - Deprecate `INSTA_FORCE_UPDATE_SNAPSHOTS` env-var for `INSTA_FORCE_UPDATE`. diff --git a/Cargo.toml b/Cargo.toml index fd2f5be8..2d435e77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "insta" -version = "1.36.0" +version = "1.36.1" license = "Apache-2.0" authors = ["Armin Ronacher "] description = "A snapshot testing library for Rust" diff --git a/cargo-insta/Cargo.toml b/cargo-insta/Cargo.toml index 91d89226..49ee9ad2 100644 --- a/cargo-insta/Cargo.toml +++ b/cargo-insta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-insta" -version = "1.36.0" +version = "1.36.1" license = "Apache-2.0" authors = ["Armin Ronacher "] description = "A review tool for the insta snapshot testing library for Rust" @@ -13,7 +13,7 @@ edition = "2018" readme = "README.md" [dependencies] -insta = { version = "=1.36.0", path = "..", features = ["json", "yaml", "redactions", "_cargo_insta_internal"] } +insta = { version = "=1.36.1", path = "..", features = ["json", "yaml", "redactions", "_cargo_insta_internal"] } cargo_metadata = { version = "0.18.0", default-features = false } console = "0.15.4" structopt = { version = "0.3.26", default-features = false }