diff --git a/.code-samples.meilisearch.yaml b/.code-samples.meilisearch.yaml index ea6471fa..0d74a060 100644 --- a/.code-samples.meilisearch.yaml +++ b/.code-samples.meilisearch.yaml @@ -965,7 +965,7 @@ getting_started_add_documents_md: |- Add this to your `Package.swift`: ```swift dependencies: [ - .package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.14.0") + .package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.14.1") ] ``` diff --git a/README.md b/README.md index c3053c52..f91a2d6c 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Once you have your Swift package set up, adding **Meilisearch-Swift** as a depen ```swift dependencies: [ - .package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.14.0") + .package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.14.1") ] ``` diff --git a/Sources/MeiliSearch/Model/PackageVersion.swift b/Sources/MeiliSearch/Model/PackageVersion.swift index e4b910c0..f8a2f1e2 100644 --- a/Sources/MeiliSearch/Model/PackageVersion.swift +++ b/Sources/MeiliSearch/Model/PackageVersion.swift @@ -5,7 +5,7 @@ import Foundation internal struct PackageVersion { /// This is the current version of the meilisearch-swift package - private static let current = "0.14.0" + private static let current = "0.14.1" /** Retrieves the current version of the MeiliSearch Swift package and formats accordingly.