Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version for the next release (v0.16.0) #440

Merged
merged 3 commits into from
Mar 20, 2024
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 @@ -1102,7 +1102,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.15.0")
.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.16.0")
]
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,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.15.0")
.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "0.16.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.15.0"
private static let current = "0.16.0"

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