### Install Thumbprint Tokens via Swift Package Manager Source: https://github.com/thumbtack/thumbprint-tokens/blob/master/README.md Instructions for integrating Thumbprint Tokens into an Xcode project by adding it as a dependency in Package.swift. Requires Xcode 11 or newer. ```Swift dependencies: [ .package(url: "https://github.com/thumbtack/thumbprint-tokens.git", .upToNextMajor(from: "12.3.0")) ] ``` -------------------------------- ### Release Process for Thumbprint Tokens Source: https://github.com/thumbtack/thumbprint-tokens/blob/master/README.md Detailed steps for preparing and publishing new versions of Thumbprint Tokens, including Git operations, versioning, and deployment to NPM and JitPack. ```Shell git checkout master && git pull git add CHANGELOG.md package.json && git commit -m "Preparing for release." git tag vX.Y.Z yarn install && yarn release git push --tags ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.