Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Apr 5, 2023
1 parent 6cbed2d commit 91b21a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "swift-rs"
version = "1.0.3"
version = "1.0.4"
description = "Call Swift from Rust with ease!"
authors = ["The swift-rs contributors"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -11,10 +11,10 @@ Add `swift-rs` to your project's `dependencies` and `build-dependencies`:

```toml
[dependencies]
swift-rs = "1.0.3"
swift-rs = "1.0.4"

[build-dependencies]
swift-rs = { version = "1.0.3", features = ["build"] }
swift-rs = { version = "1.0.4", features = ["build"] }
```

Next, some setup work must be done:
Expand All @@ -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.3")
.package(name: "SwiftRs", url: "https://github.com/Brendonovich/swift-rs", from: "1.0.4")
],
products: [
.library(
Expand Down

0 comments on commit 91b21a5

Please sign in to comment.