Skip to content

Commit 059a455

Browse files
committed
version: 1.1
1 parent 91b5b68 commit 059a455

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

CHANGELOG.md

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

3+
## [1.1] (2021-02-26)
4+
35
### Added
46

57
- Method `ReactiveMap.getValue` (#2)
@@ -19,4 +21,5 @@
1921

2022
Public release
2123

22-
[Unreleased]: https://github.com/RedMadRobot/mapmemory/compare/v1.0...main
24+
[unreleased]: https://github.com/RedMadRobot/mapmemory/compare/v1.1...main
25+
[1.1]: https://github.com/RedMadRobot/mapmemory/compare/v1.0...v1.1

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MapMemory <GitHub path="RedMadRobot/mapmemory"/>
2-
[![Version](https://img.shields.io/bintray/v/redmadrobot-opensource/android/mapmemory?style=flat-square)][bintray] [![Build Status](https://img.shields.io/github/workflow/status/RedMadRobot/mapmemory/CI/main?style=flat-square)][ci] [![License](https://img.shields.io/github/license/RedMadRobot/mapmemory?style=flat-square)][license]
2+
[![Version](https://img.shields.io/maven-central/v/com.redmadrobot.mapmemory/mapmemory?style=flat-square)][mavenCentral] [![Build Status](https://img.shields.io/github/workflow/status/RedMadRobot/mapmemory/CI/main?style=flat-square)][ci] [![License](https://img.shields.io/github/license/RedMadRobot/mapmemory?style=flat-square)][license]
33

44
Simple in-memory cache conception built on `Map`.
55

@@ -28,10 +28,10 @@ repositories {
2828
}
2929

3030
dependencies {
31-
implementation("com.redmadrobot.mapmemory:mapmemory:1.0")
31+
implementation("com.redmadrobot.mapmemory:mapmemory:1.1")
3232
// or if you want to work with memory in reactive style, add one of
33-
implementation("com.redmadrobot.mapmemory:mapmemory-rxjava2:1.0")
34-
implementation("com.redmadrobot.mapmemory:mapmemory-coroutines:1.0")
33+
implementation("com.redmadrobot.mapmemory:mapmemory-rxjava2:1.1")
34+
implementation("com.redmadrobot.mapmemory:mapmemory-coroutines:1.1")
3535
}
3636
```
3737

@@ -227,7 +227,7 @@ For major changes, please open an issue first to discuss what you would like to
227227

228228
[MIT][license]
229229

230-
[bintray]: https://bintray.com/redmadrobot-opensource/android/mapmemory
230+
[mavenCentral]: https://search.maven.org/search?q=g:com.redmadrobot.mapmemory
231231
[ci]: https://github.com/RedMadRobot/mapmemory/actions
232232
[qualifiers]: https://dagger.dev/dev-guide/#qualifiers
233233
[license]: LICENSE

build.gradle.kts

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

3333
subprojects {
3434
group = "com.redmadrobot.mapmemory"
35-
version = "1.1-SNAPSHOT"
35+
version = "1.1"
3636

3737
apply(plugin = "maven-publish")
3838

0 commit comments

Comments
 (0)