Skip to content

Commit 6fb8569

Browse files
committed
all: bump version to 2.1.0
1 parent 843f62d commit 6fb8569

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## UPCOMING
1+
## 2.1.0
22

33
**Plugin**
44
* Updated Batch to 2.1

android/src/main/java/com/batch/batch_flutter/BatchFlutterPlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class BatchFlutterPlugin implements FlutterPlugin, MethodCallHandler, Act
3737

3838
private static final String PLUGIN_VERSION_SYSTEM_PROPERTY = "batch.plugin.version";
3939

40-
private static final String PLUGIN_VERSION = "Flutter/2.0.0";
40+
private static final String PLUGIN_VERSION = "Flutter/2.1.0";
4141

4242
private final static BatchPluginConfiguration configuration = new BatchPluginConfiguration();
4343

android/src/main/java/com/batch/batch_flutter/interop/BatchBridge.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
public class BatchBridge {
4444
private static final String BRIDGE_VERSION_ENVIRONEMENT_VAR = "batch.bridge.version";
4545

46-
private static final String BRIDGE_VERSION = "Bridge/2.0";
46+
private static final String BRIDGE_VERSION = "Bridge/1.0";
4747

4848
private static final InboxBridge inboxBridge = new InboxBridge();
4949

example/ios/Podfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
22
- Batch (2.1.0)
3-
- batch_flutter (2.0.0):
3+
- batch_flutter (2.1.0):
44
- Batch (~> 2.1.0)
55
- Flutter
6-
- batch_flutter/Tests (2.0.0):
6+
- batch_flutter/Tests (2.1.0):
77
- Batch (~> 2.1.0)
88
- Flutter
99
- BatchExtension (4.0.0)
@@ -34,7 +34,7 @@ EXTERNAL SOURCES:
3434

3535
SPEC CHECKSUMS:
3636
Batch: 357ef0dd8bcd83739b8ac44968aec5731bc273e1
37-
batch_flutter: 030615d810d92a08e7c1cc50021c291d88d8edff
37+
batch_flutter: d0577cd7c4b2332d217e440da0e14d05eecf2eef
3838
BatchExtension: ee10c31cc737d66a9c339a1e70e7c787b5988676
3939
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
4040
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78

ios/batch_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'batch_flutter'
7-
s.version = '2.0.0'
7+
s.version = '2.1.0'
88
s.summary = 'Batch.com Flutter Plugin'
99
s.homepage = 'https://batch.com'
1010
s.license = { :type => 'MIT', :file => '../LICENSE' }

ios/batch_flutter/Sources/batch_flutter/BatchFlutterPlugin.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import Batch
44

55
fileprivate struct Consts {
66
static let BridgeVersionEnvironmentVar = "BATCH_BRIDGE_VERSION"
7-
static let BridgeVersion = "Bridge/2.0"
7+
static let BridgeVersion = "Bridge/2.1"
88

99
static let PluginVersionEnvironmentVar = "BATCH_PLUGIN_VERSION"
10-
static let PluginVersion = "Flutter/2.0.0"
10+
static let PluginVersion = "Flutter/2.1.0"
1111
}
1212

1313
/// Batch's Flutter Plugin main class.

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: batch_flutter
22
description: Batch SDK Flutter Plugin allows you to build meaningful communication experiences in your app through highly personalized push notifications and In-App messages.
3-
version: 2.0.0
3+
version: 2.1.0
44
homepage: https://batch.com
55

66
environment:

0 commit comments

Comments
 (0)