Skip to content

Commit ff84631

Browse files
authored
chore: Deploying new minor version 8.20.0 (#853)
2 parents 03585ce + 3b9f5bd commit ff84631

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
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.19.0"
4+
spec.version = "8.20.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: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# ChangeLog
22

3+
4+
## [8.20.0](https://github.com/algolia/algoliasearch-client-swift/compare/8.19.0...8.20.0) (2023-02-02)
5+
6+
### Misc
7+
8+
- chore: replace swift-log with oslog (#850)
9+
310
## [8.19.0](https://github.com/algolia/algoliasearch-client-swift/compare/8.18.2...8.19.0) (2023-12-07)
411

512
### Misc
@@ -295,4 +302,3 @@
295302
- Version 8.1.2 (#679) ([e028c43](https://github.com/algolia/algoliasearch-client-swift/commit/e028c43))
296303
- Version 8.1.2 ([eb1db8d](https://github.com/algolia/algoliasearch-client-swift/commit/eb1db8d))
297304

298-

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.19.0 ..< 9.0.0
63+
// 8.20.0 ..< 9.0.0
6464
dependencies: [
65-
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "8.19.0")
65+
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "8.20.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.19'
80+
pod 'AlgoliaSearchClient', '~> 8.20'
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.19
97+
github "algolia/algoliasearch-client-swift" ~> 8.20
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: 19, patch: 0, prereleaseIdentifier: nil) }
2+
public extension Version { static let current: Version = .init(major: 8, minor: 20, patch: 0, prereleaseIdentifier: nil) }

0 commit comments

Comments
 (0)