Skip to content

Commit

Permalink
Cargo format and clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
skeet70 committed Aug 13, 2024
1 parent a8e7f51 commit fcab6e6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sdk-ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python/Kotlin CI
name: Python/Kotlin/Java CI
on:
pull_request:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python/Kotlin Release
name: Python/Kotlin/Java Release
on:
# https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#release
# The Bump Version workflow will make a Github release if it isn't a prerelease version
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ to protect the private or sensitive data your apps process.

## Language Support

- [Java](https://central.sonatype.com/artifact/com.ironcorelabs/ironcore-alloy)
- [Java](https://central.sonatype.com/artifact/com.ironcorelabs/ironcore-alloy-java)
- [Kotlin](https://central.sonatype.com/artifact/com.ironcorelabs/ironcore-alloy)
- [Python](https://pypi.org/project/ironcore-alloy)
- Rust - Depend on this repo using a git dependency.
Expand Down
6 changes: 3 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Checklist

- Update to the new version number using the [Bump Version](https://github.com/IronCoreLabs/ironcore-alloy/actions/workflows/bump-version.yaml) workflow. This will be used as the Rust/Python/Kotlin version number.
- The [Python/Kotlin Release](https://github.com/IronCoreLabs/ironcore-alloy/actions/workflows/sdk-release.yaml) action will automatically publish the Python/Kotlin SDKs.
- Update to the new version number using the [Bump Version](https://github.com/IronCoreLabs/ironcore-alloy/actions/workflows/bump-version.yaml) workflow. This will be used as the Rust/Python/Kotlin/Java version number.
- The [Python/Kotlin/Java Release](https://github.com/IronCoreLabs/ironcore-alloy/actions/workflows/sdk-release.yaml) action will automatically publish the Python/Kotlin/Java SDKs.
- When the JVM artifacts have been deployed, go to https://oss.sonatype.org, log in using the `icl-devops` username and
password from `sonatype-info.txt`, and find the new release in the _Staging Repositories_. Close that repository and then release it in order to actually push the package out to the public repo.
password from `sonatype-info.txt`, and find the new release in the _Staging Repositories_. Close that repository and then release it in order to actually push the package out to the public repo.
2 changes: 1 addition & 1 deletion src/saas_shield/standard_attached.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl StandardAttachedDocumentOps for SaasShieldStandardAttachedClient {
) -> Result<PlaintextAttachedDocument, AlloyError> {
decrypt_core(&self.standard_client, attached_document, metadata)
.await
.map(|x| PlaintextAttachedDocument(x))
.map(PlaintextAttachedDocument)
}

/// Decrypt multiple documents that were encrypted with the provided metadata.
Expand Down
2 changes: 1 addition & 1 deletion src/standalone/standard_attached.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl StandardAttachedDocumentOps for StandaloneStandardAttachedClient {
) -> Result<PlaintextAttachedDocument, AlloyError> {
decrypt_core(&self.standard_client, encrypted_document, metadata)
.await
.map(|x| PlaintextAttachedDocument(x))
.map(PlaintextAttachedDocument)
}

/// Decrypt multiple documents that were encrypted with the provided metadata.
Expand Down

0 comments on commit fcab6e6

Please sign in to comment.