IGListKit/Examples/Examples-iOS/Pods/Local Podspecs/IGListKit.podspec.json
Zhisheng Huang f3175ec31f Update the version to be 4.0
Summary:
As title, let's prepare the 4.0 release with the version bump.

1. Change the Source/Info.plist to have 4.0.0 for CFBundleShortVersionString.
2. Manually update any .md files that used the old release versions.
3. Run `./scripts/setup.sh` to re-update all the pods and the Example projects.

Reviewed By: natestedman

Differential Revision: D18616823

fbshipit-source-id: ca0f2a09cdd9ab592c2cb002fe923e195ce3ab12
2019-11-20 16:23:15 -08:00

60 lines
1.5 KiB
JSON

{
"name": "IGListKit",
"version": "4.0.0",
"summary": "A data-driven UICollectionView framework.",
"homepage": "https://github.com/Instagram/IGListKit",
"documentation_url": "https://instagram.github.io/IGListKit",
"description": "A data-driven UICollectionView framework for building fast and flexible lists.",
"license": {
"type": "MIT"
},
"authors": "Instagram",
"social_media_url": "https://twitter.com/fbOpenSource",
"source": {
"git": "https://github.com/Instagram/IGListKit.git",
"tag": "4.0.0",
"branch": "stable"
},
"dependencies": {
"IGListDiffKit": [
"= 4.0.0"
]
},
"ios": {
"source_files": [
"Source/IGListDiffKit/Internal/*.h",
"Source/IGListKit/**/*.{h,m,mm}"
],
"private_header_files": [
"Source/IGListDiffKit/Internal/*.h",
"Source/IGListKit/Internal/*.h"
],
"frameworks": "UIKit"
},
"tvos": {
"source_files": [
"Source/IGListDiffKit/Internal/*.h",
"Source/IGListKit/**/*.{h,m,mm}"
],
"private_header_files": [
"Source/IGListDiffKit/Internal/*.h",
"Source/IGListKit/Internal/*.h"
],
"frameworks": "UIKit"
},
"osx": {
"source_files": "Source/IGListKit/IGListKit.h",
"frameworks": "Cocoa"
},
"requires_arc": true,
"platforms": {
"ios": "9.0",
"tvos": "9.0",
"osx": "10.11"
},
"libraries": "c++",
"pod_target_xcconfig": {
"CLANG_CXX_LANGUAGE_STANDARD": "c++11",
"CLANG_CXX_LIBRARY": "libc++"
}
}