Skip to content

Commit

Permalink
Merge pull request #89 from tommilligan/chores-20220201
Browse files Browse the repository at this point in the history
ci/chore: release v1.1.0
  • Loading branch information
tommilligan committed Feb 1, 2022
2 parents a108544 + 952c734 commit 22c55a8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]
name: check

jobs:
# Test, and also do other things like code coverage
# Test, and also do other things like doctests and examples
detailed-test:
name: Test main target
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -36,11 +36,6 @@ jobs:
run: ./scripts/install
- name: Run check script
run: ./scripts/check
- name: Upload coverage
continue-on-error: true
run: |
cargo tarpaulin --out xml
bash <(curl -s https://codecov.io/bash)

# Test on all supported platforms
test:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Unreleased

# v1.1.0

## Added

- 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))

## Fixed

- 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))
Expand Down
2 changes: 1 addition & 1 deletion pretty_assertions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pretty_assertions"
version = "1.0.0"
version = "1.1.0"
authors = [
"Colin Kiegel <kiegel@gmx.de>",
"Florent Fayolle <florent.fayolle69@gmail.com>",
Expand Down
9 changes: 9 additions & 0 deletions scripts/cover
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

set -euo pipefail

if ! cargo tarpaulin --version; then
cargo install cargo-tarpaulin --force
fi

cargo tarpaulin --out html
3 changes: 0 additions & 3 deletions scripts/install
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,3 @@ set -exuo pipefail

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

0 comments on commit 22c55a8

Please sign in to comment.