From cf2594446f5ed9bbc7f7d8357529334ad91327fb Mon Sep 17 00:00:00 2001 From: KAWASHIMA Yoshiyuki Date: Thu, 20 Oct 2022 15:24:46 +0900 Subject: [PATCH 1/2] add: description and usage --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 903d870..1737f10 100644 --- a/README.md +++ b/README.md @@ -1 +1,16 @@ -# Macaron \ No newline at end of file +# Macaron + +Macaron is Kotlin Multiplatform MVI Framework. + +## Usage + +``` +def macaron_version = '0.0.1-beta05' + +dependencies { + implementation "tech.fika.macaron:macaron-core:$macaron_version" + implementation "tech.fika.macaron:macaron-statemachine:$macaron_version" + implementation "tech.fika.macaron:macaron-logging:$macaron_version" + implementation "tech.fika.macaron:macaron-messaging:$macaron_version" +} +``` From b74e0a4b97f71a88ce76f3c8e09bb18319da4efc Mon Sep 17 00:00:00 2001 From: KAWASHIMA Yoshiyuki Date: Sat, 24 Dec 2022 10:36:09 +0900 Subject: [PATCH 2/2] Bump version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1737f10..9cd6456 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Macaron is Kotlin Multiplatform MVI Framework. ## Usage ``` -def macaron_version = '0.0.1-beta05' +def macaron_version = '0.0.2' dependencies { implementation "tech.fika.macaron:macaron-core:$macaron_version"