From 452df23eb4b6611eadf6792dc2991150f93f1ce9 Mon Sep 17 00:00:00 2001 From: Artur Artikov Date: Fri, 13 May 2022 12:45:59 +0300 Subject: [PATCH] Up version --- README.md | 12 ++++++------ publish.gradle | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1ad9e7eb..e0c23826 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ ## Gradle Setup ```gradle dependencies { - implementation 'com.github.aartikov:replica-core:1.0.0-alpha3' - implementation 'com.github.aartikov:replica-algebra:1.0.0-alpha3' - implementation 'com.github.aartikov:replica-android-network:1.0.0-alpha3' - implementation 'com.github.aartikov:replica-decompose:1.0.0-alpha3' - debugImplementation 'com.github.aartikov:replica-devtools:1.0.0-alpha3' - releaseImplementation 'com.github.aartikov:replica-devtools-noop:1.0.0-alpha3' + implementation 'com.github.aartikov:replica-core:1.0.0-alpha4' + implementation 'com.github.aartikov:replica-algebra:1.0.0-alpha4' + implementation 'com.github.aartikov:replica-android-network:1.0.0-alpha4' + implementation 'com.github.aartikov:replica-decompose:1.0.0-alpha4' + debugImplementation 'com.github.aartikov:replica-devtools:1.0.0-alpha4' + releaseImplementation 'com.github.aartikov:replica-devtools-noop:1.0.0-alpha4' } ``` diff --git a/publish.gradle b/publish.gradle index 2fc1470c..8ea566b8 100644 --- a/publish.gradle +++ b/publish.gradle @@ -10,7 +10,7 @@ apply plugin: 'org.jetbrains.dokka' ext { PUBLISH_GROUP_ID = 'com.github.aartikov' - PUBLISH_VERSION = '1.0.0-alpha3' + PUBLISH_VERSION = '1.0.0-alpha4' DESCRIPTION = 'Android libary for fetching, caching and updating asynchronous data' GITHUB_USER = 'aartikov'