Skip to content

Commit

Permalink
Update deps (#1820)
Browse files Browse the repository at this point in the history
  • Loading branch information
samtstern committed Jul 31, 2020
1 parent f3f9740 commit f40b0b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ object Config {
const val legacySupportv4 = "androidx.legacy:legacy-support-v4:1.0.0"
const val multidex = "androidx.multidex:multidex:2.0.1"
const val paging = "androidx.paging:paging-runtime:2.1.0"
const val recyclerView = "androidx.recyclerview:recyclerview:1.0.0"
const val recyclerView = "androidx.recyclerview:recyclerview:1.1.0"

const val design = "com.google.android.material:material:1.1.0"
}

object Firebase {
const val bom = "com.google.firebase:firebase-bom:25.1.0"
const val bom = "com.google.firebase:firebase-bom:25.7.0"
const val auth = "com.google.firebase:firebase-auth"
const val database = "com.google.firebase:firebase-database"
const val firestore = "com.google.firebase:firebase-firestore"
Expand Down
3 changes: 2 additions & 1 deletion docs/internal/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ to create a new `version-x.y.z` branch:
```shell
$ VERSION=1.2.3
$ git checkout version-$VERSION-dev && git pull origin version-$VERSION-dev
$ git checkout -b version-$VERSIOn
$ git checkout -b version-$VERSION
```

Next, make the following changes on the release branch:

* Update `Config.kt` to remove the `SNAPSHOT` from the version name.
* Update `README.md` and `auth/README.md` to point to the latest version of the library
and to have the correct descriptions of transitive dependencies.
* Empty `CHANGELOG.md`

Commit the changes with a generic message:

Expand Down

0 comments on commit f40b0b5

Please sign in to comment.