Skip to content
This repository has been archived by the owner on Sep 3, 2023. It is now read-only.

Commit

Permalink
Release 3.0.0-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Jun 8, 2019
1 parent ae8bd19 commit bf2c017
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 19 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ core and normal-use functionality.
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:core:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:core:3.0.0-rc3'
}
```

Expand All @@ -46,7 +46,7 @@ The `input` module contains extensions to the core module, such as a text input
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:input:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:input:3.0.0-rc3'
}
```

Expand All @@ -63,7 +63,7 @@ The `files` module contains extensions to the core module, such as a file and fo
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:files:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:files:3.0.0-rc3'
}
```

Expand All @@ -80,7 +80,7 @@ The `color` module contains extensions to the core module, such as a color choos
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:color:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:color:3.0.0-rc3'
}
```

Expand All @@ -97,7 +97,7 @@ The `datetime` module contains extensions to make date, time, and date-time pick
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:datetime:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:datetime:3.0.0-rc3'
}
```

Expand All @@ -116,7 +116,7 @@ too!
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-rc3'
}
```

Expand All @@ -131,6 +131,6 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-rc3'
}
```
5 changes: 2 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
3.0.0-rc2
3.0.0-rc3

* compileSdk 29!
* 3.0.0 will become stable soon if no major issues are found.
* Fixed the reusability of bottom sheet dialogs. You can call `show()` on a dialog that has been hidden and it will animate in as intended.
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ ext.versions = [
minSdk : 16,
compileSdk : 29,
buildTools : '29.0.0',
publishVersion : '3.0.0-rc2',
publishVersionCode : 251,
publishVersion : '3.0.0-rc3',
publishVersionCode : 252,

// Plugins
gradlePlugin : '3.4.1',
Expand Down
2 changes: 1 addition & 1 deletion documentation/BOTTOMSHEETS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ other functionality like showing a grid of items.
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:bottomsheets:3.0.0-rc3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/COLOR.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The `color` module contains extensions to the core module, such as a color choos
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:color:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:color:3.0.0-rc3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/CORE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ core and normal-use functionality.
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:core:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:core:3.0.0-rc3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/DATETIME.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The `datetime` module contains extensions to make date, time, and date-time pick
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:datetime:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:datetime:3.0.0-rc3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/FILES.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The `files` module contains extensions to the core module, such as a file and fo
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:files:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:files:3.0.0-rc3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/INPUT.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The `input` module contains extensions to the core module, such as a text input
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:input:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:input:3.0.0-rc3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/LIFECYCLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-rc2'
implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-rc3'
}
```

Expand Down

0 comments on commit bf2c017

Please sign in to comment.