Skip to content

Commit

Permalink
Prepare for release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
leinardi committed Oct 7, 2019
1 parent 8187528 commit 52995ba
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change Log
## [3.2.0] - 2019-09-10
- Fix #11: Re-enabling FAB size
## [3.1.1] - 2019-09-10
- Fix #11: Re-enabling FAB size
- 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).

## [3.1.0] - 2019-09-10
- fixed #113: Main FAB opened image is not centered when using Theme.MaterialComponents
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The library is available on Jcenter so no additonal repository is required.

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)):
```groovy
implementation "com.leinardi.android:speed-dial:3.1.0"
implementation "com.leinardi.android:speed-dial:3.1.1"
```
#### Snapshots (development branch)
You can use JitPack to test the latest `master` (remember that `master` is the development branch and can be unstable or completely broken).
Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def versions = [:]
versions.android_checkstyle_plugin = "1.1.0"
versions.android_gradle_plugin = "3.5.0"
versions.android_maven_gradle_plugin = "2.1"
versions.android_material = "1.1.0-alpha10"
versions.android_material = "1.0.0"
versions.androidx_appcompat = "1.1.0"
versions.androidx_cardview = "1.0.0"
versions.androidx_constraintlayout = "1.1.3"
Expand All @@ -49,7 +49,7 @@ build_versions.min_sdk = 14
build_versions.target_sdk = 29
build_versions.java_version = JavaVersion.VERSION_1_7
build_versions.version_code = commitCount.isNumber() ? commitCount as int : 0
build_versions.version_name = "3.1.0"
build_versions.version_name = "3.1.1"
ext.build_versions = build_versions


Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ android {
dependencies {
implementation project(':library')
// implementation "com.leinardi.android:speed-dial:${build_versions.version_name}"
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$versions.kotlin"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$versions.kotlin"
implementation "androidx.appcompat:appcompat:$versions.androidx_appcompat"
implementation "androidx.recyclerview:recyclerview:$versions.androidx_recyclerview"
implementation "androidx.constraintlayout:constraintlayout:$versions.androidx_constraintlayout"
implementation "com.google.android.material:material:$versions.material"
implementation "com.google.android.material:material:1.1.0-beta01"
}

0 comments on commit 52995ba

Please sign in to comment.