Skip to content

Commit 05279fe

Browse files
Merge #291
291: Update version for the next release (v0.13.2) r=curquiza a=bidoubiwa This version makes this package compatible with Meilisearch v0.27.0 🎉 Check out the changelog of [Meilisearch v0.27.0](https://github.com/meilisearch/meilisearch/releases/tag/v0.27.0) for more information on the changes. ## 🚀 Enhancements * Add new search parameters highlightPreTag, highlightPostTag and cropMarker (#288) `@bidoubiwa` * Ensure nested fields support (#287) `@bidoubiwa` Thanks again to `@bidoubiwa` 🎉 Co-authored-by: Bruno Casali <[email protected]>
2 parents 96ab828 + ab1514d commit 05279fe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.code-samples.meilisearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ getting_started_add_documents_md: |-
948948
Add this to your `Package.swift`:
949949
```swift
950950
dependencies: [
951-
.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.13.1")
951+
.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.13.2")
952952
]
953953
```
954954

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Once you have your Swift package set up, adding **Meilisearch-Swift** as a depen
6969

7070
```swift
7171
dependencies: [
72-
.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.13.1")
72+
.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.13.2")
7373
]
7474
```
7575

Sources/MeiliSearch/Model/PackageVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Foundation
22

33
internal struct PackageVersion {
44
/// This is the current version of the meilisearch-swift package
5-
private static let current = "0.13.1"
5+
private static let current = "0.13.2"
66

77
/**
88
Retrieves the current version of the MeiliSearch Swift package and formats accordingly.

0 commit comments

Comments
 (0)