Skip to content

Commit f10b0be

Browse files
authored
feat/Version 2.6.1
1 parent e1e5c26 commit f10b0be

7 files changed

Lines changed: 13 additions & 8 deletions

File tree

Documentation/release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ content:
1414
> Refer to the [Flutter SDK version update guide](https://documentation.bloomreach.com/engagement/docs/flutter-sdk-version-update) for details on updating from version 0.x.x to 1.x.x.
1515
1616
## Release Notes
17+
## Release Notes for 2.6.1
18+
#### May 11, 2026
19+
* Fixed:
20+
* Fixes published package size by excluding residual build artifacts.
21+
1722
## Release Notes for 2.6.0
1823
#### May 11, 2026
1924
* Added:

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.exponea'
2-
version '2.6.0-SNAPSHOT'
2+
version '2.6.1-SNAPSHOT'
33

44
buildscript {
55
ext {

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<application>
66
<meta-data android:name="ExponeaFlutterSDK" android:value="true" />
7-
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="2.6.0" />
7+
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="2.6.1" />
88
<receiver
99
android:name=".ExponeaPushReceiver"
1010
android:enabled="true"

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@
804804
"$(inherited)",
805805
"@executable_path/Frameworks",
806806
);
807-
MARKETING_VERSION = 2.6.0;
807+
MARKETING_VERSION = 2.6.1;
808808
PRODUCT_BUNDLE_IDENTIFIER = com.exponea.sdk.example;
809809
PRODUCT_NAME = "$(TARGET_NAME)";
810810
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Exponea SDK Example App";
@@ -1226,7 +1226,7 @@
12261226
"$(inherited)",
12271227
"@executable_path/Frameworks",
12281228
);
1229-
MARKETING_VERSION = 2.6.0;
1229+
MARKETING_VERSION = 2.6.1;
12301230
PRODUCT_BUNDLE_IDENTIFIER = com.exponea.sdk.example;
12311231
PRODUCT_NAME = "$(TARGET_NAME)";
12321232
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Exponea SDK Example App";
@@ -1260,7 +1260,7 @@
12601260
"$(inherited)",
12611261
"@executable_path/Frameworks",
12621262
);
1263-
MARKETING_VERSION = 2.6.0;
1263+
MARKETING_VERSION = 2.6.1;
12641264
PRODUCT_BUNDLE_IDENTIFIER = com.exponea.sdk.example;
12651265
PRODUCT_NAME = "$(TARGET_NAME)";
12661266
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Exponea SDK Example App";

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: exponea_example
22
description: Demonstrates how to use the exponea plugin.
3-
version: 2.6.0+1
3+
version: 2.6.1+1
44
publish_to: 'none'
55

66
environment:

ios/Classes/SwiftExponeaPlugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protocol IsExponeaFlutterSDK {
8787
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
8888
required public override init() { }
8989
public func getVersion() -> String {
90-
"2.6.0"
90+
"2.6.1"
9191
}
9292
}
9393

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: exponea
22
description: >-
33
A full featured wrapper for Exponea SDK that supports Android and iOS.
4-
version: 2.6.0
4+
version: 2.6.1
55
homepage: https://exponea.com
66
repository: https://github.com/exponea/exponea-flutter-sdk
77

0 commit comments

Comments
 (0)