Compare commits

...

7 Commits

Author SHA1 Message Date
Juanpe 30c92f0992 Bump version 1.31.0 2024-04-18 11:15:17 +00:00
Sean Najera 2f5274827d remove trailing comma in Package.swift (#557)
Fixes a syntax error, which is preventing SkeletonView from being added as a dependency in client projects
2024-04-18 13:14:51 +02:00
Juanpe Catalán 5699404ce2 Update SkeletonView.podspec 2024-01-15 10:41:52 +01:00
Juanpe Catalán 3d7ff3b255 Update release.yml 2024-01-15 10:35:50 +01:00
Juanpe Catalán 52cce6ea55 Update CD.yml 2024-01-15 10:30:38 +01:00
Dmitry Kuleshov 3269c97f42 Add PrivacyInfo manifest file (#552)
* Add PrivacyInfo manifest file

* Update package file
2024-01-15 10:21:29 +01:00
Juanpe 0f5eaf82e8 Bump version 1.30.4 2022-10-20 11:01:43 +00:00
6 changed files with 31 additions and 13 deletions
+1 -6
View File
@@ -8,14 +8,9 @@ on:
jobs:
release_version:
if: github.event.pull_request.milestone == null && github.event.pull_request.merged == true
runs-on: ubuntu-latest
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Setup Environment
run: |
brew install fastlane
brew install cocoapods
- name: Publish release
id: publish_release
-3
View File
@@ -7,9 +7,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup fastlane
run: brew install fastlane
- name: Publish release
id: publish_release
uses: release-drafter/release-drafter@v5
+2 -1
View File
@@ -17,7 +17,8 @@ let package = Package(
targets: [
.target(
name: "SkeletonView",
path: "SkeletonViewCore/Sources"
path: "SkeletonViewCore/Sources",
resources: [.copy("Supporting Files/PrivacyInfo.xcprivacy")]
),
.testTarget(
name: "SkeletonViewTests",
+2 -2
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SkeletonView"
s.version = "1.30.3"
s.version = "1.31.0"
s.summary = "An elegant way to show users that something is happening and also prepare them to which contents he is waiting"
s.description = <<-DESC
Today almost all apps have async processes, as API requests, long runing processes, etc. And while the processes are working, usually developers place a loading view to show users that something is going on.
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.homepage = "https://github.com/Juanpe/SkeletonView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Juanpe Catalán" => "juanpecm@gmail.com" }
s.social_media_url = "https://twitter.com/JuanpeCatalan"
s.social_media_url = "https://x.com/JuanpeCatalan"
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "9.0"
s.swift_version = "5.0"
+3 -1
View File
@@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {
/* Begin PBXBuildFile section */
@@ -153,6 +153,7 @@
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0AEC95C32AF537B600CD241A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
F5225F29278C2BCE0061A9B0 /* SkeletonTextNumberOfLines.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkeletonTextNumberOfLines.swift; sourceTree = "<group>"; };
F53D731726D399E100249D46 /* SkeletonTreeNode+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "SkeletonTreeNode+Extensions.swift"; sourceTree = "<group>"; };
F53D731A26D3A35100249D46 /* SkeletonExtended.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkeletonExtended.swift; sourceTree = "<group>"; };
@@ -349,6 +350,7 @@
isa = PBXGroup;
children = (
F556F56226CD1D8500A80B83 /* Info.plist */,
0AEC95C32AF537B600CD241A /* PrivacyInfo.xcprivacy */,
);
path = "Supporting Files";
sourceTree = "<group>";
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
</array>
</dict>
</plist>