Skip to content

Commit 52995ba

Browse files
committed
Prepare for release 3.1.1
1 parent 8187528 commit 52995ba

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Change Log
2-
## [3.2.0] - 2019-09-10
3-
- Fix #11: Re-enabling FAB size
2+
## [3.1.1] - 2019-09-10
3+
- Fix #11: Re-enabling FAB size
4+
- Revert `com.google.android.material` to `1.0.0` (version `1.1.0-beta01` can still be used, just specify this version explicitly on your build.gradle file).
45

56
## [3.1.0] - 2019-09-10
67
- fixed #113: Main FAB opened image is not centered when using Theme.MaterialComponents

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The library is available on Jcenter so no additonal repository is required.
2929

3030
Dependencies entry (latest version on Jcenter [![Maven metadata URI](https://img.shields.io/maven-metadata/v/http/jcenter.bintray.com/com/leinardi/android/speed-dial/maven-metadata.xml.svg?style=flat)](https://jcenter.bintray.com/com/leinardi/android/speed-dial/maven-metadata.xml)):
3131
```groovy
32-
implementation "com.leinardi.android:speed-dial:3.1.0"
32+
implementation "com.leinardi.android:speed-dial:3.1.1"
3333
```
3434
#### Snapshots (development branch)
3535
You can use JitPack to test the latest `master` (remember that `master` is the development branch and can be unstable or completely broken).

dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def versions = [:]
2323
versions.android_checkstyle_plugin = "1.1.0"
2424
versions.android_gradle_plugin = "3.5.0"
2525
versions.android_maven_gradle_plugin = "2.1"
26-
versions.android_material = "1.1.0-alpha10"
26+
versions.android_material = "1.0.0"
2727
versions.androidx_appcompat = "1.1.0"
2828
versions.androidx_cardview = "1.0.0"
2929
versions.androidx_constraintlayout = "1.1.3"
@@ -49,7 +49,7 @@ build_versions.min_sdk = 14
4949
build_versions.target_sdk = 29
5050
build_versions.java_version = JavaVersion.VERSION_1_7
5151
build_versions.version_code = commitCount.isNumber() ? commitCount as int : 0
52-
build_versions.version_name = "3.1.0"
52+
build_versions.version_name = "3.1.1"
5353
ext.build_versions = build_versions
5454

5555

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ android {
7171
dependencies {
7272
implementation project(':library')
7373
// implementation "com.leinardi.android:speed-dial:${build_versions.version_name}"
74-
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$versions.kotlin"
74+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$versions.kotlin"
7575
implementation "androidx.appcompat:appcompat:$versions.androidx_appcompat"
7676
implementation "androidx.recyclerview:recyclerview:$versions.androidx_recyclerview"
7777
implementation "androidx.constraintlayout:constraintlayout:$versions.androidx_constraintlayout"
78-
implementation "com.google.android.material:material:$versions.material"
78+
implementation "com.google.android.material:material:1.1.0-beta01"
7979
}

0 commit comments

Comments
 (0)