Skip to content

Commit

Permalink
Merge branch 'main' into more-default
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede authored Jan 19, 2025
2 parents d0184a7 + c2cb197 commit ec516ca
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
components: llvm-tools-preview

- name: Install just & cargo-llvm-cov
uses: taiki-e/[email protected].0
uses: taiki-e/[email protected].11
with:
tool: just,cargo-llvm-cov

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
components: clippy

- name: Install just, cargo-hack
uses: taiki-e/[email protected].0
uses: taiki-e/[email protected].11
with:
tool: just,cargo-hack

Expand Down
47 changes: 24 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ serde = "1"
serde_json = "1"
serde_with = "3"
serde_yml = "0.0.12"
tokio = "1.42.0"
tokio = "1.43.0"
url = "2"

[patch.crates-io]
Expand Down
2 changes: 1 addition & 1 deletion crates/oas3/src/spec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl Spec {
.find(|(_, _, op)| {
op.operation_id
.as_deref()
.map_or(false, |id| id == operation_id)
.is_some_and(|id| id == operation_id)
})
.map(|(_, _, op)| op)
}
Expand Down
4 changes: 4 additions & 0 deletions crates/roast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 0.3.0

- Update `oas3` dependency to `0.13`.

## 0.2.0

- Update `oas3` dependency to `0.12`.
Expand Down
2 changes: 1 addition & 1 deletion crates/roast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "roast"
description = "Structures and tools to parse, navigate, and validate OpenAPI v3.1 specifications"
version = "0.2.0"
version = "0.3.0"
authors = ["Rob Ede <[email protected]>"]
keywords = ["oas3", "openapi", "swagger", "api", "conformance"]
categories = ["development-tools::testing"]
Expand Down

0 comments on commit ec516ca

Please sign in to comment.