Skip to content

Commit 83efa01

Browse files
committed
1.0.2
1 parent 6ea5e64 commit 83efa01

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-rs"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "Call Swift from Rust with ease!"
55
authors = ["The swift-rs contributors"]
66
license = "MIT OR Apache-2.0"

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Add `swift-rs` to your project's `dependencies` and `build-dependencies`:
1111

1212
```toml
1313
[dependencies]
14-
swift-rs = "1.0.1"
14+
swift-rs = "1.0.2"
1515

1616
[build-dependencies]
17-
swift-rs = { version = "1.0.1", features = ["build"] }
17+
swift-rs = { version = "1.0.2", features = ["build"] }
1818
```
1919

2020
Next, some setup work must be done:
@@ -25,7 +25,7 @@ This can be done in XCode by selecting File -> New -> Project -> Multiplatform -
2525
```swift
2626
let package = Package(
2727
dependencies: [
28-
.package(name: "SwiftRs", url: "https://github.com/Brendonovich/swift-rs", from: "1.0.1")
28+
.package(name: "SwiftRs", url: "https://github.com/Brendonovich/swift-rs", from: "1.0.2")
2929
],
3030
.. // other configuration
3131
)

0 commit comments

Comments
 (0)