Skip to content

Commit 12f0f7f

Browse files
authored
Merge pull request #118 from adjust/v4351
Version 4.35.1
2 parents 0bfddde + 0033603 commit 12f0f7f

File tree

8 files changed

+19
-8
lines changed

8 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Version 4.35.1 (2nd October 2023)
2+
#### Fixed
3+
- Fixed issue with signing iOS requests post ATT delay timer expiry.
4+
5+
#### Native SDKs
6+
- [[email protected]][ios_sdk_v4.35.1]
7+
- [[email protected]][android_sdk_v4.35.0]
8+
9+
---
10+
111
### Version 4.35.0 (27th September 2023)
212
#### Added
313
- Added support for SigV3 library. Update authorization header building logic to use `adj_signing_id`.
@@ -349,6 +359,7 @@
349359
[ios_sdk_v4.33.4]: https://github.com/adjust/ios_sdk/tree/v4.33.4
350360
[ios_sdk_v4.34.2]: https://github.com/adjust/ios_sdk/tree/v4.34.2
351361
[ios_sdk_v4.35.0]: https://github.com/adjust/ios_sdk/tree/v4.35.0
362+
[ios_sdk_v4.35.1]: https://github.com/adjust/ios_sdk/tree/v4.35.1
352363

353364
[android_sdk_v4.17.0]: https://github.com/adjust/android_sdk/tree/v4.17.0
354365
[android_sdk_v4.18.0]: https://github.com/adjust/android_sdk/tree/v4.18.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ You can add Adjust SDK to your Flutter app by adding following to your `pubspec.
104104

105105
```yaml
106106
dependencies:
107-
adjust_sdk: ^4.35.0
107+
adjust_sdk: ^4.35.1
108108
```
109109
110110
Then navigate to your project in the terminal and run:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.35.0
1+
4.35.1

ios/adjust_sdk.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'adjust_sdk'
3-
s.version = '4.35.0'
3+
s.version = '4.35.1'
44
s.summary = 'Adjust Flutter SDK for iOS platform'
55
s.description = <<-DESC
66
Adjust Flutter SDK for iOS platform.
@@ -14,5 +14,5 @@ Pod::Spec.new do |s|
1414
s.ios.deployment_target = '8.0'
1515

1616
s.dependency 'Flutter'
17-
s.dependency 'Adjust', '4.35.0'
17+
s.dependency 'Adjust', '4.35.1'
1818
end

lib/adjust.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import 'package:flutter/services.dart';
2323
import 'package:meta/meta.dart';
2424

2525
class Adjust {
26-
static const String _sdkPrefix = 'flutter4.35.0';
26+
static const String _sdkPrefix = 'flutter4.35.1';
2727
static const MethodChannel _channel =
2828
const MethodChannel('com.adjust.sdk/api');
2929

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: adjust_sdk
22
description: This is the Flutter SDK of Adjust™. You can read more about Adjust™ at adjust.com.
33
homepage: https://github.com/adjust/flutter_sdk
4-
version: 4.35.0
4+
version: 4.35.1
55

66
environment:
77
sdk: ">=2.12.0 <3.0.0"

test/ios/test_lib.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'test_lib'
3-
s.version = '4.35.0'
3+
s.version = '4.35.1'
44
s.summary = 'Adjust test library for iOS platform'
55
s.description = <<-DESC
66
Adjust test library for iOS platform.

test/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: test_lib
22
description: Flutter plugin for Adjust Testing Library. Intended exclusively for internal use.
3-
version: 4.35.0
3+
version: 4.35.1
44
author: Adjust ([email protected])
55

66
environment:

0 commit comments

Comments
 (0)