Skip to content

Commit fe39511

Browse files
committed
πŸ‘· ci(circleci): update Rust and toolkit versions
- upgrade minimum Rust version to 1.81 for latest features - update circleci-toolkit orb to version 2.11.0 for improvements 🌐 i18n(vscode): configure SonarLint project settings - add SonarLint connected mode configuration in VSCode settings πŸ”§ chore(cargo): specify Rust version in Cargo.toml - set rust-version to 1.81 for consistency across environments πŸ“ docs(readme): update Rust version badge to 1.81 - reflect the updated minimum Rust version in the README badge
1 parent 59bf40f commit fe39511

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

β€Ž.circleci/config.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
parameters:
44
min-rust-version:
55
type: string
6-
default: "1.78"
6+
default: "1.81"
77
fingerprint:
88
type: string
99
default: SHA256:OkxsH8Z6Iim6WDJBaII9eTT9aaO1f3eDc6IpsgYYPVg
@@ -21,7 +21,7 @@ parameters:
2121
description: "If true, the success pipeline will be executed."
2222

2323
orbs:
24-
toolkit: jerus-org/circleci-toolkit@2.10.7
24+
toolkit: jerus-org/circleci-toolkit@2.11.0
2525

2626
executors:
2727
rust-env:

β€Ž.vscode/settings.jsonβ€Ž

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,9 @@
66
],
77
"conventionalCommits.scopes": [
88
"Release Management"
9-
]
9+
],
10+
"sonarlint.connectedMode.project": {
11+
"connectionId": "jerus-org",
12+
"projectKey": "jerus-org_lambda_sqs"
13+
}
1014
}

β€ŽCargo.tomlβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Handles an SQS event and provides a vec of your type for processing.
77
edition = "2021"
88
authors = ["Jeremiah Russell <[email protected]>"]
99
license = "MIT OR Apache-2.0"
10+
rust-version = "1.81"
1011
repository = "https://github.com/jerus-org/lambda_sqs"
1112
readme = "README.md"
1213
documentation = "https://docs.rs/lambda-sqs"

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dual licensed as above, without any additional terms or conditions.
7070
[mit-url]: https://github.com/jerusdp/lambda_sqs/blob/main/LICENSE
7171
[circleci-badge]: https://dl.circleci.com/status-badge/img/gh/jerus-org/lambda_sqs/tree/main.svg?style=svg
7272
[circleci-url]: https://dl.circleci.com/status-badge/redirect/gh/jerus-org/lambda_sqs/tree/main
73-
[version-badge]: https://img.shields.io/badge/rust-1.78+-orange.svg
73+
[version-badge]: https://img.shields.io/badge/rust-1.81+-orange.svg
7474
[version-url]: https://www.rust-lang.org
7575
[fossa-badge]: https://app.fossa.com/api/projects/custom%2B22707%2Fgit%40github.com%3Ajerusdp%2Flambda_sqs.git.svg?type=shield
7676
[fossa-url]: https://app.fossa.com/projects/custom%2B22707%2Fgit%40github.com%3Ajerusdp%2Flambda_sqs.git?ref=badge_shield

0 commit comments

Comments
Β (0)