Skip to content

Commit a39784b

Browse files
committed
chore: release version 0.2.2
* Update CHANGELOG.md to reflect the new version and changes. * Bump version to 0.2.2 in pubspec.yaml and podspec. * Raise minimum iOS platform version to 13.0 for compatibility with SPM FlutterFramework.
1 parent c3809a8 commit a39784b

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.2
2+
3+
* fix(ios): raise minimum iOS version to 13.0 for SPM FlutterFramework compatibility.
4+
15
## 0.2.1
26

37
* fix(android): replace removed jcenter() with mavenCentral()

‎ios/flutter_system_proxy.podspec‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'flutter_system_proxy'
7-
s.version = '0.1.5'
7+
s.version = '0.2.2'
88
s.summary = 'A new flutter plugin project.'
99
s.description = <<-DESC
1010
A new flutter plugin project.
@@ -15,7 +15,7 @@ A new flutter plugin project.
1515
s.source = { :path => '.' }
1616
s.source_files = 'flutter_system_proxy/Sources/flutter_system_proxy/**/*.swift'
1717
s.dependency 'Flutter'
18-
s.platform = :ios, '12.0'
18+
s.platform = :ios, '13.0'
1919

2020
# Flutter.framework does not contain a i386 slice.
2121
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

‎ios/flutter_system_proxy/Package.swift‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PackageDescription
33

44
let package = Package(
55
name: "flutter_system_proxy",
6-
platforms: [.iOS("12.0")],
6+
platforms: [.iOS("13.0")],
77
products: [
88
.library(name: "flutter-system-proxy", targets: ["flutter_system_proxy"])
99
],

‎pubspec.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_system_proxy
22
description: A Flutter plugin to detect system proxy settings, helping non-proxy-aware HTTP clients retrieve proxy configurations for successful network requests.
3-
version: 0.2.1
3+
version: 0.2.2
44
homepage: https://github.com/BrowserStackCE/flutter_system_proxy.git
55

66
environment:

0 commit comments

Comments
 (0)