From 833501f52312cf328a68cf9093c2e2a66325ac4d Mon Sep 17 00:00:00 2001 From: onebone Date: Thu, 14 Jul 2022 00:30:19 +0900 Subject: [PATCH] bump version to 2.3.4 --- README.md | 4 ++-- build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5b71bc1..2f04089 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,11 @@ A simple implementation of [CollapsingToolbarLayout](https://developer.android.c You should add `mavenCentral()` repository before installation. Then add the following line to the `dependencies` block in your app level build.gradle: ```gradle -implementation "me.onebone:toolbar-compose:2.3.3" +implementation "me.onebone:toolbar-compose:2.3.4" ``` or build.gradle.kts: ```kotlin -implementation("me.onebone:toolbar-compose:2.3.3") +implementation("me.onebone:toolbar-compose:2.3.4") ``` ## Example diff --git a/build.gradle b/build.gradle index bb069ab..14a958d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { - library_version = '2.3.3' + library_version = '2.3.4' kotlin_version = '1.7.0' compose_version = '1.1.1'