Skip to content

Commit

Permalink
Fix release build pipeline release 1.1.1 (#84)
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

* Remove visonos from pod spec

* Removed unused files
  • Loading branch information
cp-divyesh-v authored Jan 3, 2025
1 parent 71ebc6c commit 892f0ca
Show file tree
Hide file tree
Showing 31 changed files with 2,733 additions and 2,935 deletions.
27 changes: 13 additions & 14 deletions RichEditorSwiftUI.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,24 @@ 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"

s.preserve_paths = 'README.md'
s.preserve_paths = "README.md"

end

This file was deleted.

This file was deleted.

Loading

0 comments on commit 892f0ca

Please sign in to comment.