From 6862a7ec22ca52985678408095a49961bd9e2f1b Mon Sep 17 00:00:00 2001 From: Algolia Mobile <45172677+mobilealgolia@users.noreply.github.com> Date: Wed, 31 Aug 2022 15:52:10 +0300 Subject: [PATCH] chore: Deploying new minor version 7.20.0 (#249) --- CHANGELOG.md | 8 ++++++++ InstantSearch.podspec | 2 +- Readme.md | 8 ++++---- Sources/InstantSearchCore/Helper/Version+Current.swift | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35b1832c..ecc8a6ba 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # ChangeLog +## [7.20.0](https://github.com/algolia/instantsearch-ios/compare/7.19.1...7.20.0) (2022-08-31) + +### Refactor + +- **logging**: Logging logic (#248) ([25d5e3e](https://github.com/algolia/instantsearch-ios/commit/25d5e3e)) + + + ## [7.19.1](https://github.com/algolia/instantsearch-ios/compare/7.19.0...7.19.1) (2022-08-04) ### Fix diff --git a/InstantSearch.podspec b/InstantSearch.podspec index 20a6f5db..f8dd509f 100644 --- a/InstantSearch.podspec +++ b/InstantSearch.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InstantSearch' - s.version = '7.19.1' + s.version = '7.20.0' s.platforms = { :ios => "9.0", :osx => "10.11", :watchos => "2.0", :tvos => "9.0" } s.license = { type: 'Apache 2.0', file: 'LICENSE.md' } diff --git a/Readme.md b/Readme.md index 0ef34b98..7bccc597 100644 --- a/Readme.md +++ b/Readme.md @@ -44,9 +44,9 @@ If you're a framework author and use InstantSearch as a dependency, update your ```swift let package = Package( - // 7.19.0 ..< 8.0.0 + // 7.20.0 ..< 8.0.0 dependencies: [ - .package(url: "https://github.com/algolia/instantsearch-ios", from: "7.19.0") + .package(url: "https://github.com/algolia/instantsearch-ios", from: "7.20.0") ], // ... ) @@ -59,7 +59,7 @@ let package = Package( To install InstantSearch, simply add the following line to your Podfile: ```ruby -pod 'InstantSearch', '~> 7.19' +pod 'InstantSearch', '~> 7.20' # pod 'InstantSearch/Insights' for access to Insights library only # pod 'InstantSearch/Core' for access business logic without UIKit components # pod 'InstantSearch/SwiftUI' for access to SwiftUI components @@ -77,7 +77,7 @@ $ pod update - To install InstantSearch, simply add the following line to your Cartfile: ```ruby -github "algolia/instantsearch-ios" ~> 7.19 +github "algolia/instantsearch-ios" ~> 7.20 ``` - Launch the following commands from the project directory diff --git a/Sources/InstantSearchCore/Helper/Version+Current.swift b/Sources/InstantSearchCore/Helper/Version+Current.swift index 6b328b0a..8bf0e370 100644 --- a/Sources/InstantSearchCore/Helper/Version+Current.swift +++ b/Sources/InstantSearchCore/Helper/Version+Current.swift @@ -1,2 +1,2 @@ // This is generated file. Don't modify it manually. -public extension Version { static let current: Version = .init(major: 7, minor: 19, patch: 1, prereleaseIdentifier: nil) } +public extension Version { static let current: Version = .init(major: 7, minor: 20, patch: 0, prereleaseIdentifier: nil) }