Skip to content

Commit

Permalink
Release v0.3.0 (spruceid#46)
Browse files Browse the repository at this point in the history
* Fix cocoapod linter

* Update Contributing.md

* bump package version
  • Loading branch information
Juliano1612 authored Oct 23, 2024
1 parent 1f1e330 commit 1d95944
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ During development, you can simply depend on your local instance of
Once everything is complete, `mobile-sdk-rs` will need to be published as it
needs to have the dynamic libraries published.

## Checking CocoaPods linter locally
The release action also releases the package on CocoaPods, and this release
has a CocoaPod code verification. You can check your changes locally by
running `pod lib lint SpruceIDMobileSdk.podspec`

## Release
1. Ensure the dependencies rely on published versions and not commits or
branches.
Expand Down
4 changes: 2 additions & 2 deletions Sources/MobileSdk/Credentials.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ public class CredentialStore {
callback: BLESessionStateDelegate,
useL2CAP: Bool = true
// , trustedReaders: TrustedReaders
) async -> IsoMdlPresentation? {
) -> IsoMdlPresentation? {
if let firstMdoc = credentials.first(where: { $0.asMsoMdoc() != nil }) {
let mdoc = firstMdoc.asMsoMdoc()!
return await IsoMdlPresentation(mdoc: MDoc(Mdoc: mdoc),
return IsoMdlPresentation(mdoc: MDoc(Mdoc: mdoc),
engagement: DeviceEngagement.QRCode,
callback: callback,
useL2CAP: useL2CAP)
Expand Down
2 changes: 1 addition & 1 deletion SpruceIDMobileSdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "SpruceIDMobileSdk"
spec.version = "0.2.0"
spec.version = "0.3.0"
spec.summary = "Swift Mobile SDK."
spec.description = <<-DESC
SpruceID Swift Mobile SDK.
Expand Down

0 comments on commit 1d95944

Please sign in to comment.