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.6.2
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.6.3
Choose a head ref
  • 5 commits
  • 6 files changed
  • 1 contributor

Commits on Feb 15, 2021

  1. Support Rust 1.41.0 (#165)

    mitsuhiko authored Feb 15, 2021

    Verified

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

Commits on Feb 16, 2021

  1. Copy the full SHA
    17288f1 View commit details
  2. Added changelog entry

    mitsuhiko committed Feb 16, 2021
    Copy the full SHA
    5153aee View commit details
  3. Copy the full SHA
    97199c0 View commit details
  4. 1.6.3

    mitsuhiko committed Feb 16, 2021
    Copy the full SHA
    0c5cf21 View commit details
Showing with 89 additions and 134 deletions.
  1. +4 −0 CHANGELOG.md
  2. +1 −1 Cargo.toml
  3. +69 −129 cargo-insta/Cargo.lock
  4. +2 −2 cargo-insta/Cargo.toml
  5. +2 −2 src/runtime.rs
  6. +11 −0 tests/test_inline.rs
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.6.3

* Fix a bug with empty lines in inline snapshots. (#166)

## 1.6.2

* Lower Rust support to 1.41.0 (#165)
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "insta"
version = "1.6.2"
version = "1.6.3"
license = "Apache-2.0"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
description = "A snapshot testing library for Rust"
Loading