Skip to content

Commit

Permalink
Release 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aallam committed Nov 2, 2020
2 parents ded337a + 9869728 commit 9b1d28b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 10 deletions.
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,38 @@
# 2.7.1

### Changed
- Algolia Kotlin Client `1.5.1`
- Kotlin Coroutines `1.4.0`
- Ktor `1.4.1`
- Ktor Http engine to OkHttp

# 2.7.0

# Added
### Added
- Query rule custom data widget

# 2.6.0

## Changed
### Changed
- Kotlin `1.4.10`
- Algolia Kotlin Client `1.5.0`
- Android minimum SDK to 21

# 2.5.1

## Fixed
### Fixed
- Filter unexpected items from the hierarchical tree results

# 2.5.0

## Added
### Added
- Support and target Android API 30
- Add selection capability to the hierarchical tree nodes
- Filter range dynamic behavior based on a searcher state

# 2.4.0

## Added
### Added
- Related items widget
- Connecting `SortByViewModel` to `PagedList`

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Library.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ object Library: Dependency {

override val group = "com.algolia"
override val artifact = "instantsearch-android"
override val version = "2.7.0"
override val version = "2.7.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ object AlgoliaClient : Dependency {

override val group = "com.algolia"
override val artifact = "algoliasearch-client-kotlin"
override val version = "1.5.0"
override val version = "1.5.1"
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/dependency/network/Coroutines.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ object Coroutines : Dependency {

override val group = "org.jetbrains.kotlinx"
override val artifact = "kotlinx-coroutines"
override val version = "1.3.9"
override val version = "1.4.0"
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/dependency/network/Ktor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ object Ktor : Dependency {

override val group = "io.ktor"
override val artifact = "ktor"
override val version = "1.4.0"
override val version = "1.4.1"
}
2 changes: 1 addition & 1 deletion instantsearch-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ version = Library.version
dependencies {
api(project(":instantsearch-android-core"))
api(AlgoliaClient())
api(Ktor("client-android"))
api(Ktor("client-okhttp"))
api(AndroidCore("ktx"))
api(AppCompat())
api(RecyclerView())
Expand Down

0 comments on commit 9b1d28b

Please sign in to comment.