From 2a3195a2a3ba6e2d8e67edcd866645539fdf1963 Mon Sep 17 00:00:00 2001 From: Brendan Allan Date: Sat, 18 Mar 2023 21:44:56 +0800 Subject: [PATCH] 1.0.3 --- Cargo.toml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a0613fa..c2f61a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swift-rs" -version = "1.0.2" +version = "1.0.3" description = "Call Swift from Rust with ease!" authors = ["The swift-rs contributors"] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 54cc004..7540234 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ Add `swift-rs` to your project's `dependencies` and `build-dependencies`: ```toml [dependencies] -swift-rs = "1.0.2" +swift-rs = "1.0.3" [build-dependencies] -swift-rs = { version = "1.0.2", features = ["build"] } +swift-rs = { version = "1.0.3", 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.2") + .package(name: "SwiftRs", url: "https://github.com/Brendonovich/swift-rs", from: "1.0.3") ], .. // other configuration )