Skip to content

Commit c8aa2bd

Browse files
chore: Deploying new minor version 8.7.0 (#729)
* chore: update version to 8.7.0 [skip ci] Co-authored-by: Vladislav Fitc <[email protected]>
1 parent 3573863 commit c8aa2bd

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

AlgoliaSearchClient.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22
spec.name = "AlgoliaSearchClient"
33
spec.module_name = 'AlgoliaSearchClient'
4-
spec.version = "8.6.0"
4+
spec.version = "8.7.0"
55
spec.summary = "Algolia Search API Client written in Swift."
66
spec.homepage = "https://github.com/algolia/algoliasearch-client-swift"
77
spec.license = { :type => "MIT", :file => "LICENSE" }

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# ChangeLog
22

3+
## [8.7.0](https://github.com/algolia/algoliasearch-client-swift/compare/8.6.0...8.7.0) (2021-02-15)
4+
5+
### Misc
6+
7+
- feat(virtual indices): Virtual indices related parameters (#727) ([3573863](https://github.com/algolia/algoliasearch-client-swift/commit/3573863))
8+
9+
10+
311
## [8.6.0](https://github.com/algolia/algoliasearch-client-swift/compare/8.5.0...8.6.0) (2021-02-03)
412

513
### Feat

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ If you're a framework author and use Swift API Client as a dependency, update yo
6060

6161
```swift
6262
let package = Package(
63-
// 8.6.0 ..< 9.0.0
63+
// 8.7.0 ..< 9.0.0
6464
dependencies: [
65-
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "8.6.0")
65+
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "8.7.0")
6666
],
6767
// ...
6868
)
@@ -77,7 +77,7 @@ Add `import AlgoliaSearchClient` to your source files.
7777
To install Algolia Swift Client, simply add the following line to your Podfile:
7878

7979
```ruby
80-
pod 'AlgoliaSearchClient', '~> 8.6'
80+
pod 'AlgoliaSearchClient', '~> 8.7'
8181
# pod 'InstantSearchClient', '~> 6.0'` // Swift 4.2
8282
# pod 'InstantSearchClient', '~> 5.0'` // Swift 4.1
8383
```
@@ -94,7 +94,7 @@ $ pod update
9494

9595
- To install InstantSearch, simply add the following line to your Cartfile:
9696
```ruby
97-
github "algolia/algoliasearch-client-swift" ~> 8.6
97+
github "algolia/algoliasearch-client-swift" ~> 8.7
9898
# github "algolia/algoliasearch-client-swift" ~> 6.0.0` // Swift 4.2
9999
# github "algolia/algoliasearch-client-swift" ~> 5.0.0` // Swift 4.1
100100
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This is generated file. Don't modify it manually.
2-
public extension Version { static let current: Version = .init(major: 8, minor: 6, patch: 0, prereleaseIdentifier: nil) }
2+
public extension Version { static let current: Version = .init(major: 8, minor: 7, patch: 0, prereleaseIdentifier: nil) }

0 commit comments

Comments
 (0)