Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mitsuhiko/insta
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.9.0
Choose a base ref
...
head repository: mitsuhiko/insta
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.10.0
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Dec 24, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ad33069 View commit details

Commits on Jan 5, 2022

  1. Create FUNDING.yml

    mitsuhiko authored Jan 5, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    63fb1cc View commit details
  2. 1.10.0

    mitsuhiko committed Jan 5, 2022
    Copy the full SHA
    6f9689f View commit details
Showing with 16 additions and 11 deletions.
  1. +1 −0 .github/FUNDING.yml
  2. +4 −0 CHANGELOG.md
  3. +3 −3 Cargo.toml
  4. +5 −5 cargo-insta/Cargo.lock
  5. +3 −3 cargo-insta/Cargo.toml
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [mitsuhiko]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,10 @@

All notable changes to insta and cargo-insta are documented here.

## 1.10.0

- Update internal dependencies for console and ron.

## 1.9.0

- `cargo-insta` now correctly handles the package (`-p`) argument
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "insta"
version = "1.9.0"
version = "1.10.0"
license = "Apache-2.0"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
description = "A snapshot testing library for Rust"
@@ -36,12 +36,12 @@ serialization = []
csv = { version = "1.1.4", optional = true }
serde = { version = "1.0.117", features = ["derive"] }
serde_yaml = "0.8.14"
console = { version = "0.14.0", optional = true, default-features = false }
console = { version = "0.15.0", optional = true, default-features = false }
serde_json = "1.0.59"
lazy_static = "1.4.0"
pest = { version = "2.1.3", optional = true }
pest_derive = { version = "2.1.0", optional = true }
ron = { version = "0.6.2", optional = true }
ron = { version = "0.7.0", optional = true }
backtrace = { version = "0.3.55", optional = true }
toml = { version = "0.5.7", optional = true }
globset = { version = "0.4.6", optional = true }
10 changes: 5 additions & 5 deletions cargo-insta/Cargo.lock

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

6 changes: 3 additions & 3 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.9.0"
version = "1.10.0"
license = "Apache-2.0"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
description = "A review tool for the insta snapshot testing library for Rust"
@@ -12,8 +12,8 @@ edition = "2018"
readme = "README.md"

[dependencies]
insta = { version = "1.9.0", path = "..", features = ["redactions"] }
console = "0.14.0"
insta = { version = "1.10.0", path = "..", features = ["redactions"] }
console = "0.15.0"
structopt = "0.3.20"
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.59"