Skip to content

Commit e9d45eb

Browse files
authoredNov 21, 2024··
Merge pull request #124 from xendit/release/4.2.2
Bump version to 4.2.2
2 parents 9837619 + 09e466a commit e9d45eb

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## 4.2.2 (2024-11-21)
4+
- Fixed app crash related to unregistered AuthenticationBroadcastReceiver by implementing proper lifecycle-aware receiver management
5+
36
## 4.2.1 (2024-11-20)
47
- Enhance: Moved finish() call to Handler to ensure proper UI thread execution and prevent memory leaks
58
- Fix: Potential race conditions when closing activities with pending operations

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,24 @@ Maven:
3131
<dependency>
3232
<groupId>com.xendit</groupId>
3333
<artifactId>xendit-android</artifactId>
34-
<version>4.2.1</version>
34+
<version>4.2.2</version>
3535
<type>pom</type>
3636
</dependency>
3737
```
3838

3939
Gradle:
4040
```
41-
compile 'com.xendit:xendit-android:4.2.1'
41+
compile 'com.xendit:xendit-android:4.2.2'
4242
```
4343

4444
Ivy:
4545
```
46-
<dependency org='com.xendit' name='xendit-android' rev='4.2.1'>
46+
<dependency org='com.xendit' name='xendit-android' rev='4.2.2'>
4747
<artifact name='xendit-android' ext='pom' ></artifact>
4848
</dependency>
4949
```
5050

51-
For more information, visit https://central.sonatype.com/artifact/com.xendit/xendit-android/4.2.1/versions
51+
For more information, visit https://central.sonatype.com/artifact/com.xendit/xendit-android/4.2.2/versions
5252

5353
**Note**:
5454

‎xendit-android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ android {
3737
minSdkVersion 21
3838
targetSdkVersion 34
3939
versionCode 1
40-
versionName '4.2.1'
40+
versionName '4.2.2'
4141
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
4242
}
4343
buildTypes {

0 commit comments

Comments
 (0)
Please sign in to comment.