Skip to content

Commit 52592c6

Browse files
authored
Merge pull request #277 from RGB-WG/develop
Release v0.11.0 beta 9
2 parents 7ae9760 + 476c9e7 commit 52592c6

24 files changed

+410
-245
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v[0-9]+\.*'
8+
- 'v\d+\.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v[0-9]+.[0-9]+'
13+
- 'v\d+(\.\d+)*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always
@@ -57,7 +57,7 @@ jobs:
5757
strategy:
5858
fail-fast: false
5959
matrix:
60-
toolchain: [ nightly, beta, stable, 1.76.0 ]
60+
toolchain: [ nightly, beta, stable, 1.77.0 ]
6161
steps:
6262
- uses: actions/checkout@v4
6363
- uses: dtolnay/rust-toolchain@master

.github/workflows/codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v[0-9]+\.*'
8+
- 'v\d+\.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v[0-9]+.[0-9]+'
13+
- 'v\d+(\.\d+)*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
- develop
8-
- 'v[0-9]+.[0-9]+'
8+
- 'v\d+(\.\d+)*'
99

1010
env:
1111
CARGO_TERM_COLOR: always

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v[0-9]+\.*'
8+
- 'v\d+\.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v[0-9]+.[0-9]+'
13+
- 'v\d+(\.\d+)*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

.rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
edition = "2021"
2-
version = "Two"
2+
style_edition = "2021"
33

44
max_width = 100
55
array_width = 100

0 commit comments

Comments
 (0)