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

Commit

Permalink
Release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Nov 6, 2019
1 parent 5ca6c83 commit 76d9aa3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Add this to your module's `build.gradle` file:
```gradle
dependencies {
implementation 'com.afollestad:vvalidator:0.5.1'
implementation 'com.afollestad:vvalidator:0.5.2'
}
```

Expand Down
6 changes: 3 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.5.1
0.5.2

* `isNumber()` assertions take a `Long` instead of an `Int`.
* Kotlin 1.3.41.
* Dependency upgrades.
* `Form` constructor is public to make the library more extensible.
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 : '0.5.1',
publishVersionCode : 21,
publishVersion : '0.5.2',
publishVersionCode : 22,

// Plugins
gradlePlugin : '3.5.2',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
*/
package com.afollestad.vvalidator.testutil

import java.lang.reflect.Method
import org.robolectric.RobolectricTestRunner
import org.robolectric.annotation.Config
import java.lang.reflect.Method

@Config(manifest = Config.NONE, sdk = [28], application = TestApp::class)
class NoManifestTestRunner(testClass: Class<*>) : RobolectricTestRunner(testClass) {
Expand Down

0 comments on commit 76d9aa3

Please sign in to comment.