From d78381450b6b8d789ce0de800a10e91ea38822c2 Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Wed, 14 Aug 2024 14:42:21 +0000 Subject: [PATCH] chore: release 9.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: algolia-bot Co-authored-by: Clément Vannicatte --- AlgoliaSearchClient.podspec | 4 ++-- CHANGELOG.md | 4 ++++ Sources/Core/Helpers/Version.swift | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/AlgoliaSearchClient.podspec b/AlgoliaSearchClient.podspec index 13238379..0677ebfc 100644 --- a/AlgoliaSearchClient.podspec +++ b/AlgoliaSearchClient.podspec @@ -1,8 +1,8 @@ Pod::Spec.new do |s| s.name = 'AlgoliaSearchClient' s.module_name = 'AlgoliaSearchClient' - s.version = '9.0.0' - s.source = { :git => 'https://github.com/algolia/algoliasearch-client-swift.git', :tag => '9.0.0' } + s.version = '9.0.1' + s.source = { :git => 'https://github.com/algolia/algoliasearch-client-swift.git', :tag => '9.0.1' } s.authors = { 'Algolia' => 'contact@algolia.com' } s.license = { :type => 'MIT', :file => 'LICENSE' } s.homepage = 'https://github.com/algolia/algoliasearch-client-swift/tree/main' diff --git a/CHANGELOG.md b/CHANGELOG.md index faf2a220..eeda31a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [9.0.1](https://github.com/algolia/algoliasearch-client-swift/compare/9.0.0...9.0.1) + +- [40c5d47bd](https://github.com/algolia/api-clients-automation/commit/40c5d47bd) fix(specs): delete user token processing time ([#3525](https://github.com/algolia/api-clients-automation/pull/3525)) by [@kai687](https://github.com/kai687/) + ## [9.0.0](https://github.com/algolia/algoliasearch-client-swift/compare/9.0.0-beta.17...9.0.0) New major version released! Browse [our documentation](https://www.algolia.com/doc/libraries/swift) diff --git a/Sources/Core/Helpers/Version.swift b/Sources/Core/Helpers/Version.swift index 1726d030..9cf30bdc 100644 --- a/Sources/Core/Helpers/Version.swift +++ b/Sources/Core/Helpers/Version.swift @@ -48,5 +48,5 @@ extension Version: CustomStringConvertible { } public extension Version { - static let current: Version = .init(version: "9.0.0") + static let current: Version = .init(version: "9.0.1") }