Skip to content

Commit

Permalink
chore: Deploying new minor version 7.25.0 (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
mobilealgolia authored May 6, 2023
1 parent 5c1a04a commit dabaae0
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- major
jobs:
deploy:
runs-on: macos-11
runs-on: macos-12
env:
GITHUB_ACTION: ${{ github.action_path }}
GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
Expand All @@ -24,6 +24,8 @@ jobs:
with:
repository: algolia/polyglot
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_14.2.app/Contents/Developer'
- name: Install polyglot
run: |
make install
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# ChangeLog

## [7.25.0](https://github.com/algolia/instantsearch-ios/compare/7.24.0...7.25.0) (2023-05-05)

### Fix

- redundant search request sent by NumberRangeConnector (#283) ([7c68b57](https://github.com/algolia/instantsearch-ios/commit/7c68b57))

### Feat

- **HitsTracker**: add automatic object ids chunking (#284) ([5c1a04a](https://github.com/algolia/instantsearch-ios/commit/5c1a04a))
- **hits**: Inifinite Scroll components (#282) ([2b8eced](https://github.com/algolia/instantsearch-ios/commit/2b8eced))



## [7.24.0](https://github.com/algolia/instantsearch-ios/compare/7.23.0...7.24.0) (2023-05-02)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion InstantSearch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'InstantSearch'
s.version = '7.24.0'
s.version = '7.25.0'
s.platforms = { :ios => "9.0", :osx => "10.11", :watchos => "2.0", :tvos => "9.0" }

s.license = { type: 'Apache 2.0', file: 'LICENSE.md' }
Expand Down
8 changes: 4 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ If you're a framework author and use InstantSearch as a dependency, update your

```swift
let package = Package(
// 7.24.0 ..< 8.0.0
// 7.25.0 ..< 8.0.0
dependencies: [
.package(url: "https://github.com/algolia/instantsearch-ios", from: "7.24.0")
.package(url: "https://github.com/algolia/instantsearch-ios", from: "7.25.0")
],
// ...
)
Expand All @@ -59,7 +59,7 @@ let package = Package(
To install InstantSearch, simply add the following line to your Podfile:

```ruby
pod 'InstantSearch', '~> 7.24'
pod 'InstantSearch', '~> 7.25'
# 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
Expand All @@ -77,7 +77,7 @@ $ pod update

- To install InstantSearch, simply add the following line to your Cartfile:
```ruby
github "algolia/instantsearch-ios" ~> 7.24
github "algolia/instantsearch-ios" ~> 7.25
```

- Launch the following commands from the project directory
Expand Down
2 changes: 1 addition & 1 deletion Sources/InstantSearchCore/Helper/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: 7, minor: 24, patch: 0, prereleaseIdentifier: nil) }
public extension Version { static let current: Version = .init(major: 7, minor: 25, patch: 0, prereleaseIdentifier: nil) }

0 comments on commit dabaae0

Please sign in to comment.