Skip to content

Commit

Permalink
Merge branch 'main' into remove-gpl3
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Sep 30, 2023
2 parents a18a41c + fa791a7 commit eebcae3
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 28 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,11 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup cargo-tarpaulin
run: |
curl -s https://api.github.com/repos/xd009642/tarpaulin/releases/latest | \
grep "browser_download_url.*x86_64-unknown-linux-musl.tar.gz" | cut -d : -f 2,3 | tr -d \" | wget -qi -
tar -xzf cargo-tarpaulin-*.tar.gz
mv cargo-tarpaulin ~/.cargo/bin/
uses: taiki-e/install-action@cargo-tarpaulin
- name: Run tests
run: cargo tarpaulin --out Xml --verbose
run: cargo tarpaulin --out xml --verbose
- name: Upload reports to codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
name: code-coverage-report
file: cobertura.xml
Expand Down
32 changes: 16 additions & 16 deletions 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 git-cliff-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ repo = ["dep:git2", "dep:glob", "dep:indexmap"]
glob = { workspace = true, optional = true }
regex.workspace = true
log.workspace = true
thiserror = "1.0.48"
thiserror = "1.0.49"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
serde_regex = "1.1.0"
tera = "1.19.1"
indexmap = { version = "2.0.0", optional = true }
toml = "0.8.0"
indexmap = { version = "2.0.2", optional = true }
toml = "0.8.1"
lazy-regex = "3.0.2"

[dependencies.git2]
Expand Down
4 changes: 2 additions & 2 deletions git-cliff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-cliff"
version = "1.3.0" # managed by release.sh
version = "1.3.0" # managed by release.sh
description = "A highly customizable changelog generator ⛰️"
authors = ["git-cliff contributors <[email protected]>"]
license = "GPL-3.0"
Expand Down Expand Up @@ -36,7 +36,7 @@ clap_mangen = "0.1.11"
shellexpand = "3.1.0"

[dependencies.git-cliff-core]
version = "1.3.0" # managed by release.sh
version = "1.3.0" # managed by release.sh
path = "../git-cliff-core"

[dependencies.clap]
Expand Down

0 comments on commit eebcae3

Please sign in to comment.