Skip to content

Commit 714ed91

Browse files
committed
version: 2.1
1 parent d5e8164 commit 714ed91

3 files changed

Lines changed: 14 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## [Unreleased]
22

3+
## [2.1] (2023-05-06)
4+
35
### Reusable properties
46

57
Reusable 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

210212
Public 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

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ repositories {
3737
}
3838

3939
dependencies {
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+
322325
There is the bug in Kotlin Compiler that affects MapMemory if you create subclasses - [KT-46317](https://youtrack.jetbrains.com/issue/KT-46317).
323326
You can use module `mapmemory-kapt-bug-workaround` as a workaround:
324327

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repositories {
3737

3838
subprojects {
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")

0 commit comments

Comments
 (0)