Skip to content

Commit

Permalink
1.3.0: Update tuples-kt, add support for higher arity tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhuinden committed Jul 12, 2023
1 parent 88b7784 commit ecab4f7
Show file tree
Hide file tree
Showing 5 changed files with 3,572 additions and 106 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change log

-Rx-CombineTuple-KT 1.3.0 (2023-07-12)
--------------------------------

- Update tuples-kt to 1.2.0.

- Add support of `combineTuple` and `zipTuple` for higher arity tuples.

-Rx-CombineTuple-KT 1.2.1 (2021-02-10)
--------------------------------

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Rx-CombineTuple-KT contains helper functions for RxJava `Flowable` and `Observable` types, to combine their latest emissions into typed tuples.

Under the hood, it uses Tuples-KT to help provide combiners from 2 to 16 arity.
Under the hood, it uses Tuples-KT to help provide combiners from 2 to 36 arity.

``` kotlin
combineTuple(relay1, relay2, relay3)
Expand Down Expand Up @@ -63,19 +63,19 @@ and then, add the dependency to your module's `build.gradle.kts` (or `build.grad

``` kotlin
// build.gradle.kts
implementation("com.github.Zhuinden:rx-combinetuple-kt:1.2.1")
implementation("com.github.Zhuinden:rx-combinetuple-kt:1.3.0")
```

or

``` groovy
// build.gradle
implementation 'com.github.Zhuinden:rx-combinetuple-kt:1.2.1'
implementation 'com.github.Zhuinden:rx-combinetuple-kt:1.3.0'
```

## License

Copyright 2020 Gabor Varadi
Copyright 2020-2023 Gabor Varadi

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ repositories {
}

dependencies {
api 'com.github.Zhuinden:tuples-kt:1.1.1'
api 'io.reactivex.rxjava2:rxjava:2.2.20'
api 'com.github.Zhuinden:tuples-kt:1.2.0'
api 'io.reactivex.rxjava2:rxjava:2.2.21'
}

task sourcesJar(type: Jar, dependsOn: classes) {
Expand All @@ -48,7 +48,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.github.Zhuinden'
artifactId = 'rx-combinetuple-kt'
version = '1.2.1'
version = '1.3.0'

from components.java
artifact sourcesJar
Expand Down
Loading

0 comments on commit ecab4f7

Please sign in to comment.