Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
Brendonovich committed Mar 13, 2023
1 parent d758437 commit cbb9b96
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swift-rs"
version = "1.0.0"
version = "1.0.1"
description = "Call Swift from Rust with ease!"
authors = ["The swift-rs contributors"]
license = "MIT OR Apache-2.0"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -11,10 +11,10 @@ Add `swift-rs` to your project's `dependencies` and `build-dependencies`:

```toml
[dependencies]
swift-rs = "1.0.0"
swift-rs = "1.0.1"

[build-dependencies]
swift-rs = { version = "1.0.0", features = ["build"] }
swift-rs = { version = "1.0.1", features = ["build"] }
```

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

0 comments on commit cbb9b96

Please sign in to comment.