File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11## [ Unreleased]
22
3+ ## [ 2.1] (2023-05-06)
4+
35### Reusable properties
46
57Reusable properties introduced to address the problem described in issue #14
@@ -209,7 +211,8 @@ You should use `mutableMap` and `mutableList` for mutable versions of collection
209211
210212Public release
211213
212- [ unreleased ] : https://github.com/RedMadRobot/mapmemory/compare/v2.0...main
214+ [ unreleased ] : https://github.com/RedMadRobot/mapmemory/compare/v2.1...main
215+ [ 2.1 ] : https://github.com/RedMadRobot/mapmemory/compare/v2.0...v2.1
213216[ 2.0 ] : https://github.com/RedMadRobot/mapmemory/compare/v2.0-rc1..v2.0
214217[ 2.0-rc1 ] : https://github.com/RedMadRobot/mapmemory/compare/v1.1...v2.0-rc1
215218[ 1.1 ] : https://github.com/RedMadRobot/mapmemory/compare/v1.0...v1.1
Original file line number Diff line number Diff line change @@ -37,15 +37,15 @@ repositories {
3737}
3838
3939dependencies {
40- implementation(" com.redmadrobot.mapmemory:mapmemory:2.0 " )
40+ implementation(" com.redmadrobot.mapmemory:mapmemory:2.1 " )
4141
42- // or if you want to work with memory in reactive style, add one of
43- implementation(" com.redmadrobot.mapmemory:mapmemory-coroutines:2.0 " )
44- implementation(" com.redmadrobot.mapmemory:mapmemory-rxjava2:2.0 " )
45- implementation(" com.redmadrobot.mapmemory:mapmemory-rxjava3:2.0 " )
42+ // or if you want to work with MapMemory in reactive style, add one of
43+ implementation(" com.redmadrobot.mapmemory:mapmemory-coroutines:2.1 " )
44+ implementation(" com.redmadrobot.mapmemory:mapmemory-rxjava2:2.1 " )
45+ implementation(" com.redmadrobot.mapmemory:mapmemory-rxjava3:2.1 " )
4646
4747 // if you want to test code that uses MapMemory
48- testImplementation(" com.redmadrobot.mapmemory:mapmemory-test:2.0 " )
48+ testImplementation(" com.redmadrobot.mapmemory:mapmemory-test:2.1 " )
4949}
5050```
5151
@@ -319,6 +319,9 @@ Keep in mind that you should manually clear `SessionMemory` on logout.
319319
320320#### KAPT: 'IllegalStateException: Couldn't find declaration file' on delegate with inline getValue operator
321321
322+ > ** Note**
323+ > This bug was fixed in Kotlin 1.8.20. Consider to update Kotlin.
324+
322325There is the bug in Kotlin Compiler that affects MapMemory if you create subclasses - [ KT-46317] ( https://youtrack.jetbrains.com/issue/KT-46317 ) .
323326You can use module ` mapmemory-kapt-bug-workaround ` as a workaround:
324327
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ repositories {
3737
3838subprojects {
3939 group = " com.redmadrobot.mapmemory"
40- version = " 2.1-SNAPSHOT "
40+ version = " 2.1"
4141
4242 apply (plugin = " maven-publish" )
4343 apply (plugin = " io.gitlab.arturbosch.detekt" )
You can’t perform that action at this time.
0 commit comments