Skip to content

Commit

Permalink
version: 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Feb 25, 2021
1 parent 91b5b68 commit 059a455
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## [Unreleased]

## [1.1] (2021-02-26)

### Added

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

Public release

[Unreleased]: https://github.com/RedMadRobot/mapmemory/compare/v1.0...main
[unreleased]: https://github.com/RedMadRobot/mapmemory/compare/v1.1...main
[1.1]: https://github.com/RedMadRobot/mapmemory/compare/v1.0...v1.1
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MapMemory <GitHub path="RedMadRobot/mapmemory"/>
[![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]
[![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]

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

Expand Down Expand Up @@ -28,10 +28,10 @@ repositories {
}

dependencies {
implementation("com.redmadrobot.mapmemory:mapmemory:1.0")
implementation("com.redmadrobot.mapmemory:mapmemory:1.1")
// or if you want to work with memory in reactive style, add one of
implementation("com.redmadrobot.mapmemory:mapmemory-rxjava2:1.0")
implementation("com.redmadrobot.mapmemory:mapmemory-coroutines:1.0")
implementation("com.redmadrobot.mapmemory:mapmemory-rxjava2:1.1")
implementation("com.redmadrobot.mapmemory:mapmemory-coroutines:1.1")
}
```

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

[MIT][license]

[bintray]: https://bintray.com/redmadrobot-opensource/android/mapmemory
[mavenCentral]: https://search.maven.org/search?q=g:com.redmadrobot.mapmemory
[ci]: https://github.com/RedMadRobot/mapmemory/actions
[qualifiers]: https://dagger.dev/dev-guide/#qualifiers
[license]: LICENSE
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ repositories {

subprojects {
group = "com.redmadrobot.mapmemory"
version = "1.1-SNAPSHOT"
version = "1.1"

apply(plugin = "maven-publish")

Expand Down

0 comments on commit 059a455

Please sign in to comment.