Skip to content

Commit 097ff36

Browse files
authored
Bump firestore version for release (#530)
Additionally fix pom filter to exclude multidex from deps.
1 parent c1f7644 commit 097ff36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

buildSrc/src/main/groovy/com/google/firebase/gradle/plugins/publish/Publisher.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class Publisher {
7474
pom.dependencies.dependency.each {
7575
// remove multidex as it is supposed to be added by final applications and is needed for
7676
// some libraries only for instrumentation tests to build.
77-
if (it.groupId.text() in ['com.android.support', 'androidx'] && it.artifactId.text() == 'multidex') {
77+
if (it.groupId.text() in ['com.android.support', 'androidx.multidex'] && it.artifactId.text() == 'multidex') {
7878
it.parent().remove(it)
7979
}
8080
it.appendNode('type', [:], deps["${it.groupId.text()}:${it.artifactId.text()}"])

firebase-firestore/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=20.0.1
1+
version=20.1.0
22
latestReleasedVersion=20.0.0

0 commit comments

Comments
 (0)