Skip to content

Commit

Permalink
ci: bump ci to use rust 1.69 (#4486)
Browse files Browse the repository at this point in the history
rust 1.69 is [released](https://blog.rust-lang.org/2023/04/20/Rust-1.69.0.html), this PR configures our CI to use 1.69 and fixes new lints raised by clippy v1.69.
  • Loading branch information
kayagokalp committed Apr 24, 2023
1 parent 386f58d commit f3ae93e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
env:
CARGO_TERM_COLOR: always
REGISTRY: ghcr.io
RUST_VERSION: 1.68.2
RUST_VERSION: 1.69.0
NIGHTLY_RUST_VERSION: nightly-2023-02-08

jobs:
Expand Down
2 changes: 1 addition & 1 deletion sway-ast/src/brackets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ macro_rules! define_brackets (
}

impl<T> $ty_name<T> {
pub fn new<'a>(inner: T, span: Span) -> $ty_name<T> {
pub fn new(inner: T, span: Span) -> $ty_name<T> {
$ty_name {
inner,
span,
Expand Down

0 comments on commit f3ae93e

Please sign in to comment.