Skip to content

Commit db48cff

Browse files
authored
v 0.8.0 (#112)
* find_and_replace refactoring * add condition before adding query params * use String instead of Rc<str> * remove unnecessary to_string conversions * use iterators with strings to simplify the logic * packages update * version bump * try to gather coverage on nightly due to Smithay/wayland-rs#717
1 parent 6630fa7 commit db48cff

File tree

6 files changed

+477
-305
lines changed

6 files changed

+477
-305
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability
8080
strategy:
8181
matrix:
82-
msrv: ["1.66.0"] # toml@0.8.0 MSRV is 1.66.0
82+
msrv: ["1.70.0"] # toml@0.8.13 MSRV is 1.70.0
8383
name: ubuntu / ${{ matrix.msrv }}
8484
steps:
8585
- uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ jobs:
5656
run: cargo test --locked --all-features --all-targets
5757
coverage:
5858
runs-on: ubuntu-latest
59-
name: ubuntu / stable / coverage
59+
name: ubuntu / nightly / coverage
6060
steps:
6161
- uses: actions/checkout@v4
6262
with:
6363
submodules: true
64-
- name: Install stable
65-
uses: dtolnay/rust-toolchain@stable
64+
- name: Install nightly
65+
uses: dtolnay/rust-toolchain@nightly
6666
with:
6767
components: llvm-tools-preview
6868
- name: cargo install cargo-llvm-cov

0 commit comments

Comments
 (0)