Skip to content

Tags: justmakeapp/XcodeProj

Tags

8.22.0

Toggle 8.22.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
docs: add mikeger as a contributor for code (tuist#826)

* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>

8.21.0

Toggle 8.21.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Set minimum swift version to 5.8 (tuist#822)

8.20.0

Toggle 8.20.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix deprecation warning when targeting macOS 13 (tuist#814)

Another attempt at tuist#710

Short description:

Fixes this deprecation warning when targeting macOS 13:

```
Sources/XcodeProj/Extensions/String+md5.swift:63:16: warning: 'init(bytesNoCopy:length:encoding:freeWhenDone:)' was deprecated in macOS 13: String does not support no-copy initialization
        return String(bytesNoCopy: ptr, length: hexLen, encoding: .utf8, freeWhenDone: true)!
```

Solution:

* cherry-picked an [updated version from swift-crypto](https://github.com/apple/swift-crypto/blob/606608da0875e3dee07cb37da3b38585420db111/Sources/Crypto/Util/PrettyBytes.swift#L40-L54)