Skip to content

Commit b287fea

Browse files
Updated the Package and README to reflect the updated repo name
1 parent 8035e34 commit b287fea

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import PackageDescription
1717

1818
let package = Package(
19-
name: "webauthn-swift",
19+
name: "swift-webauthn",
2020
platforms: [
2121
.macOS(.v13)
2222
],

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# webauthn-swift
1+
# swift-webauthn
22

33
This package provides a Swift implementation of the [WebAuthn API](https://w3c.github.io/webauthn) focused on making it
4-
easy to leverage the power of WebAuthn.
4+
easy to leverage the power of WebAuthn to support Passkeys and security keys.
55

66
## Getting Started
77

@@ -10,13 +10,13 @@ easy to leverage the power of WebAuthn.
1010
Add the following entry in your `Package.swift` to start using `WebAuthn`:
1111

1212
```swift
13-
.package(url: "https://github.com/swift-server/webauthn-swift.git", from: "1.0.0-alpha")
13+
.package(url: "https://github.com/swift-server/swift-webauthn.git", from: "1.0.0-alpha.2")
1414
```
1515

1616
and `WebAuthn` dependency to your target:
1717

1818
```swift
19-
.target(name: "MyApp", dependencies: [.product(name: "WebAuthn", package: "webauthn-swift")])
19+
.target(name: "MyApp", dependencies: [.product(name: "WebAuthn", package: "swift-webauthn")])
2020
```
2121

2222
### Setup

scripts/check_no_api_breakages.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ function usage() {
3636
echo >&2
3737
echo >&2 "Examples:"
3838
echo >&2
39-
echo >&2 "Check between main and tag 1.0.0 of webauthn-swift:"
40-
echo >&2 " $0 https://github.com/swift-server/webauthn-swift main 1.0.0"
39+
echo >&2 "Check between main and tag 1.0.0 of swift-webauthn:"
40+
echo >&2 " $0 https://github.com/swift-server/swift-webauthn main 1.0.0"
4141
echo >&2
4242
echo >&2 "Check between HEAD and commit 681eb6f using the provided toolchain:"
4343
echo >&2 " xcrun --toolchain org.swift.5120190702a $0 ../some-local-repo HEAD 681eb6f"

0 commit comments

Comments
 (0)