Skip to content

Commit a7ce334

Browse files
authored
Prepare for 6.3.0 release (#1114)
1 parent 366e27d commit a7ce334

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Change Log
22

3+
## Version 6.3.0 *(2023-07-23)*
4+
This is a new minor release of AppIntro. This library comes with several new features (see below) and bugfixes.
5+
6+
### Summary of Changes
7+
* We deprecated `setScrollDurationFactor` since customizing scroll duration will not be supported anymore in upcoming releases of AppIntro based on ViewPager2
8+
* Target SDK is now 33
9+
10+
### Enhancements 🎁
11+
* [#1030] AppIntro now internally uses Gradle KTS and Version Catalog
12+
* [#1080] Add ability to change done button background color
13+
* [#1049] Handle onBackPressed deprecation
14+
* [#1051] Register callback on onBackPressedDispatcher
15+
16+
### Bugfixes 🐛
17+
* [#1002] Fix RTL bug on wrongly retained currentItem
18+
* [#1108] Fix RTL detection
19+
* [#1109] Fix unexpected crash when using custom layouts with wrong ids with Parallax effect
20+
21+
### Dependency updates 📦
22+
* Kotlin to 1.9.0
23+
* AGP to 8.0.2
24+
* AppCompat to 1.6.1
25+
* ConstraintLayout to 2.1.4
26+
327
## Version 6.2.0 *(2022-01-17)*
428

529
This is a new minor release of AppIntro. This library comes with several new features (see below) and bugfixes.
@@ -341,5 +365,12 @@ Previous release notes can be found here: [releases]
341365
[#960]: https://github.com/AppIntro/AppIntro/pull/960
342366
[#979]: https://github.com/AppIntro/AppIntro/pull/979
343367
[#993]: https://github.com/AppIntro/AppIntro/pull/993
368+
[#1030]: https://github.com/AppIntro/AppIntro/pull/1030
369+
[#1080]: https://github.com/AppIntro/AppIntro/pull/1080
370+
[#1049]: https://github.com/AppIntro/AppIntro/pull/1049
371+
[#1051]: https://github.com/AppIntro/AppIntro/pull/1051
372+
[#1002]: https://github.com/AppIntro/AppIntro/pull/1002
373+
[#1108]: https://github.com/AppIntro/AppIntro/pull/1108
374+
[#1109]: https://github.com/AppIntro/AppIntro/pull/1109
344375
[releases]: https://github.com/AppIntro/AppIntro/releases?after=v5.0.0
345376

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ repositories {
5858
```groovy
5959
dependencies {
6060
// AndroidX Capable version
61-
implementation 'com.github.AppIntro:AppIntro:6.2.0'
61+
implementation 'com.github.AppIntro:AppIntro:6.3.0'
6262
6363
// *** OR ***
6464

appintro/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "com.github.AppIntro"
10-
version = "6.2.0"
10+
version = "6.3.0"
1111

1212
android {
1313
namespace = "com.github.appintro"

0 commit comments

Comments
 (0)