From d7287aed8e1bba2ae0db929d59fe39c67b9897b4 Mon Sep 17 00:00:00 2001 From: Takeshi Hagikura Date: Fri, 20 Jul 2018 00:01:20 +0900 Subject: [PATCH] Bump versions for the 1.1.0-beta1 release (#447) --- README.md | 6 +++--- flexbox/constants.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f23ede16..569c31fa 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,14 @@ Add the following dependency to your `build.gradle` file: ``` dependencies { - implementation 'com.google.android:flexbox:1.0.0' + implementation 'com.google.android:flexbox:1.1.0-beta1' } ``` # Usage -There are two ways of using Flexbox in your layout. +There are two ways of using Flexbox in your layout. -## FlexboxLayout +## FlexboxLayout The first one is `FlexboxLayout` that extends the `ViewGroup` like `LinearLayout` and `RelativeLayout`. You can specify the attributes from a layout XML like: ```xml diff --git a/flexbox/constants.gradle b/flexbox/constants.gradle index c8168849..d5a7a57c 100644 --- a/flexbox/constants.gradle +++ b/flexbox/constants.gradle @@ -22,7 +22,7 @@ ext { mavenGroup = 'com.google.android' mavenArtifactId = 'flexbox' - mavenVersion = '1.0.0' + mavenVersion = '1.1.0-beta1' bintrayOrg = 'google' }