Skip to content

Commit 22c55a8

Browse files
authored
Merge pull request #89 from tommilligan/chores-20220201
ci/chore: release v1.1.0
2 parents a108544 + 952c734 commit 22c55a8

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [push, pull_request]
33
name: check
44

55
jobs:
6-
# Test, and also do other things like code coverage
6+
# Test, and also do other things like doctests and examples
77
detailed-test:
88
name: Test main target
99
runs-on: ubuntu-20.04
@@ -36,11 +36,6 @@ jobs:
3636
run: ./scripts/install
3737
- name: Run check script
3838
run: ./scripts/check
39-
- name: Upload coverage
40-
continue-on-error: true
41-
run: |
42-
cargo tarpaulin --out xml
43-
bash <(curl -s https://codecov.io/bash)
4439

4540
# Test on all supported platforms
4641
test:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Unreleased
22

3+
# v1.1.0
4+
5+
## Added
6+
7+
- Add `assert_str_eq` for comparing two `str`-like values without `Debug` formatting. Thanks to [@x3ro](https://github.com/x3ro) for implementing this! ([#88](https://github.com/colin-kiegel/rust-pretty-assertions/pull/88), [@x3ro](https://github.com/x3ro))
8+
39
## Fixed
410

511
- Ensure license text is included in crate archive - thanks [@decathorpe](https://github.com/decathorpe) for reporting this ([#87](https://github.com/colin-kiegel/rust-pretty-assertions/pull/87), [@tommilligan](https://github.com/tommilligan))

pretty_assertions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pretty_assertions"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
authors = [
55
"Colin Kiegel <[email protected]>",
66
"Florent Fayolle <[email protected]>",

scripts/cover

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
if ! cargo tarpaulin --version; then
6+
cargo install cargo-tarpaulin --force
7+
fi
8+
9+
cargo tarpaulin --out html

scripts/install

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,3 @@ set -exuo pipefail
44

55
rustup component add rustfmt clippy
66
cargo install cargo-audit
7-
# For some reason cargo-tarpaulin doesn't like being cached on Github actions
8-
# so always force installing it
9-
cargo install cargo-tarpaulin --force

0 commit comments

Comments
 (0)