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

Commit

Permalink
2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Mar 19, 2019
1 parent f5b11a7 commit 0518023
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ core and normal-use functionality.
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:core:2.2.1'
implementation 'com.afollestad.material-dialogs:core:2.3.0'
}
```

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

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

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

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

Expand All @@ -101,6 +101,6 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
```gradle
dependencies {
...
implementation 'com.afollestad.material-dialogs:lifecycle:2.2.1'
implementation 'com.afollestad.material-dialogs:lifecycle:2.3.0'
}
```
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 : 28,
buildTools : '28.0.3',
publishVersion : '2.2.1',
publishVersionCode : 235,
publishVersion : '2.3.0',
publishVersionCode : 236,

// Plugins
gradlePlugin : '3.3.2',
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:2.2.1'
implementation 'com.afollestad.material-dialogs:color:2.3.0'
}
```

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

Expand Down
8 changes: 4 additions & 4 deletions 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:2.2.1'
implementation 'com.afollestad.material-dialogs:datetime:2.3.0'
}
```

Expand All @@ -26,7 +26,7 @@ dependencies {
MaterialDialog(this).show {
...
datePicker { dialog, date ->
// Use date
// Use date (Calendar)
}
}
```
Expand All @@ -39,7 +39,7 @@ You can optionally provide `minDate` and `currentDate` parameters as well.
MaterialDialog(this).show {
...
timePicker { dialog, time ->
// Use time
// Use time (Calendar)
}
}
```
Expand All @@ -52,7 +52,7 @@ You can optionally provide `currentTime` and `show24HoursView` parameters as wel
MaterialDialog(this).show {
...
dateTimePicker(requireFutureDateTime = true) { _, dateTime ->
// Use dateTime
// Use dateTime (Calendar)
}
}
```
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:2.2.1'
implementation 'com.afollestad.material-dialogs:files:2.3.0'
}
```

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:2.2.1'
implementation 'com.afollestad.material-dialogs:input:2.3.0'
}
```

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:2.2.1'
implementation 'com.afollestad.material-dialogs:lifecycle:2.3.0'
}
```

Expand Down

0 comments on commit 0518023

Please sign in to comment.