Skip to content

Commit b38061c

Browse files
committed
Increase version number to v4.2.0
1 parent ffce8e1 commit b38061c

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Date Picker | Time Picker
4242
The easiest way to add the Material DateTime Picker library to your project is by adding it as a dependency to your `build.gradle`
4343
```groovy
4444
dependencies {
45-
implementation 'com.wdullaer:materialdatetimepicker:4.1.2'
45+
implementation 'com.wdullaer:materialdatetimepicker:4.2.0'
4646
}
4747
```
4848

@@ -243,15 +243,16 @@ This library depends on some androidx support libraries. Because the jvm allows
243243
Using the following snippet in your apps `build.gradle` file you can exclude this library's transitive appcompat library dependency from being installed.
244244

245245
```groovy
246-
implementation ('com.wdullaer:materialdatetimepicker:4.1.2') {
246+
implementation ('com.wdullaer:materialdatetimepicker:4.2.0') {
247247
exclude group: 'androidx.appcompat'
248+
exclude group: 'androidx.recyclerview'
248249
}
249250
```
250251

251252
MaterialDateTimepicker uses the following androidx libraries:
252253

253254
```groovy
254-
implementation 'androidx.appcompat:appcompat:1.0.0'
255+
implementation 'androidx.appcompat:appcompat:1.0.2'
255256
implementation 'androidx.recyclerview:recyclerview:1.0.0'
256257
```
257258

README_ES.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Selector de fecha | Selector de tiempo
4242
La forma más fácil de agregar a la Biblioteca la _Material DateTime Picker_ a su proyecto es agregarla como una dependencia `build.gradle`
4343
```groovy
4444
a sus dependencias{
45-
implementation 'com.wdullaer:materialdatetimepicker:4.1.2'
45+
implementation 'com.wdullaer:materialdatetimepicker:4.2.0'
4646
}
4747
```
4848
@@ -244,15 +244,16 @@ puede desactivar la carga de la biblioteca de soporte para MaterialDateTimePicke
244244
Usando el siguiente fragmento en el archivo `build.gradle` de su aplicación, puede excluir la posibilidad de que se instale la biblioteca de soporte transitivo de esta biblioteca.
245245

246246
```groovy
247-
implementation ('com.wdullaer:materialdatetimepicker:4.1.2') {
248-
exclude group: 'com.android.support'
247+
implementation ('com.wdullaer:materialdatetimepicker:4.2.0') {
248+
exclude group: 'androidx.appcompat'
249+
exclude group: 'androidx.recyclerview'
249250
}
250251
```
251252

252253
Su aplicación deberá depender al menos de las siguientes piezas de la biblioteca de soporte
253254

254255
```groovy
255-
implementation 'androidx.appcompat:appcompat:1.0.0'
256+
implementation 'androidx.appcompat:appcompat:1.0.2'
256257
implementation 'androidx.recyclerview:recyclerview:1.0.0'
257258
```
258259

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ org.gradle.jvmargs=-Xmx1536m
1616
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1717
# org.gradle.parallel=true
1818

19-
VERSION_NAME=4.1.2
20-
VERSION_CODE=50
19+
VERSION_NAME=4.2.0
20+
VERSION_CODE=51
2121
GROUP=com.wdullaer
2222

2323
ANDROID_BUILD_MIN_SDK_VERSION=16

0 commit comments

Comments
 (0)