Skip to content

Commit 1362aee

Browse files
authored
Merge pull request #24 from cmargonis/release/3.0.0
Release 3.0.0
2 parents ff826c8 + 7a15a96 commit 1362aee

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,24 @@ The title and section headers can be styled by providing custom text appearances
8888
}
8989
```
9090

91+
## Breaking changes of version `3.0.0`
92+
93+
1. Certain APIs have become `internal`.
94+
2. In version `3.0.0` the library uses Java 17. You'll have to add the following to your build file:
95+
96+
```kotlin
97+
android {
98+
compileOptions {
99+
sourceCompatibility = JavaVersion.VERSION_17
100+
targetCompatibility = JavaVersion.VERSION_17
101+
}
102+
103+
kotlinOptions {
104+
jvmTarget = "17"
105+
}
106+
}
107+
```
108+
91109
## Breaking changes of version `2.0.0`
92110
In version `2.0.0` we migrated to [Emoji2](https://developer.android.com/jetpack/androidx/releases/emoji2).
93111
This results in the removal of:

app/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ android {
1818
targetCompatibility = JavaVersion.VERSION_17
1919
}
2020

21+
kotlinOptions {
22+
jvmTarget = "17"
23+
}
24+
2125
buildTypes {
2226
getByName("release") {
2327
isMinifyEnabled = false

emojiBottomSheetDialog/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ android {
1717
targetCompatibility = JavaVersion.VERSION_17
1818
}
1919

20+
kotlinOptions {
21+
jvmTarget = "17"
22+
}
23+
2024
buildTypes {
2125
getByName("release") {
2226
isMinifyEnabled = false

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ kotlin.code.style=official
2323
# Used by https://github.com/vanniktech/gradle-maven-publish-plugin
2424
GROUP=com.withplum
2525
POM_ARTIFACT_ID=emojiBottomSheetDialog
26-
VERSION_NAME=2.0.0
26+
VERSION_NAME=3.0.0
2727
POM_NAME=Emoji Bottom Sheet Dialog
2828
POM_DESCRIPTION=A nice Android bottom sheet dialog populated with AndroidX EmojiCompat supported emojis.
2929
POM_INCEPTION_YEAR=2021

0 commit comments

Comments
 (0)