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

Commit 8e368f3

Browse files
committed
Release 0.3.2
1 parent 029122d commit 8e368f3

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ constructor parameters, they are filled for you by generated code.
5858

5959
```gradle
6060
dependencies {
61-
implementation "com.afollestad:ulfberht:0.3.1"
62-
kapt "com.afollestad:ulfbert-processor:0.3.1"
61+
implementation "com.afollestad:ulfberht:0.3.2"
62+
kapt "com.afollestad:ulfbert-processor:0.3.2"
6363
}
6464
```
6565

RELEASE_NOTES.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
0.3.1
1+
0.3.2
22

3-
* Important generics support bug fixes.
3+
* More generics support bug fixes.
4+
* Improved circular dependency detection a bit.

dependencies.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ ext.versions = [
22
minSdk : 19,
33
compileSdk : 29,
44
buildTools : '29.0.0',
5-
publishVersion : '0.3.1',
6-
publishVersionCode: 8,
5+
publishVersion : '0.3.2',
6+
publishVersionCode: 9,
77

88
gradlePlugin : '3.4.2',
99
spotlessPlugin : '3.24.0',

sample/src/main/kotlin/com/afollestad/ulfberhtsample/Main.kt

+1-4
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,7 @@ interface One {
5252
fun doSomething()
5353
}
5454

55-
class OneImpl(
56-
private val two: Two,
57-
private val idk: SomeClass<String, Boolean>
58-
) : One {
55+
class OneImpl(private val two: Two) : One {
5956
override fun doSomething() = two.doSomething()
6057
}
6158

0 commit comments

Comments
 (0)