cocoapods 0.38.2 → 0.39.0.beta.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 +175 -90
- data/lib/cocoapods.rb +0 -6
- data/lib/cocoapods/command/lib.rb +15 -10
- data/lib/cocoapods/command/repo/lint.rb +3 -1
- data/lib/cocoapods/command/repo/push.rb +13 -4
- data/lib/cocoapods/command/spec/create.rb +5 -6
- data/lib/cocoapods/command/spec/lint.rb +15 -10
- data/lib/cocoapods/executable.rb +36 -6
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/copy_resources_script.rb +1 -1
- data/lib/cocoapods/generator/embed_frameworks_script.rb +40 -10
- data/lib/cocoapods/generator/xcconfig.rb +1 -2
- data/lib/cocoapods/generator/xcconfig/aggregate_xcconfig.rb +9 -8
- data/lib/cocoapods/generator/xcconfig/{private_pod_xcconfig.rb → pod_xcconfig.rb} +14 -63
- data/lib/cocoapods/generator/xcconfig/xcconfig_helper.rb +1 -2
- data/lib/cocoapods/installer.rb +60 -32
- data/lib/cocoapods/installer/analyzer.rb +2 -0
- data/lib/cocoapods/installer/file_references_installer.rb +3 -3
- data/lib/cocoapods/installer/pod_source_installer.rb +24 -5
- data/lib/cocoapods/installer/source_provider_hooks_context.rb +32 -0
- data/lib/cocoapods/installer/target_installer/aggregate_target_installer.rb +6 -4
- data/lib/cocoapods/installer/target_installer/pod_target_installer.rb +2 -7
- data/lib/cocoapods/installer/user_project_integrator/target_integrator.rb +59 -25
- data/lib/cocoapods/resolver.rb +10 -2
- data/lib/cocoapods/sandbox/file_accessor.rb +57 -0
- data/lib/cocoapods/sandbox/headers_store.rb +5 -6
- data/lib/cocoapods/target.rb +0 -12
- data/lib/cocoapods/target/pod_target.rb +7 -0
- data/lib/cocoapods/validator.rb +34 -23
- metadata +16 -16
- data/lib/cocoapods/generator/xcconfig/public_pod_xcconfig.rb +0 -53
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1420d88dc55621f1b695039e95c0d2b207059af
|
4
|
+
data.tar.gz: 903496d7fb071cb9f992aca7f58d628a5374b13c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86c8964744a122ba470863001645ae7a2f5c8e78ebdb42d617bed0cd615a4d51f16d84cef4743820fdb303acef2218882ec90b187d641cc7b88afc50ea4952e1
|
7
|
+
data.tar.gz: 82031782768e442164f66026279a4703e84053ad3721760626baecde02485ca83d5254d6ef4cd7893a2078fefc9af876d412c7d8438006b4835427fe51553faa
|
data/CHANGELOG.md
CHANGED
@@ -4,7 +4,92 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
4
4
|
|
5
5
|
To install release candidates run `[sudo] gem install cocoapods --pre`
|
6
6
|
|
7
|
-
## 0.
|
7
|
+
## 0.39.0.beta.1 (2015-08-26)
|
8
|
+
|
9
|
+
##### Breaking
|
10
|
+
|
11
|
+
* The `HEADER_SEARCH_PATHS` will no longer be constructed recursively.
|
12
|
+
[Samuel Giddins](https://github.com/segiddins)
|
13
|
+
[twoboxen](https://github.com/twoboxen)
|
14
|
+
[#1437](https://github.com/CocoaPods/CocoaPods/issues/1437)
|
15
|
+
[#3760](https://github.com/CocoaPods/CocoaPods/issues/3760)
|
16
|
+
|
17
|
+
##### Enhancements
|
18
|
+
|
19
|
+
* Collapse the namespaced public and private pod xcconfig into one single
|
20
|
+
xcconfig file.
|
21
|
+
[Marius Rackwitz](https://github.com/mrackwitz)
|
22
|
+
[#3916](https://github.com/CocoaPods/CocoaPods/pull/3916)
|
23
|
+
|
24
|
+
* Add `--sources` option to `push` command.
|
25
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
26
|
+
[#3912](https://github.com/CocoaPods/CocoaPods/issues/3912)
|
27
|
+
|
28
|
+
* Implicitly unlock all local dependencies when installing.
|
29
|
+
[Samuel Giddins](https://github.com/segiddins)
|
30
|
+
[#3764](https://github.com/CocoaPods/CocoaPods/issues/3764)
|
31
|
+
|
32
|
+
* The resolver error message when a conflict occurred due to platform deployment
|
33
|
+
target mismatches will now explain that.
|
34
|
+
[Samuel Giddins](https://github.com/segiddins)
|
35
|
+
[#3926](https://github.com/CocoaPods/CocoaPods/issues/3926)
|
36
|
+
|
37
|
+
* Add `:source_provider` hook to allow plugins to provide sources.
|
38
|
+
[Eric Amorde](https://github.com/amorde)
|
39
|
+
[#3190](https://github.com/CocoaPods/CocoaPods/issues/3190)
|
40
|
+
[#3792](https://github.com/CocoaPods/CocoaPods/pull/3792)
|
41
|
+
|
42
|
+
* Remove embed frameworks build phase from target types, where it is not required.
|
43
|
+
[Marius Rackwitz](https://github.com/mrackwitz)
|
44
|
+
[#3905](https://github.com/CocoaPods/CocoaPods/issues/3905)
|
45
|
+
[#4028](https://github.com/CocoaPods/CocoaPods/pull/4028)
|
46
|
+
|
47
|
+
* Add a `--private` option to `pod spec lint`, `pod lib lint`, and
|
48
|
+
`pod repo push` that will ignore warnings that only apply to public
|
49
|
+
specifications and sources.
|
50
|
+
[Samuel Giddins](https://github.com/segiddins)
|
51
|
+
[Core#190](https://github.com/CocoaPods/Core/issues/190)
|
52
|
+
[#2682](https://github.com/CocoaPods/CocoaPods/issues/2682)
|
53
|
+
|
54
|
+
* Add support for dynamic `vendored_frameworks` and `vendored_libraries`.
|
55
|
+
[Samuel Giddins](https://github.com/segiddins)
|
56
|
+
[#1993](https://github.com/CocoaPods/CocoaPods/issues/1993)
|
57
|
+
|
58
|
+
##### Bug Fixes
|
59
|
+
|
60
|
+
* Build settings specified in `pod_target_xcconfig` of a spec are also for
|
61
|
+
library targets only applied to the pod target.
|
62
|
+
[Marius Rackwitz](https://github.com/mrackwitz)
|
63
|
+
[#3906](https://github.com/CocoaPods/CocoaPods/issues/3906)
|
64
|
+
|
65
|
+
* Use APPLICATION_EXTENSION_API_ONLY for watchOS 2 extensions.
|
66
|
+
[Boris Bügling](https://github.com/neonichu)
|
67
|
+
[#3920](https://github.com/CocoaPods/CocoaPods/pull/3920)
|
68
|
+
|
69
|
+
* Prevent copying resources to installation directory when `SKIP_INSTALL` is enabled.
|
70
|
+
[Dominique d'Argent](https://github.com/nubbel)
|
71
|
+
[#3971](https://github.com/CocoaPods/CocoaPods/pull/3971)
|
72
|
+
|
73
|
+
* Embed frameworks into app and watch extensions.
|
74
|
+
[Boris Bügling](https://github.com/neonichu)
|
75
|
+
[#4004](https://github.com/CocoaPods/CocoaPods/pull/4004)
|
76
|
+
|
77
|
+
* Fix missing `$(inherited)` for generated xcconfig `LIBRARY_SEARCH_PATHS`
|
78
|
+
and `HEADER_SEARCH_PATHS` build settings.
|
79
|
+
[Tyler Fox](https://github.com/smileyborg)
|
80
|
+
[#3908](https://github.com/CocoaPods/CocoaPods/issues/3908)
|
81
|
+
|
82
|
+
* Fix source locking/unlocking.
|
83
|
+
[Samuel Giddins](https://github.com/segiddins)
|
84
|
+
[#4059](https://github.com/CocoaPods/CocoaPods/issues/4059)
|
85
|
+
|
86
|
+
* Include the `-ObjC` linker flag when static `vendored_frameworks` are present.
|
87
|
+
[Samuel Giddins](https://github.com/segiddins)
|
88
|
+
[#3870](https://github.com/CocoaPods/CocoaPods/issues/3870)
|
89
|
+
[#3992](https://github.com/CocoaPods/CocoaPods/issues/3992)
|
90
|
+
|
91
|
+
|
92
|
+
## 0.38.2 (2015-07-25)
|
8
93
|
|
9
94
|
##### Bug Fixes
|
10
95
|
|
@@ -34,7 +119,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
34
119
|
[#3887](https://github.com/CocoaPods/CocoaPods/issues/3887)
|
35
120
|
|
36
121
|
|
37
|
-
## 0.38.1
|
122
|
+
## 0.38.1 (2015-07-23)
|
38
123
|
|
39
124
|
##### Enhancements
|
40
125
|
|
@@ -77,7 +162,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
77
162
|
[#3819](https://github.com/CocoaPods/CocoaPods/issues/3819)
|
78
163
|
|
79
164
|
|
80
|
-
## 0.38.0
|
165
|
+
## 0.38.0 (2015-07-18)
|
81
166
|
|
82
167
|
##### Enhancements
|
83
168
|
|
@@ -94,7 +179,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
94
179
|
[#3813](https://github.com/CocoaPods/CocoaPods/issues/3813)
|
95
180
|
|
96
181
|
|
97
|
-
## 0.38.0.beta.2
|
182
|
+
## 0.38.0.beta.2 (2015-07-05)
|
98
183
|
|
99
184
|
##### Enhancements
|
100
185
|
|
@@ -138,7 +223,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
138
223
|
[#3763](https://github.com/CocoaPods/CocoaPods/issues/3763)
|
139
224
|
|
140
225
|
|
141
|
-
## 0.38.0.beta.1
|
226
|
+
## 0.38.0.beta.1 (2015-06-26)
|
142
227
|
|
143
228
|
##### Highlighted Enhancement That Needs Testing
|
144
229
|
|
@@ -276,7 +361,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
276
361
|
[#3646](https://github.com/CocoaPods/CocoaPods/issues/3646)
|
277
362
|
|
278
363
|
|
279
|
-
## 0.37.2
|
364
|
+
## 0.37.2 (2015-05-27)
|
280
365
|
|
281
366
|
##### Enhancements
|
282
367
|
|
@@ -304,7 +389,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
304
389
|
[Boris Bügling](https://github.com/neonichu)
|
305
390
|
[#3500](https://github.com/CocoaPods/CocoaPods/issues/3500)
|
306
391
|
|
307
|
-
## 0.37.1
|
392
|
+
## 0.37.1 (2015-05-06)
|
308
393
|
|
309
394
|
##### Bug Fixes
|
310
395
|
|
@@ -344,7 +429,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
344
429
|
[Samuel Giddins](https://github.com/segiddins)
|
345
430
|
|
346
431
|
|
347
|
-
## 0.37.0
|
432
|
+
## 0.37.0 (2015-05-03)
|
348
433
|
|
349
434
|
For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-0.37/) on our blog.
|
350
435
|
|
@@ -354,7 +439,7 @@ For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-
|
|
354
439
|
[Matt Holgate](https://github.com/mjholgate)
|
355
440
|
|
356
441
|
|
357
|
-
## 0.37.0.rc.2
|
442
|
+
## 0.37.0.rc.2 (2015-04-30)
|
358
443
|
|
359
444
|
##### Bug Fixes
|
360
445
|
|
@@ -368,7 +453,7 @@ For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-
|
|
368
453
|
[#3477](https://github.com/CocoaPods/CocoaPods/issues/3477)
|
369
454
|
|
370
455
|
|
371
|
-
## 0.37.0.rc.1
|
456
|
+
## 0.37.0.rc.1 (2015-04-27)
|
372
457
|
|
373
458
|
[Core](https://github.com/CocoaPods/Core/compare/0.37.0.beta.1...0.37.0.rc.1)
|
374
459
|
[Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.24.0...0.24.1)
|
@@ -424,7 +509,7 @@ For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-
|
|
424
509
|
[#3463](https://github.com/CocoaPods/CocoaPods/issues/3463)
|
425
510
|
|
426
511
|
|
427
|
-
## 0.37.0.beta.1
|
512
|
+
## 0.37.0.beta.1 (2015-04-18)
|
428
513
|
|
429
514
|
##### Enhancements
|
430
515
|
|
@@ -478,7 +563,7 @@ For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-
|
|
478
563
|
[#3390](https://github.com/CocoaPods/CocoaPods/pull/3390)
|
479
564
|
|
480
565
|
|
481
|
-
## 0.36.4
|
566
|
+
## 0.36.4 (2015-04-16)
|
482
567
|
|
483
568
|
##### Bug Fixes
|
484
569
|
|
@@ -490,7 +575,7 @@ For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-
|
|
490
575
|
[#3358](https://github.com/CocoaPods/CocoaPods/pull/3358)
|
491
576
|
|
492
577
|
|
493
|
-
## 0.36.3
|
578
|
+
## 0.36.3 (2015-03-31)
|
494
579
|
|
495
580
|
##### Bug Fixes
|
496
581
|
|
@@ -500,7 +585,7 @@ For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-
|
|
500
585
|
[#3345](https://github.com/CocoaPods/CocoaPods/issues/3345)
|
501
586
|
|
502
587
|
|
503
|
-
## 0.36.2
|
588
|
+
## 0.36.2 (2015-03-31)
|
504
589
|
|
505
590
|
[Core](https://github.com/CocoaPods/Core/compare/0.36.1...0.36.2)
|
506
591
|
|
@@ -518,7 +603,7 @@ For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-
|
|
518
603
|
[#3299](https://github.com/CocoaPods/CocoaPods/issues/3299)
|
519
604
|
|
520
605
|
|
521
|
-
## 0.36.1
|
606
|
+
## 0.36.1 (2015-03-27)
|
522
607
|
|
523
608
|
[Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.23.0...0.23.1)
|
524
609
|
|
@@ -541,7 +626,7 @@ For more details, see 📝 [CocoaPods 0.37](http://blog.cocoapods.org/CocoaPods-
|
|
541
626
|
`xcassets` for different targets will still have issues; we ([@AliSoftware](https://github.com/AliSoftware))
|
542
627
|
are working on a deeper fix ([#3263](https://github.com/CocoaPods/CocoaPods/issues/3263)) for the next release._
|
543
628
|
|
544
|
-
## 0.36.0
|
629
|
+
## 0.36.0 (2015-03-11)
|
545
630
|
|
546
631
|
[Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.22.0...0.23.0)
|
547
632
|
|
@@ -596,7 +681,7 @@ For more details, see 📝 [CocoaPods 0.36](http://blog.cocoapods.org/CocoaPods-
|
|
596
681
|
[#2983](https://github.com/CocoaPods/CocoaPods/issues/2983)
|
597
682
|
|
598
683
|
|
599
|
-
## 0.36.0.rc.1
|
684
|
+
## 0.36.0.rc.1 (2015-02-24)
|
600
685
|
|
601
686
|
##### Enhancements
|
602
687
|
|
@@ -720,7 +805,7 @@ For more details, see 📝 [CocoaPods 0.36](http://blog.cocoapods.org/CocoaPods-
|
|
720
805
|
[#3181](https://github.com/CocoaPods/CocoaPods/issues/3181)
|
721
806
|
|
722
807
|
|
723
|
-
## 0.36.0.beta.2
|
808
|
+
## 0.36.0.beta.2 (2015-01-28)
|
724
809
|
|
725
810
|
[Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.21.0...0.21.2)
|
726
811
|
|
@@ -783,7 +868,7 @@ For more details, see 📝 [CocoaPods 0.36](http://blog.cocoapods.org/CocoaPods-
|
|
783
868
|
[#3008](https://github.com/CocoaPods/CocoaPods/issues/3008)
|
784
869
|
|
785
870
|
|
786
|
-
## 0.36.0.beta.1
|
871
|
+
## 0.36.0.beta.1 (2014-12-25)
|
787
872
|
|
788
873
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.35.0...0.36.0.beta.1)
|
789
874
|
• [CocoaPods-Core](https://github.com/CocoaPods/Core/compare/0.35.0...0.36.0.beta.1)
|
@@ -894,7 +979,7 @@ For more details, see 📝 [CocoaPods 0.36](http://blog.cocoapods.org/CocoaPods-
|
|
894
979
|
[#2965](https://github.com/CocoaPods/CocoaPods/issues/2965)
|
895
980
|
|
896
981
|
|
897
|
-
## 0.35.0
|
982
|
+
## 0.35.0 (2014-11-19)
|
898
983
|
|
899
984
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.34.4...0.35.0)
|
900
985
|
• [CocoaPods-Core](https://github.com/CocoaPods/Core/compare/0.34.4...0.35.0)
|
@@ -967,7 +1052,7 @@ For more details, see 📝 [CocoaPods 0.35](http://blog.cocoapods.org/CocoaPods-
|
|
967
1052
|
[Daniel Tomlinson](https://github.com/DanielTomlinson)
|
968
1053
|
[#2820](https://github.com/CocoaPods/CocoaPods/issues/2820)
|
969
1054
|
|
970
|
-
## 0.35.0.rc2
|
1055
|
+
## 0.35.0.rc2 (2014-11-06)
|
971
1056
|
|
972
1057
|
##### Enhancements
|
973
1058
|
|
@@ -995,7 +1080,7 @@ For more details, see 📝 [CocoaPods 0.35](http://blog.cocoapods.org/CocoaPods-
|
|
995
1080
|
[#2667](https://github.com/CocoaPods/CocoaPods/issues/2667)
|
996
1081
|
[#2759](https://github.com/CocoaPods/CocoaPods/issues/2759)
|
997
1082
|
|
998
|
-
## 0.35.0.rc1
|
1083
|
+
## 0.35.0.rc1 (2014-11-02)
|
999
1084
|
|
1000
1085
|
##### Highlighted Enhancements That Need Testing
|
1001
1086
|
|
@@ -1102,7 +1187,7 @@ For more details, see 📝 [CocoaPods 0.35](http://blog.cocoapods.org/CocoaPods-
|
|
1102
1187
|
[#1249](https://github.com/CocoaPods/CocoaPods/issues/1249)
|
1103
1188
|
|
1104
1189
|
|
1105
|
-
## 0.34.4
|
1190
|
+
## 0.34.4 (2014-10-18)
|
1106
1191
|
|
1107
1192
|
##### Bug Fixes
|
1108
1193
|
|
@@ -1148,7 +1233,7 @@ For more details, see 📝 [CocoaPods 0.35](http://blog.cocoapods.org/CocoaPods-
|
|
1148
1233
|
[#2651](https://github.com/CocoaPods/CocoaPods/issues/2651)
|
1149
1234
|
|
1150
1235
|
|
1151
|
-
## 0.34.2
|
1236
|
+
## 0.34.2 (2014-10-08)
|
1152
1237
|
|
1153
1238
|
##### Enhancements
|
1154
1239
|
|
@@ -1216,7 +1301,7 @@ For more details, see 📝 [CocoaPods 0.35](http://blog.cocoapods.org/CocoaPods-
|
|
1216
1301
|
[#2532](https://github.com/CocoaPods/CocoaPods/pull/2532)
|
1217
1302
|
|
1218
1303
|
|
1219
|
-
## 0.34.1
|
1304
|
+
## 0.34.1 (2014-09-26)
|
1220
1305
|
|
1221
1306
|
##### Bug Fixes
|
1222
1307
|
|
@@ -1226,7 +1311,7 @@ For more details, see 📝 [CocoaPods 0.35](http://blog.cocoapods.org/CocoaPods-
|
|
1226
1311
|
[#2526](https://github.com/CocoaPods/CocoaPods/issues/2526)
|
1227
1312
|
|
1228
1313
|
|
1229
|
-
## 0.34.0
|
1314
|
+
## 0.34.0 (2014-09-26)
|
1230
1315
|
|
1231
1316
|
For more details, see 📝 [CocoaPods 0.34](http://blog.cocoapods.org/CocoaPods-0.34/) on our blog.
|
1232
1317
|
|
@@ -1284,7 +1369,7 @@ For more details, see 📝 [CocoaPods 0.34](http://blog.cocoapods.org/CocoaPods-
|
|
1284
1369
|
[#1543](https://github.com/CocoaPods/CocoaPods/issues/1543)
|
1285
1370
|
|
1286
1371
|
|
1287
|
-
## 0.34.0.rc2
|
1372
|
+
## 0.34.0.rc2 (2014-09-16)
|
1288
1373
|
|
1289
1374
|
##### Bug Fixes
|
1290
1375
|
|
@@ -1299,7 +1384,7 @@ For more details, see 📝 [CocoaPods 0.34](http://blog.cocoapods.org/CocoaPods-
|
|
1299
1384
|
[#2473](https://github.com/CocoaPods/CocoaPods/issues/2473)
|
1300
1385
|
|
1301
1386
|
|
1302
|
-
## 0.34.0.rc1
|
1387
|
+
## 0.34.0.rc1 (2014-09-13)
|
1303
1388
|
|
1304
1389
|
##### Breaking
|
1305
1390
|
|
@@ -1472,7 +1557,7 @@ For more details, see 📝 [CocoaPods 0.34](http://blog.cocoapods.org/CocoaPods-
|
|
1472
1557
|
[Fabio Pelosin](https://github.com/fabiopelosin)
|
1473
1558
|
|
1474
1559
|
|
1475
|
-
## 0.33.1
|
1560
|
+
## 0.33.1 (2014-05-20)
|
1476
1561
|
|
1477
1562
|
##### Bug Fixes
|
1478
1563
|
|
@@ -1489,7 +1574,7 @@ For more details, see 📝 [CocoaPods 0.34](http://blog.cocoapods.org/CocoaPods-
|
|
1489
1574
|
[#34](https://github.com/CocoaPods/CLAide/issues/34)
|
1490
1575
|
|
1491
1576
|
|
1492
|
-
## 0.33.0
|
1577
|
+
## 0.33.0 (2014-05-20)
|
1493
1578
|
|
1494
1579
|
For more details, see 📝 [CocoaPods 0.33](http://blog.cocoapods.org/CocoaPods-0.33/) on our blog.
|
1495
1580
|
|
@@ -1582,7 +1667,7 @@ For more details, see 📝 [CocoaPods 0.33](http://blog.cocoapods.org/CocoaPods-
|
|
1582
1667
|
[Kyle Fuller](https://github.com/kylef)
|
1583
1668
|
[#2024](https://github.com/CocoaPods/CocoaPods/issues/2024)
|
1584
1669
|
|
1585
|
-
## 0.32.1
|
1670
|
+
## 0.32.1 (2014-04-15)
|
1586
1671
|
|
1587
1672
|
##### Bug Fixes
|
1588
1673
|
|
@@ -1590,7 +1675,7 @@ For more details, see 📝 [CocoaPods 0.33](http://blog.cocoapods.org/CocoaPods-
|
|
1590
1675
|
[Fabio Pelosin](https://github.com/fabiopelosin)
|
1591
1676
|
[#2050](https://github.com/CocoaPods/CocoaPods/issues/2050)
|
1592
1677
|
|
1593
|
-
## 0.32.0
|
1678
|
+
## 0.32.0 (2014-04-15)
|
1594
1679
|
|
1595
1680
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.31.1...0.32.0)
|
1596
1681
|
• [CocoaPods-Core](https://github.com/CocoaPods/Core/compare/0.31.1...0.32.0)
|
@@ -1687,7 +1772,7 @@ For more details, see 📝 [CocoaPods 0.32](http://blog.cocoapods.org/CocoaPods-
|
|
1687
1772
|
[#2003](https://github.com/CocoaPods/CocoaPods/issues/2003)
|
1688
1773
|
|
1689
1774
|
|
1690
|
-
## 0.31.1
|
1775
|
+
## 0.31.1 (2014-04-01)
|
1691
1776
|
|
1692
1777
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.31.0...0.31.1)
|
1693
1778
|
• [CocoaPods-Core](https://github.com/CocoaPods/Core/compare/0.31.0...0.31.1)
|
@@ -1707,7 +1792,7 @@ For more details, see 📝 [CocoaPods 0.32](http://blog.cocoapods.org/CocoaPods-
|
|
1707
1792
|
[Core#82](https://github.com/CocoaPods/Core/issues/82)
|
1708
1793
|
|
1709
1794
|
|
1710
|
-
## 0.31.0
|
1795
|
+
## 0.31.0 (2014-03-31)
|
1711
1796
|
|
1712
1797
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.30.0...0.31.0)
|
1713
1798
|
• [CocoaPods-Core](https://github.com/CocoaPods/Core/compare/0.30.0...0.31.0)
|
@@ -1806,7 +1891,7 @@ For more details, see 📝 [CocoaPods 0.31](http://blog.cocoapods.org/CocoaPods-
|
|
1806
1891
|
[#1862](https://github.com/CocoaPods/CocoaPods/issues/1862)
|
1807
1892
|
[#1894](https://github.com/CocoaPods/CocoaPods/pull/1894)
|
1808
1893
|
|
1809
|
-
## 0.30.0
|
1894
|
+
## 0.30.0 (2014-03-29)
|
1810
1895
|
|
1811
1896
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.29.0...0.30.0)
|
1812
1897
|
|
@@ -1842,7 +1927,7 @@ For more details, see 📝 [CocoaPods 0.30](http://blog.cocoapods.org/CocoaPods-
|
|
1842
1927
|
[#1739](https://github.com/CocoaPods/CocoaPods/pull/1739)
|
1843
1928
|
|
1844
1929
|
|
1845
|
-
## 0.29.0
|
1930
|
+
## 0.29.0 (2013-12-25)
|
1846
1931
|
|
1847
1932
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.28.0...0.29.0)
|
1848
1933
|
• [CocoaPods-core](https://github.com/CocoaPods/Core/compare/0.28.0...0.29.0)
|
@@ -1970,7 +2055,7 @@ For more details, see 📝 [CocoaPods 0.29](http://blog.cocoapods.org/CocoaPods-
|
|
1970
2055
|
[cocoapods-try#5](https://github.com/CocoaPods/cocoapods-try/issues/5)
|
1971
2056
|
|
1972
2057
|
|
1973
|
-
## 0.28.0
|
2058
|
+
## 0.28.0 (2013-11-14)
|
1974
2059
|
|
1975
2060
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.27.1...0.28.0)
|
1976
2061
|
• [CocoaPods-core](https://github.com/CocoaPods/Core/compare/0.27.1...0.28.0)
|
@@ -2044,7 +2129,7 @@ For more details, see 📝 [CocoaPods 0.28](http://blog.cocoapods.org/CocoaPods-
|
|
2044
2129
|
[#1570](https://github.com/CocoaPods/CocoaPods/pull/1570)
|
2045
2130
|
|
2046
2131
|
|
2047
|
-
## 0.27.1
|
2132
|
+
## 0.27.1 (2013-10-24)
|
2048
2133
|
|
2049
2134
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.26.2...0.27.1)
|
2050
2135
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.26.2...0.27.1)
|
@@ -2101,7 +2186,7 @@ For more details, see 📝 [CocoaPods 0.27 and improved installation UX](http://
|
|
2101
2186
|
[Fabio Pelosin](https://github.com/fabiopelosin)
|
2102
2187
|
|
2103
2188
|
|
2104
|
-
## 0.26.2
|
2189
|
+
## 0.26.2 (2013-10-09)
|
2105
2190
|
|
2106
2191
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.26.1...0.26.2)
|
2107
2192
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.26.1...0.26.2)
|
@@ -2125,7 +2210,7 @@ For more details, see 📝 [CocoaPods 0.27 and improved installation UX](http://
|
|
2125
2210
|
[#1454](https://github.com/CocoaPods/CocoaPods/issues/1454)
|
2126
2211
|
|
2127
2212
|
|
2128
|
-
## 0.26.1
|
2213
|
+
## 0.26.1 (2013-10-08)
|
2129
2214
|
|
2130
2215
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.25.0...0.26.1)
|
2131
2216
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.25.0...0.26.1)
|
@@ -2187,7 +2272,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2187
2272
|
[#1272](https://github.com/CocoaPods/CocoaPods/pull/1272)
|
2188
2273
|
|
2189
2274
|
|
2190
|
-
## 0.25.0
|
2275
|
+
## 0.25.0 (2013-09-20)
|
2191
2276
|
|
2192
2277
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.24.0...0.25.0)
|
2193
2278
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.24.0...0.25.0)
|
@@ -2250,7 +2335,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2250
2335
|
for details.
|
2251
2336
|
|
2252
2337
|
|
2253
|
-
## 0.24.0
|
2338
|
+
## 0.24.0 (2013-09-04)
|
2254
2339
|
|
2255
2340
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.23.0...0.24.0)
|
2256
2341
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.23.0...0.24.0)
|
@@ -2314,10 +2399,10 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2314
2399
|
[#1309](https://github.com/CocoaPods/CocoaPods/issues/1309)
|
2315
2400
|
|
2316
2401
|
|
2317
|
-
## 0.23.0
|
2402
|
+
## 0.23.0 (2013-08-08)
|
2318
2403
|
|
2319
2404
|
|
2320
|
-
## 0.23.0.rc1
|
2405
|
+
## 0.23.0.rc1 (2013-08-02)
|
2321
2406
|
|
2322
2407
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.3...0.23.0.rc1)
|
2323
2408
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.22.3...0.23.0.rc1)
|
@@ -2386,7 +2471,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2386
2471
|
|
2387
2472
|
|
2388
2473
|
|
2389
|
-
## 0.22.3
|
2474
|
+
## 0.22.3 (2013-07-23)
|
2390
2475
|
|
2391
2476
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.2...0.22.3)
|
2392
2477
|
|
@@ -2420,7 +2505,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2420
2505
|
|
2421
2506
|
|
2422
2507
|
|
2423
|
-
## 0.22.2
|
2508
|
+
## 0.22.2 (2013-07-11)
|
2424
2509
|
|
2425
2510
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.1...0.22.2)
|
2426
2511
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.22.1...0.22.2)
|
@@ -2449,7 +2534,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2449
2534
|
[#1189](https://github.com/CocoaPods/CocoaPods/issues/1189)
|
2450
2535
|
|
2451
2536
|
|
2452
|
-
## 0.22.1
|
2537
|
+
## 0.22.1 (2013-07-03)
|
2453
2538
|
|
2454
2539
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.0...0.22.1)
|
2455
2540
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.22.0...0.22.1)
|
@@ -2460,7 +2545,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2460
2545
|
[#1168](https://github.com/CocoaPods/CocoaPods/issues/1168)
|
2461
2546
|
|
2462
2547
|
|
2463
|
-
## 0.22.0
|
2548
|
+
## 0.22.0 (2013-07-03)
|
2464
2549
|
|
2465
2550
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.21.0...0.22.0)
|
2466
2551
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.21.0...0.22.0)
|
@@ -2510,7 +2595,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2510
2595
|
Thanks to Thomas Dohmke (ashtom) for the fix.
|
2511
2596
|
[#1063](https://github.com/CocoaPods/CocoaPods/issues/1063)
|
2512
2597
|
|
2513
|
-
## 0.21.0
|
2598
|
+
## 0.21.0 (2013-07-01)
|
2514
2599
|
|
2515
2600
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.21.0.rc1...0.21.0)
|
2516
2601
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.21.0.rc1...0.21.0)
|
@@ -2525,7 +2610,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2525
2610
|
[#1152](https://github.com/CocoaPods/CocoaPods/issues/1152)
|
2526
2611
|
|
2527
2612
|
|
2528
|
-
## 0.21.0.rc1
|
2613
|
+
## 0.21.0.rc1 (2013-06-18)
|
2529
2614
|
|
2530
2615
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.20.2...0.21.0.rc1)
|
2531
2616
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.20.2...0.21.0.rc1)
|
@@ -2554,7 +2639,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2554
2639
|
file for multiple targets.
|
2555
2640
|
[#1099](https://github.com/CocoaPods/CocoaPods/issues/1099)
|
2556
2641
|
|
2557
|
-
## 0.20.2
|
2642
|
+
## 0.20.2 (2013-05-26)
|
2558
2643
|
|
2559
2644
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.20.1...0.20.2)
|
2560
2645
|
|
@@ -2566,7 +2651,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2566
2651
|
* Allow sandbox-pod to execute any tool inside the Xcode.app bundle.
|
2567
2652
|
* Allow sandbox-pod to execute any tool inside a rbenv prefix.
|
2568
2653
|
|
2569
|
-
## 0.20.1
|
2654
|
+
## 0.20.1 (2013-05-23)
|
2570
2655
|
|
2571
2656
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.20.0...0.20.1)
|
2572
2657
|
• [CLAide](https://github.com/CocoaPods/CLAide/compare/0.3.0...0.3.2)
|
@@ -2581,7 +2666,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2581
2666
|
* Required CLAide 0.3.2 as 0.3.0 didn't include all the files in the gemspec
|
2582
2667
|
and 0.3.1 was not correctly processed by RubyGems.
|
2583
2668
|
|
2584
|
-
## 0.20.0
|
2669
|
+
## 0.20.0 (2013-05-23)
|
2585
2670
|
|
2586
2671
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.19.1...0.20.0)
|
2587
2672
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.19.1...0.20.0)
|
@@ -2657,7 +2742,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2657
2742
|
[#1046](https://github.com/CocoaPods/CocoaPods/issues/1046)
|
2658
2743
|
[#1039](https://github.com/CocoaPods/CocoaPods/issues/1039)
|
2659
2744
|
|
2660
|
-
## 0.19.1
|
2745
|
+
## 0.19.1 (2013-04-30)
|
2661
2746
|
|
2662
2747
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.19.0...0.19.1)
|
2663
2748
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.19.0...0.19.1)
|
@@ -2670,7 +2755,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2670
2755
|
created resolving interferences in the hooks.
|
2671
2756
|
[#1014](https://github.com/CocoaPods/CocoaPods/issues/1014)
|
2672
2757
|
|
2673
|
-
## 0.19.0
|
2758
|
+
## 0.19.0 (2013-04-30)
|
2674
2759
|
|
2675
2760
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.18.1...0.19.0)
|
2676
2761
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.18.1...0.19.0)
|
@@ -2715,7 +2800,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2715
2800
|
* Fixed issue with .svn folders in copy resources script.
|
2716
2801
|
[#972](https://github.com/CocoaPods/CocoaPods/issues/972)
|
2717
2802
|
|
2718
|
-
## 0.18.1
|
2803
|
+
## 0.18.1 (2013-04-10)
|
2719
2804
|
|
2720
2805
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.18.0...0.18.1)
|
2721
2806
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.18.0...0.18.)
|
@@ -2732,7 +2817,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2732
2817
|
[#919](https://github.com/CocoaPods/CocoaPods/issues/919)
|
2733
2818
|
|
2734
2819
|
|
2735
|
-
## 0.18.0
|
2820
|
+
## 0.18.0 (2013-04-08)
|
2736
2821
|
|
2737
2822
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.17.2...0.18.0)
|
2738
2823
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.17.2...0.18.0)
|
@@ -2778,7 +2863,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2778
2863
|
[#659](https://github.com/CocoaPods/CocoaPods/issues/659)
|
2779
2864
|
|
2780
2865
|
|
2781
|
-
## 0.17.2
|
2866
|
+
## 0.17.2 (2013-04-03)
|
2782
2867
|
|
2783
2868
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.17.1...0.17.2)
|
2784
2869
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.17.1...0.17.2)
|
@@ -2801,7 +2886,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2801
2886
|
* The exclude patterns now handle folders automatically.
|
2802
2887
|
|
2803
2888
|
|
2804
|
-
## 0.17.1
|
2889
|
+
## 0.17.1 (2013-03-30)
|
2805
2890
|
|
2806
2891
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.17.0...0.17.1)
|
2807
2892
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.17.0...0.17.1)
|
@@ -2811,7 +2896,7 @@ For more details, see 📝 [CocoaPods 0.26](http://blog.cocoapods.org/CocoaPods-
|
|
2811
2896
|
* Always create the CACHE_ROOT directory when performing a search.
|
2812
2897
|
[#917](https://github.com/CocoaPods/CocoaPods/issues/917)
|
2813
2898
|
|
2814
|
-
## 0.17.0
|
2899
|
+
## 0.17.0 (2013-03-29)
|
2815
2900
|
|
2816
2901
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.17.0.rc7...0.17.0)
|
2817
2902
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.17.0.rc7...0.17.0)
|
@@ -3067,7 +3152,7 @@ presented below.
|
|
3067
3152
|
- Extracted command-line command & option handling into
|
3068
3153
|
[CLAide](https://github.com/CocoaPods/CLAide).
|
3069
3154
|
|
3070
|
-
## 0.16.4
|
3155
|
+
## 0.16.4 (2013-02-25)
|
3071
3156
|
|
3072
3157
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.3...0.16.4)
|
3073
3158
|
|
@@ -3083,7 +3168,7 @@ presented below.
|
|
3083
3168
|
- Explicitely require `date` in the gemspec for Ruby 2.0.0.
|
3084
3169
|
[34da3f7](https://github.com/CocoaPods/CocoaPods/commit/34da3f792b2a36fafacd4122e29025c9cf2ff38d)
|
3085
3170
|
|
3086
|
-
## 0.16.3
|
3171
|
+
## 0.16.3 (2013-02-20)
|
3087
3172
|
|
3088
3173
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.2...0.16.3) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.4.3...0.5.0)
|
3089
3174
|
|
@@ -3116,7 +3201,7 @@ presented below.
|
|
3116
3201
|
[308941e](https://github.com/CocoaPods/Xcodeproj/commit/308941eeaa3bca817742c774fd584cc5ab1c8f84)
|
3117
3202
|
|
3118
3203
|
|
3119
|
-
## 0.16.2
|
3204
|
+
## 0.16.2 (2013-02-02)
|
3120
3205
|
|
3121
3206
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.1...0.16.2) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.4.1...0.4.3)
|
3122
3207
|
|
@@ -3145,7 +3230,7 @@ presented below.
|
|
3145
3230
|
- Added support for pre-download over Mercurial.
|
3146
3231
|
[#750](https://github.com/CocoaPods/CocoaPods/pull/750)
|
3147
3232
|
|
3148
|
-
## 0.16.1
|
3233
|
+
## 0.16.1 (2013-01-13)
|
3149
3234
|
|
3150
3235
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.0...0.16.1) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.4.0...0.4.1)
|
3151
3236
|
|
@@ -3170,7 +3255,7 @@ presented below.
|
|
3170
3255
|
- Add helpers to get platform name, deployment target, and frameworks build phases
|
3171
3256
|
- Take SDKROOT into account when adding frameworks.
|
3172
3257
|
|
3173
|
-
## 0.16.0
|
3258
|
+
## 0.16.0 (2012-11-22)
|
3174
3259
|
|
3175
3260
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.0.rc5...master)
|
3176
3261
|
|
@@ -3179,7 +3264,7 @@ presented below.
|
|
3179
3264
|
- Use Rake 0.9.4
|
3180
3265
|
[#657](https://github.com/CocoaPods/CocoaPods/issues/657)
|
3181
3266
|
|
3182
|
-
## 0.16.0.rc5
|
3267
|
+
## 0.16.0.rc5 (2012-11-14)
|
3183
3268
|
|
3184
3269
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.0.rc4...0.16.0.rc5)
|
3185
3270
|
|
@@ -3200,7 +3285,7 @@ presented below.
|
|
3200
3285
|
[#614](https://github.com/CocoaPods/CocoaPods/issues/614)
|
3201
3286
|
[#613](https://github.com/CocoaPods/CocoaPods/issues/613)
|
3202
3287
|
|
3203
|
-
## 0.16.0.rc4
|
3288
|
+
## 0.16.0.rc4 (2012-11-14)
|
3204
3289
|
|
3205
3290
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.0.rc3...0.16.0.rc4)
|
3206
3291
|
|
@@ -3209,7 +3294,7 @@ presented below.
|
|
3209
3294
|
- Fix for Rake 0.9.3
|
3210
3295
|
[#657](https://github.com/CocoaPods/CocoaPods/issues/657)
|
3211
3296
|
|
3212
|
-
## 0.16.0.rc3
|
3297
|
+
## 0.16.0.rc3 (2012-11-02)
|
3213
3298
|
|
3214
3299
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.0.rc2...0.16.0.rc3) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.4.0.rc1...0.4.0.rc6)
|
3215
3300
|
|
@@ -3227,7 +3312,7 @@ presented below.
|
|
3227
3312
|
- Added support for PBXReferenceProxy.
|
3228
3313
|
[#612](https://github.com/CocoaPods/CocoaPods/issues/612)
|
3229
3314
|
|
3230
|
-
## 0.16.0.rc2
|
3315
|
+
## 0.16.0.rc2 (2012-10-21)
|
3231
3316
|
|
3232
3317
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.0.rc1...0.16.0.rc2)
|
3233
3318
|
|
@@ -3235,7 +3320,7 @@ presented below.
|
|
3235
3320
|
|
3236
3321
|
- Fix for uninitialized constant Xcodeproj::Constants error.
|
3237
3322
|
|
3238
|
-
## 0.16.0.rc1
|
3323
|
+
## 0.16.0.rc1 (2012-10-21)
|
3239
3324
|
|
3240
3325
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.15.2...0.16.0.rc1) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.3.5...0.4.0.rc1)
|
3241
3326
|
|
@@ -3247,7 +3332,7 @@ presented below.
|
|
3247
3332
|
- Performance improvements in the `Generating support files` phase.
|
3248
3333
|
- Better support for editing existing projects and sorting groups.
|
3249
3334
|
|
3250
|
-
## 0.15.2
|
3335
|
+
## 0.15.2 (2012-10-19)
|
3251
3336
|
|
3252
3337
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.15.1...0.15.2)
|
3253
3338
|
|
@@ -3270,7 +3355,7 @@ presented below.
|
|
3270
3355
|
- Xcodeproj robustness against invalid values, such as malformed UTF8.
|
3271
3356
|
[#592](https://github.com/CocoaPods/CocoaPods/issues/592)
|
3272
3357
|
|
3273
|
-
## 0.15.1
|
3358
|
+
## 0.15.1 (2012-10-04)
|
3274
3359
|
|
3275
3360
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.15.0...0.15.1)
|
3276
3361
|
|
@@ -3289,7 +3374,7 @@ presented below.
|
|
3289
3374
|
[#567](https://github.com/CocoaPods/CocoaPods/issues/567)
|
3290
3375
|
- Fixed an issue that lead to excessively slow sets computation.
|
3291
3376
|
|
3292
|
-
## 0.15.0
|
3377
|
+
## 0.15.0 (2012-10-02)
|
3293
3378
|
|
3294
3379
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.14.0...0.15.0) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.3.3...0.3.4)
|
3295
3380
|
|
@@ -3330,7 +3415,7 @@ presented below.
|
|
3330
3415
|
- Added support for `.hpp` headers.
|
3331
3416
|
[#244](https://github.com/CocoaPods/CocoaPods/issues/244)
|
3332
3417
|
|
3333
|
-
## 0.14.0
|
3418
|
+
## 0.14.0 (2012-09-10)
|
3334
3419
|
|
3335
3420
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.14.0.rc2...0.14.0) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.3.2...0.3.3)
|
3336
3421
|
|
@@ -3347,7 +3432,7 @@ presented below.
|
|
3347
3432
|
- Fixed Xcode 4.4+ artwork warning.
|
3348
3433
|
[Specs#508](https://github.com/CocoaPods/CocoaPods/issues/508)
|
3349
3434
|
|
3350
|
-
## 0.14.0.rc2
|
3435
|
+
## 0.14.0.rc2 (2012-08-30)
|
3351
3436
|
|
3352
3437
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.14.0.rc1...0.14.0.rc2)
|
3353
3438
|
|
@@ -3360,7 +3445,7 @@ presented below.
|
|
3360
3445
|
- Fixed the `uninitialized constant Pod::Lockfile::Digest` error.
|
3361
3446
|
[#484](https://github.com/CocoaPods/CocoaPods/issues/484)
|
3362
3447
|
|
3363
|
-
## 0.14.0.rc1
|
3448
|
+
## 0.14.0.rc1 (2012-08-28)
|
3364
3449
|
|
3365
3450
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.13.0...0.14.0.rc1) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.3.1...0.3.2)
|
3366
3451
|
|
@@ -3417,7 +3502,7 @@ presented below.
|
|
3417
3502
|
workaround, remove their folder stored in `Pods`.
|
3418
3503
|
|
3419
3504
|
|
3420
|
-
## 0.13.0
|
3505
|
+
## 0.13.0 (2012-08-22)
|
3421
3506
|
|
3422
3507
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.12.0...0.13.0)
|
3423
3508
|
|
@@ -3437,7 +3522,7 @@ presented below.
|
|
3437
3522
|
[#462](https://github.com/CocoaPods/CocoaPods/issues/462)
|
3438
3523
|
|
3439
3524
|
|
3440
|
-
## 0.12.0
|
3525
|
+
## 0.12.0 (2012-08-21)
|
3441
3526
|
|
3442
3527
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.11.1...0.12.0)
|
3443
3528
|
|
@@ -3459,7 +3544,7 @@ presented below.
|
|
3459
3544
|
groups. [#466](https://github.com/CocoaPods/CocoaPods/pull/466)
|
3460
3545
|
|
3461
3546
|
|
3462
|
-
## 0.11.1
|
3547
|
+
## 0.11.1 (2012-08-09)
|
3463
3548
|
|
3464
3549
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.11.0...0.11.1)
|
3465
3550
|
|
@@ -3471,7 +3556,7 @@ presented below.
|
|
3471
3556
|
- Fixed SVN support for the head version. [#432]
|
3472
3557
|
|
3473
3558
|
|
3474
|
-
## 0.11.0
|
3559
|
+
## 0.11.0 (2012-08-08)
|
3475
3560
|
|
3476
3561
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.10.0...0.11.0)
|
3477
3562
|
|
@@ -3491,7 +3576,7 @@ presented below.
|
|
3491
3576
|
- Resolved an issue that lead to git error messages in the error report.
|
3492
3577
|
|
3493
3578
|
|
3494
|
-
## 0.10.0
|
3579
|
+
## 0.10.0 (2012-07-29)
|
3495
3580
|
|
3496
3581
|
[CocoaPods](http://git.io/4i75YA)
|
3497
3582
|
|
@@ -3515,7 +3600,7 @@ presented below.
|
|
3515
3600
|
- Support `tar.gz` as filename in a HTTP source. [#428](http://git.io/qhwKkA)
|
3516
3601
|
|
3517
3602
|
|
3518
|
-
## 0.9.2
|
3603
|
+
## 0.9.2 (2012-07-16)
|
3519
3604
|
|
3520
3605
|
[CocoaPods](http://git.io/AVlRKg) • [Xcodeproj](http://git.io/xHbc0w)
|
3521
3606
|
|
@@ -3525,7 +3610,7 @@ presented below.
|
|
3525
3610
|
- Raise an informative error message when the platform in the `Podfile` is omitted or incorrect. [#403](http://git.io/k5EcUQ)
|
3526
3611
|
|
3527
3612
|
|
3528
|
-
## 0.9.1
|
3613
|
+
## 0.9.1 (2012-07-14)
|
3529
3614
|
|
3530
3615
|
[CocoaPods](http://git.io/_kqAbw)
|
3531
3616
|
|
@@ -3534,7 +3619,7 @@ presented below.
|
|
3534
3619
|
- CocoaPods 0.9.x needs Xcodeproj 0.3.0.
|
3535
3620
|
|
3536
3621
|
|
3537
|
-
## 0.9.0
|
3622
|
+
## 0.9.0 (2012-07-14)
|
3538
3623
|
|
3539
3624
|
[CocoaPods](http://git.io/kucJQw) • [Xcodeproj](http://git.io/5eLL8g)
|
3540
3625
|
|
@@ -3552,7 +3637,7 @@ presented below.
|
|
3552
3637
|
related to prerelease version comparisons. Unfortunately, OS X >= 10.7 ships with 1.3.6. [#398](http://git.io/Lr7DoA)
|
3553
3638
|
|
3554
3639
|
|
3555
|
-
## 0.8.0
|
3640
|
+
## 0.8.0 (2012-07-09)
|
3556
3641
|
|
3557
3642
|
[CocoaPods](http://git.io/RgMF3w) • [Xcodeproj](http://git.io/KBKE_Q)
|
3558
3643
|
|
@@ -3571,7 +3656,7 @@ pod 'Reachability', '~> 2.0.4'
|
|
3571
3656
|
- Properly quote all paths given to Git.
|
3572
3657
|
|
3573
3658
|
|
3574
|
-
## 0.7.0
|
3659
|
+
## 0.7.0 (2012-07-06)
|
3575
3660
|
|
3576
3661
|
[CocoaPods](http://git.io/Agia6A) • [Xcodeproj](http://git.io/mlqquw)
|
3577
3662
|
|
@@ -3590,7 +3675,7 @@ pod 'Reachability', '~> 2.0.4'
|
|
3590
3675
|
- CocoaPods is now case insensitive.
|
3591
3676
|
|
3592
3677
|
|
3593
|
-
## 0.6.1
|
3678
|
+
## 0.6.1 (2012-07-01)
|
3594
3679
|
|
3595
3680
|
[CocoaPods](http://git.io/45wFjw) • [Xcodeproj](http://git.io/rRA4XQ)
|
3596
3681
|
|
@@ -3602,7 +3687,7 @@ pod 'Reachability', '~> 2.0.4'
|
|
3602
3687
|
- Fixed a bug that caused duplication of system framworks.
|
3603
3688
|
|
3604
3689
|
|
3605
|
-
## 0.6.0
|
3690
|
+
## 0.6.0 (2012-07-01)
|
3606
3691
|
|
3607
3692
|
A full list of all the changes since 0.5.1 can be found [here][6].
|
3608
3693
|
|
@@ -3808,7 +3893,7 @@ podspec, then update these method calls.
|
|
3808
3893
|
* Added weak quoting to `ibtool` input paths.
|
3809
3894
|
|
3810
3895
|
|
3811
|
-
## 0.5.0
|
3896
|
+
## 0.5.0 (2011-11-22)
|
3812
3897
|
|
3813
3898
|
No longer requires MacRuby. Runs on MRI 1.8.7 (OS X system version) and 1.9.3.
|
3814
3899
|
|
@@ -3820,7 +3905,7 @@ A full list of all the changes since 0.3.0 can be found [here][7].
|
|
3820
3905
|
Oops, accidentally skipped this version.
|
3821
3906
|
|
3822
3907
|
|
3823
|
-
## 0.3.0
|
3908
|
+
## 0.3.0 (2011-11-12)
|
3824
3909
|
|
3825
3910
|
### Multiple targets
|
3826
3911
|
|