Skip to content

Commit

Permalink
Update Podspec, ChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
hmlongco committed Mar 17, 2024
1 parent d468510 commit 182abaf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Factory Changelog

## 2.3.2

* Project updated CocoaPods to 1.15.2
* Public aliases for masked Factory objects - Issue #154
* Fix key issue when building xcframeworks - Issue #173
* Add VisionOS target to podspec and package.swift - PR #186
* Add Privacy Manifest file - PR #180
* Update README to include example for use with Swift's new Observable macro - PR #172

## 2.3.1

* Fix for SpinLock on Linux
Expand Down
7 changes: 5 additions & 2 deletions Factory.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = "Factory"
s.version = "2.3.1"
s.version = "2.3.2"
s.summary = "A Modern Dependency Injection / Service Locator framework for Swift on iOS."
s.homepage = "https://github.com/hmlongco/Factory"
s.license = "MIT"
s.author = "Michael Long"
s.source = { :git => "https://github.com/hmlongco/Factory.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.resources = "Sources/**/*.xcprivacy"
s.swift_version = '5.7'
s.swift_version = '5.9'

s.ios.deployment_target = "12.0"
s.ios.framework = 'UIKit'
Expand All @@ -21,4 +21,7 @@ Pod::Spec.new do |s|

s.osx.deployment_target = "10.14"
s.osx.framework = 'AppKit'

s.visionos.deployment_target = "1.0"
s.visionos.framework = 'SwiftUI'
end

0 comments on commit 182abaf

Please sign in to comment.