Skip to content

Commit

Permalink
Release 1.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
WorldlineConnect committed Sep 24, 2024
1 parent 6147e02 commit 6ff9408
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
## 1.1.3
## Updated:
- Updated dependencies.


## 1.1.2
### Changed
- Updated dependencies.

### Fixed
- Fixed an issue where a `ValidationErrorMessage` with an `ValidationRule` would miss additional `ValidationRule` properties such as `minLength` and `maxLength` for `ValidationRuleLength`.


## 1.1.1
## Fixed
- Fixed an issue where the collected metadata did not properly identify the Flutter SDK.


## 1.1.0
This SDK is a rebranded and updated version of the SDK that was previously published under the Ingenico name. Next to renaming to Worldline, there were some minor changes. Please have a look at the release notes below to see what has changed. Previous versions and release notes of this SDK can be found [here](https://github.com/Ingenico-ePayments/connect-sdk-client-flutter).

Expand All @@ -21,5 +30,6 @@ Some minor changes were also made in the Flutter SDK:
## Removed:
- `PaymentProductFieldDisplayHints.empty` constructor has been removed.


## 1.0.0
Initial release of the Flutter SDK that can be used to connect to the Worldline Global Collect Client API. The SDK can only be used on the Android and iOS platforms.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ android {
}

dependencies {
implementation 'com.worldline-solutions.connect:connect-sdk-client-android:7.0.1'
implementation 'com.worldline-solutions.connect:connect-sdk-client-android:7.0.2'
implementation 'com.google.code.gson:gson:2.10.1'

testImplementation 'org.jetbrains.kotlin:kotlin-test'
Expand Down
4 changes: 2 additions & 2 deletions ios/connect_sdk_client_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'connect_sdk_client_flutter'
s.version = '1.1.2'
s.version = '1.1.3'
s.summary = 'Connect Flutter SDK iOS Plugin'
s.description = <<-DESC
iOS plugin for the Connect Flutter SDK.
Expand All @@ -15,7 +15,7 @@ iOS plugin for the Connect Flutter SDK.
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.dependency 'WorldlineConnectKit', '~> 6.0'
s.dependency 'WorldlineConnectKit', '~> 6.1'
s.platform = :ios, '12.0'

# Flutter.framework does not contain a i386 slice.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/configuration/connect_sdk_configuration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ConnectSDKConfiguration {

/// This property is used to set the correct SDK identifier when configuring the native SDKs
@JsonKey(includeToJson: true, name: "sdkIdentifier")
final String _sdkIdentifier = "FlutterClientSDK/v1.1.2";
final String _sdkIdentifier = "FlutterClientSDK/v1.1.3";

ConnectSDKConfiguration(this.sessionConfiguration,
{this.enableNetworkLogs = false, this.applicationId, this.ipAddress});
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: connect_sdk_client_flutter
description: A Flutter package to communicate with the Worldline Global Collect platform
version: 1.1.2
version: 1.1.3
homepage: https://docs.connect.worldline-solutions.com/
repository: https://github.com/Worldline-Global-Collect/connect-sdk-client-flutter
issue_tracker: https://github.com/Worldline-Global-Collect/connect-sdk-client-flutter/issues
Expand Down

0 comments on commit 6ff9408

Please sign in to comment.