Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 624dd15

Browse files
committed
Release version 7.3.1.
1 parent 7315f43 commit 624dd15

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
1212

1313
### Fixed
1414

15+
## [7.3.1] 2021-05-12
16+
17+
### Fixed
18+
19+
- (Android) Pin the firebase-messaging dependency to `21.1.0`.
20+
- (Android) Fix: android missing channelId warning should now show [#1995](https://github.com/zo0r/react-native-push-notification/pull/1995).
21+
1522
## [7.3.0] 2021-05-12
1623

1724
### Features
@@ -388,3 +395,14 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
388395
[unreleased]: https://github.com/zo0r/react-native-push-notification/compare/v3.1.2...HEAD
389396
[3.1.2]: https://github.com/zo0r/react-native-push-notification/compare/v3.1.1...v3.1.2
390397
[3.1.1]: https://github.com/zo0r/react-native-push-notification/compare/...v3.1.1
398+
399+
400+
## Supported React Native Versions
401+
402+
| Component Version | RN Versions | README |
403+
| ----------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
404+
| **1.0.7** | **<= 0.27** | [Open](https://github.com/zo0r/react-native-push-notification/blob/f42723817f1687e0da23e6753eb8a9f0385b6ac5/README.md) |
405+
| **1.0.8** | **0.28** | [Open](https://github.com/zo0r/react-native-push-notification/blob/2eafd1961273ca6a82ad4dd6514fbf1d1a829089/README.md) |
406+
| **2.0.1** | **0.29** | [Open](https://github.com/zo0r/react-native-push-notification/blob/c7ab7cd84ea19e42047379aefaf568bb16a81936/README.md) |
407+
| **2.0.2** | **0.30, 0.31, 0.32** | [Open](https://github.com/zo0r/react-native-push-notification/blob/a0f7d44e904ba0b92933518e5bf6b444f1c90abb/README.md) |
408+
| **>= 2.1.0** | **>= 0.33** | [Open](https://github.com/zo0r/react-native-push-notification/blob/a359e5c00954aa324136eaa9808333d6ca246171/README.md) |

README.md

+2-14
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,7 @@ Check out for changes and migration in the CHANGELOG:
1414

1515
# Supporting the project
1616

17-
Maintaining this project takes time. To help allocate time, you can Buy Me a Coffee :wink:
18-
19-
<a href="https://www.buymeacoffee.com/Dallas62" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-blue.png" alt="Buy Me A Coffee" style="height: 51px !important;width: 217px !important;" ></a>
20-
21-
## Supported React Native Versions
22-
23-
| Component Version | RN Versions | README |
24-
| ----------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
25-
| **1.0.7** | **<= 0.27** | [Open](https://github.com/zo0r/react-native-push-notification/blob/f42723817f1687e0da23e6753eb8a9f0385b6ac5/README.md) |
26-
| **1.0.8** | **0.28** | [Open](https://github.com/zo0r/react-native-push-notification/blob/2eafd1961273ca6a82ad4dd6514fbf1d1a829089/README.md) |
27-
| **2.0.1** | **0.29** | [Open](https://github.com/zo0r/react-native-push-notification/blob/c7ab7cd84ea19e42047379aefaf568bb16a81936/README.md) |
28-
| **2.0.2** | **0.30, 0.31, 0.32** | [Open](https://github.com/zo0r/react-native-push-notification/blob/a0f7d44e904ba0b92933518e5bf6b444f1c90abb/README.md) |
29-
| **>= 2.1.0** | **>= 0.33** | [Open](https://github.com/zo0r/react-native-push-notification/blob/a359e5c00954aa324136eaa9808333d6ca246171/README.md) |
17+
Maintainers are welcome ! Feel free to contact me :wink:
3018

3119
## Changelog
3220

@@ -67,7 +55,7 @@ In your `android/build.gradle`
6755
```gradle
6856
ext {
6957
googlePlayServicesVersion = "<Your play services version>" // default: "+"
70-
firebaseMessagingVersion = "<Your Firebase version>" // default: "+"
58+
firebaseMessagingVersion = "<Your Firebase version>" // default: "21.1.0"
7159
7260
// Other settings
7361
compileSdkVersion = <Your compile SDK version> // default: 23

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ dependencies {
5555
implementation "$appCompatLibName:$supportLibVersion"
5656
implementation 'com.facebook.react:react-native:+'
5757
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
58-
implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '+')}"
58+
implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '21.1.0')}"
5959
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-push-notification",
3-
"version": "7.3.0",
3+
"version": "7.3.1",
44
"description": "React Native Local and Remote Notifications",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)