Skip to content

Commit

Permalink
Fix release build pipeline and release 1.1.1 (#82)
Browse files Browse the repository at this point in the history
* Fix pod lib lint

* Fix lint fail for mac

* Fix watchos pod lib lit failure
  • Loading branch information
cp-divyesh-v authored Jan 3, 2025
1 parent 71ebc6c commit 2014e46
Show file tree
Hide file tree
Showing 29 changed files with 2,735 additions and 2,712 deletions.
29 changes: 15 additions & 14 deletions RichEditorSwiftUI.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading

0 comments on commit 2014e46

Please sign in to comment.