Skip to content

Commit cb22f95

Browse files
chore: Prepare release 5.1.0 (#241)
1 parent 180e3d8 commit cb22f95

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
## Changelog
22

3+
### 5.1.0
4+
5+
- fix: Update minSDKVersion for both provider and app from 21 to 23 due to dependency requirements (2026-01-04)
6+
- fix: Update compileSDK from 35 to 36 due to dependency requirements (2026-01-04)
7+
- chore(deps): bump AGP from 8.13.1 to 8.13.2 (2026-01-04)
8+
- chore(deps): bump androidx.test.ext:junit from 1.2.1 to 1.3.0 (#237) (2026-01-04)
9+
- chore(deps): bump com.diffplug.spotless from 8.0.0 to 8.1.0 (#238) (2026-01-04)
10+
- chore(deps): bump androidx.activity:activity from 1.10.1 to 1.12.2 (2026-01-04)
11+
- chore(deps): bump androidx.work:work-runtime from 2.10.3 to 2.11.0 (2026-01-04)
12+
- chore(deps): bump androidx.core:core from 1.16.0 to 1.17.0 (2026-01-04)
13+
314
### 5.0.1
415

516
- fix: RaygunMessage property names (#230) (2025-11-10)

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
The world's best Android Crash Reporting and Real User Monitoring solution
44

5-
Supports Android 5+ (API 21+).
5+
Supports Android 6+ (API 23+).
66

7-
If you need to support Android 4.1+, please use Raygun4Android 4.0.1.
7+
- If you need to support Android 4.1+, please use Raygun4Android 4.0.1.
8+
- If you need to support Android 5+, please use Raygun4Android 5.0.1.
89

910
## Library structure
1011

@@ -15,7 +16,7 @@ This means that the library is now fully compatible with Kotlin Coroutines and p
1516
We recommend using those if you are using Kotlin in your project.
1617
As well, the library is still compatible with pure Java Android applications.
1718

18-
Raygun4Android 5.0.0 is currently considered to be the stable release of the provider and is tagged in the repository and supports Android 5+.
19+
Raygun4Android 5.1.0 is currently considered to be the stable release of the provider and is tagged in the repository and supports Android 5+.
1920

2021
Raygun4Android 4.1.1 is functionally equal to 4.1.0, which was unfortunately deployed to Maven Central in an incomplete state. Please use 4.1.1 instead.
2122

@@ -27,8 +28,8 @@ If you want the *very old* stable version 3.0.6 please check out the change set
2728

2829
### Requirements
2930

30-
- minSdkVersion 21+
31-
- compileSdkVersion 34
31+
- minSdkVersion 23+
32+
- compileSdkVersion 36
3233

3334
### Internal dependencies
3435

@@ -56,7 +57,7 @@ Then add the following to your **module's** build.gradle:
5657
```gradle
5758
dependencies {
5859
...
59-
implementation 'com.raygun:raygun4android:4.0.1'
60+
implementation 'com.raygun:raygun4android:5.1.0'
6061
}
6162
```
6263

gradle.properties

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ org.gradle.jvmargs=-Xmx1536m
2323
# 5.3.3-beta2-SNAPSHOT
2424
#
2525
# Adding -SNAPSHOT to VERSION_NAME triggers publishing to a snapshot server at Maven Central.
26-
VERSION_NAME=5.0.1
26+
VERSION_NAME=5.1.0
2727

2828
# Use a numeric value for VERSION_CODE
2929
#
@@ -42,7 +42,7 @@ VERSION_NAME=5.0.1
4242
# 4.1.0-alpha2 -> 40100032
4343
# 5.2.3 -> 50203000
4444
# 5.3.3-beta2 -> 50303072
45-
VERSION_CODE=50001099
45+
VERSION_CODE=50100099
4646

4747
GROUP=com.raygun
4848

@@ -56,10 +56,8 @@ POM_LICENCE_URL=https://opensource.org/licenses/MIT
5656
POM_LICENCE_DIST=repo
5757
POM_DEVELOPER_1_ID=TheRealAgentK
5858
POM_DEVELOPER_1_NAME=Kai Koenig
59-
POM_DEVELOPER_2_ID=mduncan26
60-
POM_DEVELOPER_2_NAME=Mitchell Duncan
61-
POM_DEVELOPER_3_ID=miquelbeltran
62-
POM_DEVELOPER_3_NAME=Miguel Beltran
59+
POM_DEVELOPER_2_ID=miquelbeltran
60+
POM_DEVELOPER_2_NAME=Miguel Beltran
6361

6462
android.useAndroidX=true
6563
android.defaults.buildfeatures.buildconfig=true

provider/maven-central-publish.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ afterEvaluate { project ->
3434
id = POM_DEVELOPER_2_ID
3535
name = POM_DEVELOPER_2_NAME
3636
}
37-
developer {
38-
id = POM_DEVELOPER_3_ID
39-
name = POM_DEVELOPER_3_NAME
40-
}
4137
}
4238
}
4339

0 commit comments

Comments
 (0)