Skip to content

Commit ad52149

Browse files
committed
Bump packages to v0.1.3, update podspecs
Release prep for v0.1.3: update changelogs and bump versions for cnativeapi and nativeapi packages. Update iOS and macOS podspecs to v0.1.3 and remove the duplicate macOS deployment target entry from the macOS podspec. Document example changes: remove CocoaPods from the storage example and switch the Darwin/storage example to Swift Package Manager; update nativeapi's dependency on cnativeapi to ^0.1.3.
1 parent 37b3275 commit ad52149

6 files changed

Lines changed: 16 additions & 7 deletions

File tree

packages/cnativeapi/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.1.3
2+
3+
* Remove duplicate macOS deployment target build setting from the podspec
4+
* Update storage example Darwin integration to use Swift Package Manager
5+
16
## 0.1.2
27

38
* Add LaunchAtLogin C bindings

packages/cnativeapi/ios/cnativeapi.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'cnativeapi'
7-
s.version = '0.0.1'
7+
s.version = '0.1.3'
88
s.summary = 'A new Flutter plugin project.'
99
s.description = <<-DESC
1010
A new Flutter plugin project.

packages/cnativeapi/macos/cnativeapi.podspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'cnativeapi'
7-
s.version = '0.0.1'
7+
s.version = '0.1.3'
88
s.summary = 'A new Flutter plugin project.'
99
s.description = <<-DESC
1010
A new Flutter plugin project.
@@ -35,8 +35,7 @@ A new Flutter plugin project.
3535
'OTHER_CPLUSPLUSFLAGS' => '-std=c++17',
3636
# Enable Objective-C++ compilation for .cpp files
3737
'OTHER_CFLAGS' => '-DOBJC_OLD_DISPATCH_PROTOTYPES=0',
38-
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited)',
39-
'MACOSX_DEPLOYMENT_TARGET' => '10.15'
38+
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited)'
4039
}
4140
s.swift_version = '5.0'
4241

packages/cnativeapi/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: cnativeapi
22
description: "Native API C bindings for Flutter"
3-
version: 0.1.2
3+
version: 0.1.3
44
homepage: https://github.com/libnativeapi/nativeapi-flutter
55
resolution: workspace
66

packages/nativeapi/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.1.3
2+
3+
* Remove CocoaPods integration from the storage example
4+
* Update Darwin example integration to use Swift Package Manager
5+
16
## 0.1.2
27

38
* Add `LaunchAtLogin` API for managing app startup at user login

packages/nativeapi/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: nativeapi
22
description: "Flutter bindings for nativeapi - providing seamless, unified access to native system APIs."
3-
version: 0.1.2
3+
version: 0.1.3
44
homepage: https://github.com/libnativeapi/nativeapi-flutter
55
resolution: workspace
66

@@ -12,7 +12,7 @@ dependencies:
1212
ffi: ">=1.2.1 <3.0.0"
1313
flutter:
1414
sdk: flutter
15-
cnativeapi: ^0.1.2
15+
cnativeapi: ^0.1.3
1616
path: ^1.9.1
1717
meta: ^1.16.0
1818

0 commit comments

Comments
 (0)