Skip to content

Commit 6ae0eb1

Browse files
authored
Merge pull request #115 from touchlab/gv/version-bump
Version Bump
2 parents 457b645 + effe7c7 commit 6ae0eb1

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,11 @@ jobs:
4545
ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
4646
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
4747

48-
- name: Zip Stately Collections Build Results
49-
if: always()
50-
run: zip stately-connections-bulid.zip deprecated/stately-collections/build/reports/tests/* -r
51-
5248
- name: Upload Stately Collections Build Results
5349
if: always()
5450
uses: actions/upload-artifact@v2
5551
with:
56-
name: stately-connections-bulid
57-
path: stately-connections-bulid.zip
52+
name: deprecated-test-results
53+
path: deprecated/**/build/reports/tests/
5854
env:
5955
GRADLE_OPTS: -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=512m"

deprecated/stately-collections/src/commonTest/kotlin/co/touchlab/stately/collections/SharedLinkedListTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ class LinkedListTest {
443443
*/
444444
@Test
445445
fun testBasicThreads() {
446-
val LOOPS = 2500
446+
val LOOPS = 500
447447
val ops = ThreadOperations { SharedLinkedList<TestData>() }
448448
val ll = SharedLinkedList<TestData>().freeze()
449449

deprecated/stately-isolate/src/commonTest/kotlin/co/touchlab/stately/isolate/IsoStateTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class IsoStateTest {
1717
val ops = ThreadOperations {}
1818

1919
val isoList = IsolateState { mutableListOf<SomeData>() }
20-
repeat(100_000) { rcount ->
20+
repeat(5_000) { rcount ->
2121
ops.exe {
2222
isoList.access { l ->
2323
l.add(SomeData("arst $rcount"))
@@ -31,7 +31,7 @@ class IsoStateTest {
3131
l.size
3232
}
3333

34-
assertEquals(100_000, lsize)
34+
assertEquals(5_000, lsize)
3535
}
3636

3737

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ SONATYPE_HOST=DEFAULT
1919
RELEASE_SIGNING_ENABLED=true
2020

2121
GROUP=co.touchlab
22-
VERSION_NAME=2.0.7
22+
VERSION_NAME=2.1.0
2323

2424
POM_NAME=Stately
2525
POM_DESCRIPTION=Multithreaded Kotlin Multiplatform Utilities

0 commit comments

Comments
 (0)