Skip to content

Commit ec516ca

Browse files
authored
Merge branch 'main' into more-default
2 parents d0184a7 + c2cb197 commit ec516ca

File tree

7 files changed

+33
-28
lines changed

7 files changed

+33
-28
lines changed

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
components: llvm-tools-preview
2424

2525
- name: Install just & cargo-llvm-cov
26-
uses: taiki-e/[email protected].0
26+
uses: taiki-e/[email protected].11
2727
with:
2828
tool: just,cargo-llvm-cov
2929

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
components: clippy
2929

3030
- name: Install just, cargo-hack
31-
uses: taiki-e/[email protected].0
31+
uses: taiki-e/[email protected].11
3232
with:
3333
tool: just,cargo-hack
3434

Cargo.lock

+24-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ serde = "1"
3939
serde_json = "1"
4040
serde_with = "3"
4141
serde_yml = "0.0.12"
42-
tokio = "1.42.0"
42+
tokio = "1.43.0"
4343
url = "2"
4444

4545
[patch.crates-io]

crates/oas3/src/spec/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ impl Spec {
170170
.find(|(_, _, op)| {
171171
op.operation_id
172172
.as_deref()
173-
.map_or(false, |id| id == operation_id)
173+
.is_some_and(|id| id == operation_id)
174174
})
175175
.map(|(_, _, op)| op)
176176
}

crates/roast/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## 0.3.0
6+
7+
- Update `oas3` dependency to `0.13`.
8+
59
## 0.2.0
610

711
- Update `oas3` dependency to `0.12`.

crates/roast/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "roast"
33
description = "Structures and tools to parse, navigate, and validate OpenAPI v3.1 specifications"
4-
version = "0.2.0"
4+
version = "0.3.0"
55
authors = ["Rob Ede <[email protected]>"]
66
keywords = ["oas3", "openapi", "swagger", "api", "conformance"]
77
categories = ["development-tools::testing"]

0 commit comments

Comments
 (0)