From 9bdc63e5f432e9fd6c8faa8ff104bdba6e838ead Mon Sep 17 00:00:00 2001 From: Benjamin Esham Date: Fri, 11 Feb 2022 11:46:42 -0500 Subject: [PATCH 1/2] Update source_files pattern in the podspec file In commit a842527, the CodableFirebase directory was moved inside a new Sources directory. This commit updates the CocoaPods podspec file to match. (Without this change, CocoaPods will discard all of the source files, thinking that they are unnecessary.) --- CodableFirebase.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodableFirebase.podspec b/CodableFirebase.podspec index fca5ce1..eff95ff 100644 --- a/CodableFirebase.podspec +++ b/CodableFirebase.podspec @@ -14,6 +14,6 @@ Pod::Spec.new do |s| s.requires_arc = true s.source = { :git => "https://github.com/alickbass/CodableFirebase.git", :tag => s.version, :branch => 'master'} - s.source_files = "CodableFirebase/*.swift" + s.source_files = "Sources/CodableFirebase/*.swift" s.swift_version = '5.0' end From a49c024b7f1ca180fa19e75785effbcb1fc67f41 Mon Sep 17 00:00:00 2001 From: Benjamin Esham Date: Fri, 11 Feb 2022 11:54:11 -0500 Subject: [PATCH 2/2] Update project version to 0.2.2 in podspec file --- CodableFirebase.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodableFirebase.podspec b/CodableFirebase.podspec index eff95ff..e93caf3 100644 --- a/CodableFirebase.podspec +++ b/CodableFirebase.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "CodableFirebase" - s.version = "0.2.1" + s.version = "0.2.2" s.summary = "Use Codable with Firebase" s.description = "This library helps you use your custom models that conform to Codable protocol with Firebase Realtime Database and Firestore" s.homepage = "https://github.com/alickbass/CodableFirebase"