Skip to content

Commit

Permalink
Bump version to 1.41.1 (#681)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty authored Oct 31, 2024
1 parent 6d555d4 commit cb08d92
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions cargo-insta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-insta"
version = "1.41.0"
version = "1.41.1"
license = "Apache-2.0"
authors = ["Armin Ronacher <[email protected]>"]
description = "A review tool for the insta snapshot testing library for Rust"
Expand All @@ -14,7 +14,12 @@ readme = "README.md"
rust-version = "1.65.0"

[dependencies]
insta = { version = "=1.41.0", path = "../insta", features = ["json", "yaml", "redactions", "_cargo_insta_internal"] }
insta = { version = "=1.41.1", path = "../insta", features = [
"json",
"yaml",
"redactions",
"_cargo_insta_internal",
] }
cargo_metadata = { version = "0.18.0", default-features = false }
console = "0.15.4"
serde = { version = "1.0.117", features = ["derive"] }
Expand All @@ -27,15 +32,15 @@ ignore = "0.4.17"
uuid = { version = "1.0.0", features = ["v4"] }
tempfile = "3.5.0"
# Needs pinning in Cargo.lock because of MSRV
semver = {version = "1.0.7", features = ["serde"]}
semver = { version = "1.0.7", features = ["serde"] }
lazy_static = "1.4.0"
clap = { workspace=true }
clap = { workspace = true }
open = "5.3.0"
itertools = "0.10.0"

[dev-dependencies]
walkdir = "2.3.1"
similar= "2.2.1"
similar = "2.2.1"
itertools = "0.10.0"
termcolor = "1.1.2"
os_pipe = "0.9.0"
13 changes: 7 additions & 6 deletions insta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "insta"
version = "1.41.0"
version = "1.41.1"
license = "Apache-2.0"
authors = ["Armin Ronacher <[email protected]>"]
description = "A snapshot testing library for Rust"
Expand All @@ -11,9 +11,7 @@ repository = "https://github.com/mitsuhiko/insta"
keywords = ["snapshot", "testing", "jest", "approval"]
categories = ["development-tools::testing"]
readme = "README.md"
exclude = [
"assets/*"
]
exclude = ["assets/*"]

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -55,13 +53,16 @@ toml = { version = "0.5.7", optional = true }
globset = { version = "0.4.6", optional = true }
walkdir = { version = "2.3.1", optional = true }
similar = { version = "2.1.0", features = ["inline"] }
regex = { version = "1.6.0", default-features = false, optional = true, features = ["std", "unicode"] }
regex = { version = "1.6.0", default-features = false, optional = true, features = [
"std",
"unicode",
] }
serde = { version = "1.0.117", optional = true }
linked-hash-map = "0.5.6"
lazy_static = "1.4.0"
# Not yet supported in our MSRV of 1.60.0
# clap = { workspace=true, optional = true }
clap = {version = "4.1", features = ["derive", "env"], optional = true}
clap = { version = "4.1", features = ["derive", "env"], optional = true }

[dev-dependencies]
rustc_version = "0.4.0"
Expand Down

0 comments on commit cb08d92

Please sign in to comment.