diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5fb398668b41f8162fe4abeebbf8e798df5f3ae8..b5b361cddc0f7a0bb6528502dc20eb689989f776 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,16 +1,12 @@ -3.2.1 - -* Fixed the module-name given to the Kotlin compiler for each Gradle module, should fix -extension function resolution issues. - ---- - -3.2.0 - -* Dependency upgrades. -* Reduce single/multi choice list dialog margin between text and controls. -* Fix `updateTextColor(Int)` on action buttons not always persisting. See #1783. -* Fix corner radius not working when views have a background. See #1840. -* All dialogs will have a default corner radius of 4dp. See #1909. -* Non-cancelable bottom sheet dialogs cannot be swiped to dismiss. -* Other minor changes. +3.3.0 + +* Added `md_line_spacing_body` global theme attribute, which sets a global default for message line +spacing. See #1903. +* Added some assertions and sanity checks to avoid choice list adapter out of bounds crashes. +See #1906. +* Corner radius should not apply to the bottom of bottom sheet dialogs. See #1941. +* Fix dialog titles being cut off with custom fonts. See #1936. +* If `noVerticalPadding` is set with `customView(...)``, padding is not applied to the bottom of + the content `ScrollView` if `scrollable` is enabled. Resolves #1834. +* Input dialog styling is not enforced by the dialog. The global default for `TextInputLayout` +(`textInputStyle`) is used instead. See #1857. \ No newline at end of file diff --git a/dependencies.gradle b/dependencies.gradle index f08bed9fbd02f802acceaca252e0219e5fdb3447..6478967316ceed8967658a7643958acc198541b1 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -2,8 +2,8 @@ ext.versions = [ min_sdk: 16, compile_sdk: 29, build_tools: "29.0.0", - publish_version: "3.2.1", - publish_version_code: 261 + publish_version: "3.3.0", + publish_version_code: 262 ] ext.deps = [ diff --git a/sample/sample.apk b/sample/sample.apk index daf2578235f45f8baa9201b8e769ec0bd6a1068a..8ad269badcf8bf398602dd8c79241ad090f8c05d 100644 Binary files a/sample/sample.apk and b/sample/sample.apk differ