Skip to content

Commit 315c0fa

Browse files
committed
Release version 1.2.2
1 parent e6ca727 commit 315c0fa

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ChangeLog
22

3-
## Version 1.2.2-dev
3+
## Version 1.2.2 (12.10.2025)
44

55
### iOS
66
- Ignore deprecation warning about using `UNNotificationPresentationOptionAlert`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License" />
88
</a>
99

10-
# Version 1.2.2-dev
10+
# Version 1.2.2
1111

1212
Stable release:
1313
<!--

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-local-notification",
3-
"version": "1.2.2-dev",
3+
"version": "1.2.2",
44
"description": "Schedules and queries for local notifications",
55
"cordova": {
66
"id": "cordova-plugin-local-notification",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2626
xmlns:android="http://schemas.android.com/apk/res/android"
2727
id="cordova-plugin-local-notification"
28-
version="1.2.2-dev">
28+
version="1.2.2">
2929

3030
<name>LocalNotification</name>
3131

src/android/Options.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ public Options(Context context, JSONObject options) {
9696
if (isVersionOlder(metaVersion, "1.1.8")) convertPropertiesForVersion118(options);
9797

9898
// Update meta.version to current plugin version
99-
if (!metaVersion.equals("1.2.2-dev")) {
100-
meta.put("version", "1.2.2-dev");
99+
if (!metaVersion.equals("1.2.2")) {
100+
meta.put("version", "1.2.2");
101101
options.put("meta", meta);
102102
}
103103
} catch (JSONException exception) {

www/local-notification.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ exports._commonOptions = {
4343
trigger: null,
4444
meta: {
4545
plugin: 'cordova-plugin-local-notification',
46-
version: '1.2.2-dev'
46+
version: '1.2.2'
4747
}
4848
}
4949

0 commit comments

Comments
 (0)