Skip to content

Commit

Permalink
chore: Deploying new patch version 8.18.1 (#822)
Browse files Browse the repository at this point in the history
  • Loading branch information
mobilealgolia authored Jun 22, 2023
1 parent 292abb4 commit 71e4e1c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AlgoliaSearchClient.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|
spec.name = "AlgoliaSearchClient"
spec.module_name = 'AlgoliaSearchClient'
spec.version = "8.18.0"
spec.version = "8.18.1"
spec.summary = "Algolia Search API Client written in Swift."
spec.homepage = "https://github.com/algolia/algoliasearch-client-swift"
spec.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# ChangeLog

## [8.18.1](https://github.com/algolia/algoliasearch-client-swift/compare/8.18.0...8.18.1) (2023-06-22)

### Fix

- matching errors in the retry strategy (#817) ([0726cc5](https://github.com/algolia/algoliasearch-client-swift/commit/0726cc5))
- added conditional FoundationNetworking import to AlgoliaRetryStrategy.swift (#815) ([1281375](https://github.com/algolia/algoliasearch-client-swift/commit/1281375))



## [8.18.0](https://github.com/algolia/algoliasearch-client-swift/compare/8.17.0...8.18.0) (2023-03-24)

### Feat
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ If you're a framework author and use Swift API Client as a dependency, update yo

```swift
let package = Package(
// 8.17.0 ..< 9.0.0
// 8.18.0 ..< 9.0.0
dependencies: [
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "8.17.0")
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "8.18.0")
],
// ...
)
Expand All @@ -77,7 +77,7 @@ Add `import AlgoliaSearchClient` to your source files.
To install Algolia Swift Client, simply add the following line to your Podfile:

```ruby
pod 'AlgoliaSearchClient', '~> 8.17'
pod 'AlgoliaSearchClient', '~> 8.18'
# pod 'InstantSearchClient', '~> 6.0' // Swift 4.2
# pod 'InstantSearchClient', '~> 5.0' // Swift 4.1
```
Expand All @@ -94,7 +94,7 @@ $ pod update

- To install InstantSearch, simply add the following line to your Cartfile:
```ruby
github "algolia/algoliasearch-client-swift" ~> 8.17
github "algolia/algoliasearch-client-swift" ~> 8.18
# github "algolia/algoliasearch-client-swift" ~> 6.0.0 // Swift 4.2
# github "algolia/algoliasearch-client-swift" ~> 5.0.0 // Swift 4.1
```
Expand Down
2 changes: 1 addition & 1 deletion Sources/AlgoliaSearchClient/Helpers/Version+Current.swift
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This is generated file. Don't modify it manually.
public extension Version { static let current: Version = .init(major: 8, minor: 18, patch: 0, prereleaseIdentifier: nil) }
public extension Version { static let current: Version = .init(major: 8, minor: 18, patch: 1, prereleaseIdentifier: nil) }

0 comments on commit 71e4e1c

Please sign in to comment.