Skip to content

Commit 2baf1dc

Browse files
authored
Version 1.1.0 release with Gradle build fix (#21)
## Summary - Fix Gradle build error by reordering plugins block before group/version properties - Bump version to 1.1.0 across all platform files (pubspec.yaml, build.gradle, podspec, version.dart) - Add changelog entry documenting recent improvements
1 parent ae3b174 commit 2baf1dc

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.1.0
2+
3+
- Migrate Android Gradle config to plugins { } DSL using Flutter‑recommended approach
4+
- Standardize payload schema
5+
- Add PendingIntents and filter out non-notification intents
6+
17
## 1.0.0
28

39
- Initial stable release of PNTA Flutter plugin.

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
group = "io.pnta.pnta_flutter"
2-
version = "1.0.0"
3-
41
plugins {
52
id "com.android.library"
63
id "org.jetbrains.kotlin.android"
74
}
5+
6+
group = "io.pnta.pnta_flutter"
7+
version = "1.1.0"
88
android {
99

1010
compileSdkVersion 34

ios/pnta_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'pnta_flutter'
7-
s.version = '1.0.0'
7+
s.version = '1.1.0'
88
s.summary = 'Official PNTA Flutter plugin to make push notifications suck less.'
99
s.description = <<-DESC
1010
A Flutter plugin for requesting push notification permissions and identifying devices on iOS and Android. Integrates with PNTA backend for device registration and metadata collection.

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/// PNTA Flutter SDK version
22
/// This should match the version in pubspec.yaml
3-
const String kPntaSdkVersion = '1.0.0';
3+
const String kPntaSdkVersion = '1.1.0';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pnta_flutter
22
description: "Official PNTA Flutter plugin to make push notifications suck less."
3-
version: 1.0.0
3+
version: 1.1.0
44
homepage: https://pnta.io
55
repository: https://github.com/pnta-io/pnta-flutter-plugin
66
documentation: https://docs.pnta.io

0 commit comments

Comments
 (0)