cocoapods 0.23.0.rc1 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3567ec1832df6804c3e4e6d8e1914003910fdb18
4
- data.tar.gz: 40decef521b811cd03fa6859477b3409dbdab2d8
3
+ metadata.gz: a84359c5124c149ebe91ff9dfc1c13365810c69f
4
+ data.tar.gz: c6603183ff3a4ff61f66adf32555d2eb031d4d0f
5
5
  SHA512:
6
- metadata.gz: d7d7136f56b6ee03c44ec8915852f67e4ae42dc3ab97b99c1d6d7b56bb1d73af9da153916403e03de6eaba935740e28f1046e1217f94e75187d39fbc56089e61
7
- data.tar.gz: 01e3d5dc91d7cd0a31461f15c70509aff2a6171a98b880f259a77f0fc58d56ba652fd62b250c79700ece2383170d4f90d689867ff670c8e51e375249f18841da
6
+ metadata.gz: e94d2d8af92dc3cde69a47ad25243848c55d5a5f5bd37d30dd75a302a1c6952110b8a4bb504cefba6662893f44a5633bc44a7c45a42c68e171e0fa1ce8e2a16c
7
+ data.tar.gz: e4b4ff2b5023866af419cf77ddef26fef893b5cdc4652d112d4903d98dee98b532275d49ea4207cfb3284eab5e149eaa41b6d801bad2a806d5b004a15dac834f
@@ -4,29 +4,45 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
4
4
 
5
5
  ## Master
6
6
 
7
- ## 0.23.0.rc1
7
+ ## 0.23.0
8
8
 
9
9
  ###### Enhancements
10
+ [CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.3...0.23.0.rc1)
11
+ • [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.22.3...0.23.0.rc1)
12
+ • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.8.1...0.9.0)
13
+ • [cocoapods-downloader](https://github.com/CocoaPods/cocoapods-downloader/compare/0.1.1...0.1.2)
10
14
 
11
- * Added `resource_bundles` attribute to Specification DSL.
12
- [#743](https://github.com/CocoaPods/CocoaPods/issues/743),
15
+ * Added `prepare_command` attribute to Specification DSL. The prepare command
16
+ will replace the `pre_install` hook. The `post_install` hook has also been
17
+ deprecated.
18
+ [#1247](https://github.com/CocoaPods/CocoaPods/issues/1247)
19
+
20
+ The reason we provided Ruby hooks at first, was because we wanted to offer
21
+ the option to make any required configuration possible. By now, however, we
22
+ have a pretty good idea of the use-cases and are therefore locking down the
23
+ freedom that was once available. In turn, we’re adding attributes that can
24
+ replace the most common use-cases. _(See the enhancements directly following
25
+ this entry for more info)._
26
+
27
+ The second reason we need to lock this down is because this is the last
28
+ remaining obstacle to fully serialize specifications, which we need in order
29
+ to move to a ‘spec push’ web-service in the future.
30
+
31
+ * Added `resource_bundles` attribute to the Specification DSL.
32
+ [#743](https://github.com/CocoaPods/CocoaPods/issues/743)
13
33
  [#1186](https://github.com/CocoaPods/CocoaPods/issues/1186)
14
34
 
15
- * Added `vendored_frameworks` attribute to Specification DSL.
16
- [#809](https://github.com/CocoaPods/CocoaPods/issues/809),
35
+ * Added `vendored_frameworks` attribute to the Specification DSL.
36
+ [#809](https://github.com/CocoaPods/CocoaPods/issues/809)
17
37
  [#1075](https://github.com/CocoaPods/CocoaPods/issues/1075)
18
38
 
19
- * Added `vendored_libraries` attribute to Specification DSL.
20
- [#809](https://github.com/CocoaPods/CocoaPods/issues/809),
39
+ * Added `vendored_libraries` attribute to the Specification DSL.
40
+ [#809](https://github.com/CocoaPods/CocoaPods/issues/809)
21
41
  [#1075](https://github.com/CocoaPods/CocoaPods/issues/1075)
22
42
 
23
- * Added `prepare_command` attribute to Specification DSL. The prepare command
24
- will replace the pre_install hook. The post_install hook has been deprecated.
25
- [#1247](https://github.com/CocoaPods/CocoaPods/issues/1247)
26
-
27
43
  * Restructured `.cocoapods` folder to contain repos in a subdirectory.
28
- [#1150](https://github.com/CocoaPods/CocoaPods/issues/1150)
29
44
  [Ian Ynda-Hummel](https://github.com/ianyh)
45
+ [#1150](https://github.com/CocoaPods/CocoaPods/issues/1150)
30
46
 
31
47
  * Improved `pod spec create` template.
32
48
  [#1223](https://github.com/CocoaPods/CocoaPods/issues/1223)
@@ -42,18 +58,19 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
42
58
  project.
43
59
  [#1155](https://github.com/CocoaPods/CocoaPods/issues/1155)
44
60
 
45
- * Removed punctuation check from specification validations.
46
- [#1155](https://github.com/CocoaPods/CocoaPods/issues/1155)
61
+ * Removed punctuation check from the specification validations.
62
+ [#1242](https://github.com/CocoaPods/CocoaPods/issues/1242)
47
63
 
48
- * Deprecated the `documentation` DSL attribute of the podspec format.
64
+ * Deprecated the `documentation` attribute of the Specification DSL.
49
65
  [Core#20](https://github.com/CocoaPods/Core/issues/20)
50
66
 
51
67
  ###### Bug Fixes
52
68
 
53
69
  * Fix copy resource script issue related to filenames with spaces.
54
- [#1231](https://github.com/CocoaPods/CocoaPods/issues/1231)
70
+ [Denis Hennessy](https://github.com/dhennessy)
71
+ [#1231](https://github.com/CocoaPods/CocoaPods/issues/1231)
72
+
55
73
 
56
- <!------------------------------------------------------------------------ ->
57
74
 
58
75
  ## 0.22.3
59
76
  [CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.2...0.22.3)
@@ -86,7 +103,7 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
86
103
  * Fix handling of spaces in paths when compiling xcdatamodel(d) files.
87
104
  [#1201](https://github.com/CocoaPods/CocoaPods/pull/1201)
88
105
 
89
- <!------------------------------------------------------------------------ ->
106
+
90
107
 
91
108
  ## 0.22.2
92
109
  [CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.1...0.22.2)
@@ -1,6 +1,6 @@
1
1
  module Pod
2
2
  # The version of the cocoapods command line tool.
3
3
  #
4
- VERSION = '0.23.0.rc1' unless defined? Pod::VERSION
4
+ VERSION = '0.23.0' unless defined? Pod::VERSION
5
5
  end
6
6
 
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.23.0.rc1
4
+ version: 0.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-02 00:00:00.000000000 Z
12
+ date: 2013-08-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cocoapods-core
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 0.23.0.rc1
20
+ version: 0.23.0
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.23.0.rc1
27
+ version: 0.23.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: claide
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -234,28 +234,39 @@ homepage: https://github.com/CocoaPods/CocoaPods
234
234
  licenses:
235
235
  - MIT
236
236
  metadata: {}
237
- post_install_message: "\nCHANGELOG:\n\n## 0.23.0.rc1\n\n###### Enhancements\n\n* Added
238
- `resource_bundles` attribute to Specification DSL. \n [#743](https://github.com/CocoaPods/CocoaPods/issues/743),\n
237
+ post_install_message: "\nCHANGELOG:\n\n## 0.23.0\n\n###### Enhancements\n[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.3...0.23.0.rc1)\n
238
+ [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.22.3...0.23.0.rc1)\n
239
+ [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.8.1...0.9.0)\n• [cocoapods-downloader](https://github.com/CocoaPods/cocoapods-downloader/compare/0.1.1...0.1.2)\n\n*
240
+ Added `prepare_command` attribute to Specification DSL. The prepare command\n will
241
+ replace the `pre_install` hook. The `post_install` hook has also been\n deprecated.\n
242
+ \ [#1247](https://github.com/CocoaPods/CocoaPods/issues/1247)\n\n The reason we
243
+ provided Ruby hooks at first, was because we wanted to offer\n the option to make
244
+ any required configuration possible. By now, however, we\n have a pretty good idea
245
+ of the use-cases and are therefore locking down the\n freedom that was once available.
246
+ In turn, we’re adding attributes that can\n replace the most common use-cases.
247
+ _(See the enhancements directly following\n this entry for more info)._\n\n The
248
+ second reason we need to lock this down is because this is the last\n remaining
249
+ obstacle to fully serialize specifications, which we need in order\n to move to
250
+ a ‘spec push’ web-service in the future.\n\n* Added `resource_bundles` attribute
251
+ to the Specification DSL. \n [#743](https://github.com/CocoaPods/CocoaPods/issues/743)\n
239
252
  \ [#1186](https://github.com/CocoaPods/CocoaPods/issues/1186)\n\n* Added `vendored_frameworks`
240
- attribute to Specification DSL. \n [#809](https://github.com/CocoaPods/CocoaPods/issues/809),\n
253
+ attribute to the Specification DSL. \n [#809](https://github.com/CocoaPods/CocoaPods/issues/809)\n
241
254
  \ [#1075](https://github.com/CocoaPods/CocoaPods/issues/1075)\n\n* Added `vendored_libraries`
242
- attribute to Specification DSL. \n [#809](https://github.com/CocoaPods/CocoaPods/issues/809),\n
243
- \ [#1075](https://github.com/CocoaPods/CocoaPods/issues/1075)\n\n* Added `prepare_command`
244
- attribute to Specification DSL. The prepare command\n will replace the pre_install
245
- hook. The post_install hook has been deprecated. \n [#1247](https://github.com/CocoaPods/CocoaPods/issues/1247)\n\n*
246
- Restructured `.cocoapods` folder to contain repos in a subdirectory. \n [#1150](https://github.com/CocoaPods/CocoaPods/issues/1150)\n
247
- \ [Ian Ynda-Hummel](https://github.com/ianyh)\n\n* Improved `pod spec create` template.
248
- \ \n [#1223](https://github.com/CocoaPods/CocoaPods/issues/1223)\n\n* Added copy&paste-friendly
249
- dependency to `pod search`. \n [#1073](https://github.com/CocoaPods/CocoaPods/issues/1073)\n\n*
255
+ attribute to the Specification DSL. \n [#809](https://github.com/CocoaPods/CocoaPods/issues/809)\n
256
+ \ [#1075](https://github.com/CocoaPods/CocoaPods/issues/1075)\n\n* Restructured
257
+ `.cocoapods` folder to contain repos in a subdirectory. \n [Ian Ynda-Hummel](https://github.com/ianyh)\n
258
+ \ [#1150](https://github.com/CocoaPods/CocoaPods/issues/1150) \n\n* Improved `pod
259
+ spec create` template. \n [#1223](https://github.com/CocoaPods/CocoaPods/issues/1223)\n\n*
260
+ Added copy&paste-friendly dependency to `pod search`. \n [#1073](https://github.com/CocoaPods/CocoaPods/issues/1073)\n\n*
250
261
  Improved performance of the installation of Pods with git\n sources which specify
251
262
  a tag. \n [#1077](https://github.com/CocoaPods/CocoaPods/issues/1077)\n\n* Core
252
263
  Data `xcdatamodeld` files are now properly referenced from the Pods\n project.
253
264
  \ \n [#1155](https://github.com/CocoaPods/CocoaPods/issues/1155)\n\n* Removed punctuation
254
- check from specification validations. \n [#1155](https://github.com/CocoaPods/CocoaPods/issues/1155)\n\n*
255
- Deprecated the `documentation` DSL attribute of the podspec format. \n [Core#20](https://github.com/CocoaPods/Core/issues/20)\n\n######
265
+ check from the specification validations. \n [#1242](https://github.com/CocoaPods/CocoaPods/issues/1242)\n\n*
266
+ Deprecated the `documentation` attribute of the Specification DSL. \n [Core#20](https://github.com/CocoaPods/Core/issues/20)\n\n######
256
267
  Bug Fixes\n\n* Fix copy resource script issue related to filenames with spaces.
257
- \ \n [#1231](https://github.com/CocoaPods/CocoaPods/issues/1231)\n\n<!------------------------------------------------------------------------
258
- ->\n\n"
268
+ \ \n [Denis Hennessy](https://github.com/dhennessy)\n [#1231](https://github.com/CocoaPods/CocoaPods/issues/1231)
269
+ \ \n\n\n\n"
259
270
  rdoc_options: []
260
271
  require_paths:
261
272
  - lib