Skip to content

Commit 3ebf7b1

Browse files
chore: Deploying new minor version 8.13.0 (#767)
1 parent 52a682b commit 3ebf7b1

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-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.12.0"
4+
spec.version = "8.13.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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# ChangeLog
22

3+
## [8.13.0](https://github.com/algolia/algoliasearch-client-swift/compare/...8.13.0) (2021-12-13)
4+
5+
### Feat
6+
7+
- Replace static UserAgent with UserAgent extensions (#764) ([52a682b](https://github.com/algolia/algoliasearch-client-swift/commit/58ad2eb))
8+
9+
### Fix
10+
11+
- Around precision url component conversion issue (#765) ([58ad2eb](https://github.com/algolia/algoliasearch-client-swift/commit/52a682b))
12+
13+
### Refactor
14+
15+
- URL paths construction (#762) ([72dfa0e](https://github.com/algolia/algoliasearch-client-swift/commit/72dfa0e))
16+
17+
18+
319
## [8.12.0](https://github.com/algolia/algoliasearch-client-swift/compare/...8.12.0) (2021-11-05)
420

521
### 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.11.0 ..< 9.0.0
63+
// 8.13.0 ..< 9.0.0
6464
dependencies: [
65-
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "8.11.0")
65+
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "8.13.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.11'
80+
pod 'AlgoliaSearchClient', '~> 8.13'
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.11
97+
github "algolia/algoliasearch-client-swift" ~> 8.13
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: 12, patch: 0, prereleaseIdentifier: nil) }
2+
public extension Version { static let current: Version = .init(major: 8, minor: 13, patch: 0, prereleaseIdentifier: nil) }

0 commit comments

Comments
 (0)