cocoapods 0.19.0 → 0.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -11
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/xcconfig.rb +1 -1
- data/lib/cocoapods/installer/target_installer.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7c98eebfe9dd50b6b4da71a5ac302de8192cfd6
|
|
4
|
+
data.tar.gz: 2e03f615d405ef0a985a8583c49a8391f9879c15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf0a9ac7b7cff55600dcbaf3b02945e15eea8948f11d688e0bd3a6a9e7ead00d7165d0fd641e1a00e5e96da60b05b8e58c4b289dce05eb59ffb6b564471946cf
|
|
7
|
+
data.tar.gz: 48a8203cc6981508df7e8e717621a6b9b4c79b576fcadb0865f388f074a38c2d54af094c49c37f4fe21ceb1b654e16c9087e5c816c7a3a146a22c2441d797d40
|
data/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,41 @@
|
|
|
1
|
+
## Installation & Update
|
|
2
|
+
|
|
3
|
+
To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
|
|
4
|
+
|
|
5
|
+
## Master
|
|
6
|
+
|
|
7
|
+
## 0.19.1
|
|
8
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.19.0...0.19.1)
|
|
9
|
+
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.19.0...0.19.1)
|
|
10
|
+
|
|
11
|
+
###### Bug fixes
|
|
12
|
+
|
|
13
|
+
* Project-level preprocessor macros are not overwritten anymore.
|
|
14
|
+
[#903](https://github.com/CocoaPods/CocoaPods/issues/903)
|
|
15
|
+
* A Unique hash instances for the build settings of the Pods target is now
|
|
16
|
+
created resolving interferences in the hooks.
|
|
17
|
+
[#1014](https://github.com/CocoaPods/CocoaPods/issues/1014)
|
|
18
|
+
|
|
1
19
|
## 0.19.0
|
|
2
20
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.18.1...0.19.0)
|
|
3
21
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.18.1...0.19.0)
|
|
4
22
|
|
|
5
23
|
###### Enhancements
|
|
6
24
|
|
|
7
|
-
* Added `pod podfile-info` command. Shows list of used Pods and their info
|
|
8
|
-
in a project or supplied Podfile.
|
|
9
|
-
Options: `--all` - with dependancies. `--md` - in Markdown.
|
|
10
|
-
[#855](https://github.com/CocoaPods/CocoaPods/issues/855)
|
|
11
|
-
* CocoaPods now defines the `COCOAPODS=1` macro in the Pod and the Client
|
|
12
|
-
targets. This is useful for libraries which conditionally expose interfaces.
|
|
13
|
-
[#903](https://github.com/CocoaPods/CocoaPods/issues/903)
|
|
14
25
|
* Compile time introspection. Macro definitions which allow to inspect the
|
|
15
26
|
installed Pods and their version have been introduced in the build
|
|
16
27
|
environment of the Pod libraries
|
|
17
28
|
([example](https://gist.github.com/irrationalfab/5348551)).
|
|
29
|
+
* CocoaPods now defines the `COCOAPODS=1` macro in the Pod and the Client
|
|
30
|
+
targets. This is useful for libraries which conditionally expose interfaces.
|
|
31
|
+
[#903](https://github.com/CocoaPods/CocoaPods/issues/903)
|
|
18
32
|
* CocoaPods now defines the deployment target of the Pods project computed as
|
|
19
33
|
the minimum deployment target of the Pods libraries.
|
|
20
34
|
[#556](https://github.com/CocoaPods/CocoaPods/issues/556)
|
|
35
|
+
* Added `pod podfile-info` command. Shows list of used Pods and their info
|
|
36
|
+
in a project or supplied Podfile.
|
|
37
|
+
Options: `--all` - with dependencies. `--md` - in Markdown.
|
|
38
|
+
[#855](https://github.com/CocoaPods/CocoaPods/issues/855)
|
|
21
39
|
* Added `pod help` command. You can still use the old format
|
|
22
40
|
with --help flag.
|
|
23
41
|
[#957](https://github.com/CocoaPods/CocoaPods/pull/957)
|
|
@@ -28,14 +46,15 @@
|
|
|
28
46
|
|
|
29
47
|
###### Deprecations
|
|
30
48
|
|
|
31
|
-
* `:local` flag in Podfile
|
|
32
|
-
|
|
49
|
+
* The `:local` flag in Podfile has been renamed to `:path` and has been
|
|
50
|
+
deprecated.
|
|
33
51
|
[#971](https://github.com/CocoaPods/CocoaPods/issues/971)
|
|
52
|
+
|
|
34
53
|
###### Bug fixes
|
|
35
54
|
|
|
36
|
-
*
|
|
55
|
+
* Fixed issue related to `pod outdated` and external sources.
|
|
37
56
|
[#954](https://github.com/CocoaPods/CocoaPods/issues/954)
|
|
38
|
-
*
|
|
57
|
+
* Fixed issue with .svn folders in copy resources script.
|
|
39
58
|
[#972](https://github.com/CocoaPods/CocoaPods/issues/972)
|
|
40
59
|
|
|
41
60
|
## 0.18.1
|
|
@@ -58,7 +58,7 @@ module Pod
|
|
|
58
58
|
'PODS_HEADERS_SEARCH_PATHS' => '${PODS_PUBLIC_HEADERS_SEARCH_PATHS}',
|
|
59
59
|
'PODS_BUILD_HEADERS_SEARCH_PATHS' => quote(sandbox.build_headers.search_paths),
|
|
60
60
|
'PODS_PUBLIC_HEADERS_SEARCH_PATHS' => quote(sandbox.public_headers.search_paths),
|
|
61
|
-
'GCC_PREPROCESSOR_DEFINITIONS' => 'COCOAPODS=1'
|
|
61
|
+
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) COCOAPODS=1'
|
|
62
62
|
})
|
|
63
63
|
|
|
64
64
|
spec_consumers.each do |consumer|
|
|
@@ -80,7 +80,7 @@ module Pod
|
|
|
80
80
|
unless @target.build_configurations.map(&:name).include?(bc_name)
|
|
81
81
|
build_config = project.new(Xcodeproj::Project::XCBuildConfiguration)
|
|
82
82
|
build_config.name = bc_name
|
|
83
|
-
settings = @target.build_settings(type.to_s.capitalize)
|
|
83
|
+
settings = @target.build_settings(type.to_s.capitalize).dup
|
|
84
84
|
build_config.build_settings = settings
|
|
85
85
|
target.build_configurations << build_config
|
|
86
86
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.19.
|
|
4
|
+
version: 0.19.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eloy Duran
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 0.19.
|
|
20
|
+
version: 0.19.1
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 0.19.
|
|
27
|
+
version: 0.19.1
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: claide
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|