Skip to content

Commit c24aa36

Browse files
committed
Dependency updates
1 parent 8a93c9a commit c24aa36

File tree

7 files changed

+91
-11
lines changed

7 files changed

+91
-11
lines changed

.gitignore

Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,78 @@ fabric.properties
6363
.idea/httpRequests
6464

6565
# Android studio 3.1+ serialized cache file
66-
.idea/caches/build_file_checksums.ser
66+
.idea/caches/build_file_checksums.ser
67+
68+
.DS_Store
69+
.idea/shelf
70+
/confluence/target
71+
/dependencies/repo
72+
/android.tests.dependencies
73+
/dependencies/android.tests.dependencies
74+
/dist
75+
/local
76+
/gh-pages
77+
/ideaSDK
78+
/clionSDK
79+
/android-studio/sdk
80+
/tmp
81+
/intellij
82+
workspace.xml
83+
*.versionsBackup
84+
/idea/testData/debugger/tinyApp/classes*
85+
/jps-plugin/testData/kannotator
86+
/js/js.translator/testData/out/
87+
/js/js.translator/testData/out-min/
88+
/js/js.translator/testData/out-pir/
89+
.gradle/
90+
build/
91+
!**/src/**/build
92+
!**/test/**/build
93+
*.iml
94+
!**/testData/**/*.iml
95+
.idea/remote-targets.xml
96+
.idea/libraries/Gradle*.xml
97+
.idea/libraries/Maven*.xml
98+
.idea/artifacts/PILL_*.xml
99+
.idea/artifacts/KotlinPlugin.xml
100+
.idea/modules
101+
.idea/runConfigurations/JPS_*.xml
102+
.idea/runConfigurations/PILL_*.xml
103+
.idea/runConfigurations/_FP_*.xml
104+
.idea/runConfigurations/_MT_*.xml
105+
.idea/libraries
106+
.idea/modules.xml
107+
.idea/gradle.xml
108+
.idea/compiler.xml
109+
.idea/inspectionProfiles/profiles_settings.xml
110+
.idea/.name
111+
.idea/artifacts/dist_auto_*
112+
.idea/artifacts/dist.xml
113+
.idea/artifacts/ideaPlugin.xml
114+
.idea/artifacts/kotlinc.xml
115+
.idea/artifacts/kotlin_compiler_jar.xml
116+
.idea/artifacts/kotlin_plugin_jar.xml
117+
.idea/artifacts/kotlin_jps_plugin_jar.xml
118+
.idea/artifacts/kotlin_daemon_client_jar.xml
119+
.idea/artifacts/kotlin_imports_dumper_compiler_plugin_jar.xml
120+
.idea/artifacts/kotlin_main_kts_jar.xml
121+
.idea/artifacts/kotlin_compiler_client_embeddable_jar.xml
122+
.idea/artifacts/kotlin_reflect_jar.xml
123+
.idea/artifacts/kotlin_stdlib_js_ir_*
124+
.idea/artifacts/kotlin_test_js_ir_*
125+
.idea/artifacts/kotlin_stdlib_wasm_*
126+
.idea/artifacts/kotlinx_atomicfu_runtime_*
127+
.idea/jarRepositories.xml
128+
.idea/csv-plugin.xml
129+
.idea/libraries-with-intellij-classes.xml
130+
.idea/misc.xml
131+
node_modules/
132+
.rpt2_cache/
133+
libraries/tools/kotlin-test-js-runner/lib/
134+
local.properties
135+
buildSrcTmp/
136+
distTmp/
137+
outTmp/
138+
/test.output
139+
/kotlin-native/dist
140+
kotlin-ide/

.idea/codeStyles/Project.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Parallel coroutine operations on Kotlin collections
1+
# Kotlin - Parallel Map
22
[![](https://jitpack.io/v/cvb941/kotlin-parallel-collection-operations.svg)](https://jitpack.io/#cvb941/kotlin-parallel-collection-operations)
33
[![](https://jitci.com/gh/cvb941/kotlin-parallel-operations/svg)](https://jitci.com/gh/cvb941/kotlin-parallel-operations)
44

5-
Provides parallelized *map*, *reduce*, etc. operations using coroutines in Kotlin.
5+
Parallel *map*, *reduce*, and various indexed and in-place variations for Kotlin using coroutines.
66

77
The parallel *map* implementation is called *.mapParallel()*. It is implemented like this.
88
```kotlin
@@ -50,7 +50,7 @@ allprojects {
5050
After that, include this line in your module build.gradle.
5151
```gradle
5252
dependencies {
53-
implementation 'com.github.cvb941:kotlin-parallel-operations:1.3'
53+
implementation 'com.github.cvb941:kotlin-parallel-operations:1.4'
5454
}
5555
```
5656

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

transformations/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '1.3.31'
2+
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
3+
id 'maven-publish'
34
}
4-
apply plugin: 'maven'
55

66
group 'com.lukaskusik.library.coroutines.parallel'
77
//version '1.0-SNAPSHOT'
@@ -19,12 +19,12 @@ dependencies {
1919

2020

2121
// Coroutines
22-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1'
22+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0'
2323
}
2424

2525
compileKotlin {
2626
kotlinOptions.jvmTarget = "1.8"
2727
}
2828
compileTestKotlin {
2929
kotlinOptions.jvmTarget = "1.8"
30-
}
30+
}

0 commit comments

Comments
 (0)