-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix release build pipeline and release 1.1.1 (#82)
* Fix pod lib lint * Fix lint fail for mac * Fix watchos pod lib lit failure
- Loading branch information
1 parent
71ebc6c
commit 2014e46
Showing
29 changed files
with
2,735 additions
and
2,712 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,25 +7,26 @@ Pod::Spec.new do |s| | |
Wrapper around UITextView to support Rich text editing in SwiftUI. | ||
DESC | ||
|
||
s.homepage = 'https://github.com/canopas/RichEditorSwiftUI' | ||
s.license = { :type => 'MIT', :file => 'LICENSE.md' } | ||
s.author = { 'Jimmy' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/canopas/rich-editor-swiftui.git', :tag => s.version.to_s } | ||
s.social_media_url = 'https://x.com/canopas_eng' | ||
s.homepage = "https://github.com/canopas/RichEditorSwiftUI" | ||
s.license = { :type => "MIT", :file => "LICENSE.md" } | ||
s.author = { "Jimmy" => "[email protected]" } | ||
s.source = { :git => "https://github.com/canopas/rich-editor-swiftui.git", :tag => s.version.to_s } | ||
s.social_media_url = "https://x.com/canopas_eng" | ||
|
||
s.source_files = 'Sources/**/*.swift' | ||
s.source_files = "Sources/**/*.swift" | ||
|
||
s.module_name = 'RichEditorSwiftUI' | ||
s.module_name = "RichEditorSwiftUI" | ||
s.requires_arc = true | ||
|
||
s.swift_version = '5.9' | ||
s.swift_version = "5.9" | ||
|
||
s.ios.deployment_target = '15.0' | ||
s.osx.deployment_target = '12.0' | ||
s.tvos.deployment_target = '17.0' | ||
s.visionos.deployment_target = '1.0' | ||
s.watchos.deployment_target = '8.0' | ||
s.ios.deployment_target = "15.0" | ||
s.osx.deployment_target = "12.0" | ||
s.tvos.deployment_target = "17.0" | ||
s.watchos.deployment_target = "8.0" | ||
Cocoapods pod lib lint fail with vision os as it's throwing error "Could not find a `xros` simulator" | ||
#s.visionos.deployment_target = "1.0" | ||
|
||
s.preserve_paths = 'README.md' | ||
s.preserve_paths = "README.md" | ||
|
||
end |
Oops, something went wrong.