Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,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.1")
.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.15.0")
]
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1")
.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.15.0")
]
```

Expand Down
2 changes: 1 addition & 1 deletion Sources/MeiliSearch/Model/PackageVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
private static let current = "0.15.0"

/**
Retrieves the current version of the MeiliSearch Swift package and formats accordingly.
Expand Down