rubygems-update 3.2.1 → 3.2.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +4 -4
  2. data/{History.txt → CHANGELOG.md} +485 -422
  3. data/Manifest.txt +31 -27
  4. data/Rakefile +11 -15
  5. data/bundler/CHANGELOG.md +55 -2
  6. data/bundler/bundler.gemspec +1 -1
  7. data/bundler/lib/bundler.rb +3 -7
  8. data/bundler/lib/bundler/build_metadata.rb +2 -2
  9. data/bundler/lib/bundler/cli.rb +2 -5
  10. data/bundler/lib/bundler/cli/gem.rb +2 -0
  11. data/bundler/lib/bundler/cli/install.rb +14 -5
  12. data/bundler/lib/bundler/cli/update.rb +1 -1
  13. data/bundler/lib/bundler/compact_index_client/cache.rb +5 -13
  14. data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
  15. data/bundler/lib/bundler/compact_index_client/updater.rb +0 -8
  16. data/bundler/lib/bundler/definition.rb +28 -21
  17. data/bundler/lib/bundler/dep_proxy.rb +15 -8
  18. data/bundler/lib/bundler/gem_helper.rb +3 -3
  19. data/bundler/lib/bundler/gem_helpers.rb +30 -24
  20. data/bundler/lib/bundler/gem_version_promoter.rb +2 -2
  21. data/bundler/lib/bundler/lazy_specification.rb +10 -11
  22. data/bundler/{man → lib/bundler/man}/bundle-add.1 +0 -0
  23. data/bundler/{man → lib/bundler/man}/bundle-binstubs.1 +0 -0
  24. data/bundler/{man → lib/bundler/man}/bundle-cache.1 +0 -0
  25. data/bundler/{man → lib/bundler/man}/bundle-check.1 +0 -0
  26. data/bundler/{man → lib/bundler/man}/bundle-clean.1 +0 -0
  27. data/bundler/{man → lib/bundler/man}/bundle-config.1 +0 -0
  28. data/bundler/{man → lib/bundler/man}/bundle-doctor.1 +0 -0
  29. data/bundler/{man → lib/bundler/man}/bundle-exec.1 +0 -0
  30. data/bundler/{man → lib/bundler/man}/bundle-gem.1 +0 -0
  31. data/bundler/{man → lib/bundler/man}/bundle-info.1 +0 -0
  32. data/bundler/{man → lib/bundler/man}/bundle-init.1 +0 -0
  33. data/bundler/{man → lib/bundler/man}/bundle-inject.1 +0 -0
  34. data/bundler/{man → lib/bundler/man}/bundle-install.1 +0 -0
  35. data/bundler/{man → lib/bundler/man}/bundle-list.1 +0 -0
  36. data/bundler/{man → lib/bundler/man}/bundle-lock.1 +0 -0
  37. data/bundler/{man → lib/bundler/man}/bundle-open.1 +0 -0
  38. data/bundler/{man → lib/bundler/man}/bundle-outdated.1 +0 -0
  39. data/bundler/{man → lib/bundler/man}/bundle-platform.1 +0 -0
  40. data/bundler/{man → lib/bundler/man}/bundle-pristine.1 +0 -0
  41. data/bundler/{man → lib/bundler/man}/bundle-remove.1 +0 -0
  42. data/bundler/{man → lib/bundler/man}/bundle-show.1 +0 -0
  43. data/bundler/{man → lib/bundler/man}/bundle-update.1 +0 -0
  44. data/bundler/{man → lib/bundler/man}/bundle-viz.1 +0 -0
  45. data/bundler/{man → lib/bundler/man}/bundle.1 +0 -0
  46. data/bundler/{man → lib/bundler/man}/gemfile.5 +0 -0
  47. data/bundler/{man → lib/bundler/man}/index.txt +0 -0
  48. data/bundler/lib/bundler/resolver.rb +10 -3
  49. data/bundler/lib/bundler/resolver/spec_group.rb +17 -19
  50. data/bundler/lib/bundler/rubygems_ext.rb +16 -0
  51. data/bundler/lib/bundler/rubygems_integration.rb +0 -5
  52. data/bundler/lib/bundler/source/git.rb +18 -16
  53. data/bundler/lib/bundler/source/git/git_proxy.rb +54 -49
  54. data/bundler/lib/bundler/source/path/installer.rb +2 -0
  55. data/bundler/lib/bundler/source/rubygems.rb +10 -1
  56. data/bundler/lib/bundler/spec_set.rb +6 -9
  57. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +1 -1
  58. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +1 -1
  59. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +3 -0
  60. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +10 -6
  61. data/bundler/lib/bundler/version.rb +1 -1
  62. data/lib/rubygems.rb +2 -2
  63. data/lib/rubygems/commands/owner_command.rb +0 -1
  64. data/lib/rubygems/commands/push_command.rb +0 -1
  65. data/lib/rubygems/commands/setup_command.rb +16 -62
  66. data/lib/rubygems/commands/yank_command.rb +0 -1
  67. data/lib/rubygems/dependency_installer.rb +1 -0
  68. data/lib/rubygems/ext/builder.rb +5 -4
  69. data/lib/rubygems/ext/cmake_builder.rb +1 -2
  70. data/lib/rubygems/ext/configure_builder.rb +1 -2
  71. data/lib/rubygems/ext/rake_builder.rb +1 -1
  72. data/lib/rubygems/gemcutter_utilities.rb +22 -17
  73. data/lib/rubygems/installer.rb +0 -23
  74. data/lib/rubygems/platform.rb +0 -4
  75. data/lib/rubygems/remote_fetcher.rb +4 -2
  76. data/lib/rubygems/request_set.rb +2 -13
  77. data/lib/rubygems/requirement.rb +1 -1
  78. data/lib/rubygems/resolver.rb +6 -1
  79. data/lib/rubygems/resolver/api_set.rb +28 -19
  80. data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
  81. data/lib/rubygems/resolver/api_specification.rb +4 -3
  82. data/lib/rubygems/resolver/best_set.rb +2 -2
  83. data/lib/rubygems/resolver/index_specification.rb +18 -0
  84. data/lib/rubygems/resolver/installer_set.rb +57 -7
  85. data/lib/rubygems/resolver/spec_specification.rb +14 -0
  86. data/lib/rubygems/resolver/specification.rb +12 -0
  87. data/lib/rubygems/source.rb +10 -6
  88. data/lib/rubygems/specification.rb +18 -14
  89. data/lib/rubygems/test_case.rb +17 -4
  90. data/lib/rubygems/test_utilities.rb +6 -5
  91. data/rubygems-update.gemspec +2 -2
  92. data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
  93. data/test/rubygems/test_gem.rb +5 -0
  94. data/test/rubygems/test_gem_commands_install_command.rb +131 -0
  95. data/test/rubygems/test_gem_commands_push_command.rb +41 -2
  96. data/test/rubygems/test_gem_commands_setup_command.rb +21 -37
  97. data/test/rubygems/test_gem_dependency_installer.rb +27 -47
  98. data/test/rubygems/test_gem_ext_builder.rb +30 -6
  99. data/test/rubygems/test_gem_ext_cmake_builder.rb +2 -4
  100. data/test/rubygems/test_gem_ext_configure_builder.rb +2 -2
  101. data/test/rubygems/test_gem_ext_rake_builder.rb +25 -0
  102. data/test/rubygems/test_gem_installer.rb +6 -60
  103. data/test/rubygems/test_gem_platform.rb +8 -0
  104. data/test/rubygems/test_gem_remote_fetcher.rb +1 -1
  105. data/test/rubygems/test_gem_requirement.rb +34 -0
  106. data/test/rubygems/test_gem_resolver_api_set.rb +26 -52
  107. data/test/rubygems/test_gem_resolver_api_specification.rb +3 -3
  108. data/test/rubygems/test_gem_resolver_best_set.rb +26 -3
  109. data/test/rubygems/test_gem_source.rb +2 -2
  110. data/test/rubygems/test_gem_source_subpath_problem.rb +2 -2
  111. data/test/rubygems/test_gem_specification.rb +9 -3
  112. data/test/test_changelog_generator.rb +17 -0
  113. metadata +35 -55
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4528e626d1fed9c0dcbc5c43bd3145e3fe11ad95331342b6d73d48e7d1173e42
4
- data.tar.gz: bfb5d478718b397bb6b355571bc3349db1c8e2cded98ea5889f70a3a0fe3ca32
3
+ metadata.gz: '093385346fd2dadfc857a5fcbea99a97af3067867975c40fc7221369cc2bae20'
4
+ data.tar.gz: 42de60d07aeefb67549285a2d76c01aabe903747affcc348bd8ec1d3ad079469
5
5
  SHA512:
6
- metadata.gz: 5692fa6e596bcd8a9d702451d5c2f7f52b336e4c367ba9cc050f1f56feab4c7d2d5e705e286cc70eeec2b042292e06878083000d3852df18e966305c543ceb6f
7
- data.tar.gz: 4493b5d9b76a7867c7dc81f8bde7d7078bc836d1bded817424024d341ff491b38cb8a46ada2047b6c1788a78e18313b66fb8a070e059275ed46dd3d7cda5c8b6
6
+ metadata.gz: 3db9aa4bd25ce7f35219c7c3a56c0937f02c31c1d40ff0b51cc4077a7624a44036e01ae31beecac396146021e1063603675956d136670517bdb285d927e2879e
7
+ data.tar.gz: 7a0be9453ed03fc389f4a31e5a39907b1c4295cdffb979f91c9ac77acb3ec66950424992a3da187bfde4ec5a5f1d7d9797ad9c58404039aaf8e5db98f02685cb
@@ -1,20 +1,83 @@
1
- === 3.2.1 / 2020-12-14
1
+ # 3.2.6 / 2021-01-18
2
2
 
3
- Enhancements:
3
+ ## Enhancements:
4
+
5
+ * Fix `Gem::Platform#inspect` showing duplicate information. Pull request
6
+ #4276 by deivid-rodriguez
7
+
8
+ ## Bug fixes:
9
+
10
+ * Swallow any system call error in `ensure_gem_subdirs` to support jruby
11
+ embedded paths. Pull request #4291 by kares
12
+ * Restore accepting custom make command with extra options as the `make`
13
+ env variable. Pull request #4271 by terceiro
14
+
15
+ # 3.2.5 / 2021-01-11
16
+
17
+ ## Bug fixes:
18
+
19
+ * Don't load more specs after the whole set of specs has been setup. Pull
20
+ request #4262 by deivid-rodriguez
21
+ * Fix broken `bundler` executable after `gem update --system`. Pull
22
+ request #4221 by deivid-rodriguez
23
+
24
+ # 3.2.4 / 2020-12-31
25
+
26
+ ## Enhancements:
27
+
28
+ * Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
29
+ deivid-rodriguez
30
+ * Never spawn subshells when building extensions. Pull request #4190 by
31
+ deivid-rodriguez
32
+
33
+ ## Bug fixes:
34
+
35
+ * Fix fallback to the old index and installation from it not working. Pull
36
+ request #4213 by deivid-rodriguez
37
+ * Fix installing from source on truffleruby. Pull request #4201 by
38
+ deivid-rodriguez
39
+
40
+ # 3.2.3 / 2020-12-22
41
+
42
+ ## Enhancements:
43
+
44
+ * Fix misspellings in default API key name. Pull request #4177 by hsbt
45
+
46
+ ## Bug fixes:
47
+
48
+ * Respect `required_ruby_version` and `required_rubygems_version`
49
+ constraints when looking for `gem install` candidates. Pull request #4110
50
+ by deivid-rodriguez
51
+
52
+ # 3.2.2 / 2020-12-17
53
+
54
+ ## Bug fixes:
55
+
56
+ * Fix issue where CLI commands making more than one request to
57
+ rubygems.org needing an OTP code would crash or ask for the code twice.
58
+ Pull request #4162 by sonalkr132
59
+ * Fix building rake extensions that require openssl. Pull request #4165 by
60
+ deivid-rodriguez
61
+ * Fix `gem update --system` displaying too many changelog entries. Pull
62
+ request #4145 by deivid-rodriguez
63
+
64
+ # 3.2.1 / 2020-12-14
65
+
66
+ ## Enhancements:
4
67
 
5
68
  * Added help message for gem i webrick in gem server command. Pull request
6
69
  #4117 by hsbt
7
70
 
8
- Bug fixes:
71
+ ## Bug fixes:
9
72
 
10
73
  * Added the missing loading of fileutils same as load_specs. Pull request
11
74
  #4124 by hsbt
12
75
  * Fix Resolver::APISet to always include prereleases when necessary. Pull
13
76
  request #4113 by deivid-rodriguez
14
77
 
15
- === 3.2.0 / 2020-12-7
78
+ # 3.2.0 / 2020-12-07
16
79
 
17
- Enhancements:
80
+ ## Enhancements:
18
81
 
19
82
  * Do not override Kernel#warn when there is no need. Pull request #4075 by
20
83
  eregon
@@ -33,7 +96,7 @@ Enhancements:
33
96
  * Pass more information when comparing platforms. Pull request #3817 by
34
97
  eregon
35
98
 
36
- Bug fixes:
99
+ ## Bug fixes:
37
100
 
38
101
  * Use better owner & group for files in rubygems package. Pull request
39
102
  #4065 by deivid-rodriguez
@@ -59,18 +122,18 @@ Bug fixes:
59
122
  * Make `--default` and `--install-dir` options to `gem install` play nice
60
123
  together. Pull request #3906 by deivid-rodriguez
61
124
 
62
- Deprecations:
125
+ ## Deprecations:
63
126
 
64
127
  * Deprecate server command. Pull request #3868 by bronzdoc
65
128
 
66
- Performance:
129
+ ## Performance:
67
130
 
68
131
  * Don't change ruby process CWD when building extensions. Pull request
69
132
  #3498 by deivid-rodriguez
70
133
 
71
- === 3.2.0.rc.2 / 2020-10-8
134
+ # 3.2.0.rc.2 / 2020-10-08
72
135
 
73
- Enhancements:
136
+ ## Enhancements:
74
137
 
75
138
  * Make --dry-run flag consistent across rubygems commands. Pull request
76
139
  #3867 by bronzdoc
@@ -87,7 +150,7 @@ Enhancements:
87
150
  * Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
88
151
  eregon
89
152
 
90
- Bug fixes:
153
+ ## Bug fixes:
91
154
 
92
155
  * Add missing fileutils require. Pull request #3911 by deivid-rodriguez
93
156
  * Fix false positive warning on Windows when PATH has
@@ -99,7 +162,7 @@ Bug fixes:
99
162
  * `gem install --user` fails with `Gem::FilePermissionError` on the system
100
163
  plugins directory. Pull request #3804 by nobu
101
164
 
102
- Performance:
165
+ ## Performance:
103
166
 
104
167
  * Avoid duplicated generation of APISpecification objects. Pull request
105
168
  #3940 by mame
@@ -109,9 +172,9 @@ Performance:
109
172
  casperisfine
110
173
  * Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
111
174
 
112
- === 3.2.0.rc.1 / 2020-07-04
175
+ # 3.2.0.rc.1 / 2020-07-04
113
176
 
114
- Enhancements:
177
+ ## Enhancements:
115
178
 
116
179
  * Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
117
180
  * Rework plugins system and speed up rubygems. Pull request #3108 by David
@@ -158,7 +221,7 @@ Enhancements:
158
221
  * Only rescue the errors we actually want to rescue. Pull request #3156 by
159
222
  David Rodríguez.
160
223
 
161
- Bug fixes:
224
+ ## Bug fixes:
162
225
 
163
226
  * Accept not only /usr/bin/env but also /bin/env in some tests. Pull
164
227
  request #3422 by Yusuke Endoh.
@@ -180,12 +243,12 @@ Bug fixes:
180
243
  * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
181
244
  Rodríguez.
182
245
 
183
- Deprecations:
246
+ ## Deprecations:
184
247
 
185
248
  * Set deprecation warning on query command. Pull request #2967 by Luis
186
249
  Sagastume.
187
250
 
188
- Breaking changes:
251
+ ## Breaking changes:
189
252
 
190
253
  * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
191
254
  * Minitest cleanup. Pull request #3445 by David Rodríguez.
@@ -212,9 +275,9 @@ Breaking changes:
212
275
  * Requiring rubygems/source_specific_file is deprecated, remove it. Pull
213
276
  request #3114 by Luis Sagastume.
214
277
 
215
- === 3.1.4 / 2020-06-03
278
+ # 3.1.4 / 2020-06-03
216
279
 
217
- Enhancements:
280
+ ## Enhancements:
218
281
 
219
282
  * Deprecate rubyforge_project attribute only during build
220
283
  time. Pull request #3609 by Josef Šimánek.
@@ -223,9 +286,9 @@ Enhancements:
223
286
  * Remove failing ubuntu-rvm CI flow. Pull request #3611 by
224
287
  Josef Šimánek.
225
288
 
226
- === 3.1.3 / 2020-05-05
289
+ # 3.1.3 / 2020-05-05
227
290
 
228
- Enhancements:
291
+ ## Enhancements:
229
292
 
230
293
  * Resolver: require NameTuple before use. Pull request #3171 by Olle
231
294
  Jonsson.
@@ -236,7 +299,7 @@ Enhancements:
236
299
  * Add tests to check if Gem.ruby_version works with ruby git master.
237
300
  Pull request #3049 by Yusuke Endoh.
238
301
 
239
- Bug fixes:
302
+ ## Bug fixes:
240
303
 
241
304
  * Fix platform comparison check in #contains_requirable_file?. Pull
242
305
  request #3495 by Benoit Daloze.
@@ -248,9 +311,9 @@ Bug fixes:
248
311
  * Fix gem install from a gemdeps file with complex dependencies.
249
312
  Pull request #3054 by Luis Sagastume.
250
313
 
251
- === 3.1.2 / 2019-12-20
314
+ # 3.1.2 / 2019-12-20
252
315
 
253
- Enhancements:
316
+ ## Enhancements:
254
317
 
255
318
  * Restore non prompting `gem update --system` behavior. Pull request #3040
256
319
  by David Rodríguez.
@@ -260,24 +323,24 @@ Enhancements:
260
323
  Pull request #3042 by David Rodríguez.
261
324
  * Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
262
325
 
263
- Bug fixes:
326
+ ## Bug fixes:
264
327
 
265
328
  * Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
266
329
  * Fix `gem update --system --force`. Pull request #3035 by David
267
330
  Rodríguez.
268
331
  * Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
269
332
 
270
- === 3.1.1 / 2019-12-16
333
+ # 3.1.1 / 2019-12-16
271
334
 
272
- Bug fixes:
335
+ ## Bug fixes:
273
336
 
274
337
  * Vendor Bundler 2.1.0 again. The version of Bundler with
275
338
  RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
276
339
  SHIBATA Hiroshi.
277
340
 
278
- === 3.1.0 / 2019-12-16
341
+ # 3.1.0 / 2019-12-16
279
342
 
280
- Enhancements:
343
+ ## Enhancements:
281
344
 
282
345
  * Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
283
346
  * Check for rubygems.org typo squatting sources. Pull request #2999 by
@@ -291,25 +354,25 @@ Enhancements:
291
354
  * Use bundler to manage development dependencies. Pull request #3012 by
292
355
  David Rodríguez.
293
356
 
294
- Bug fixes:
357
+ ## Bug fixes:
295
358
 
296
359
  * Remove unnecessary executable flags. Pull request #2982 by David
297
360
  Rodríguez.
298
361
  * Remove configuration that contained a typo. Pull request #2989 by David
299
362
  Rodríguez.
300
363
 
301
- Deprecations:
364
+ ## Deprecations:
302
365
 
303
366
  * Deprecate `gem generate_index --modern` and `gem generate_index
304
367
  --no-modern`. Pull request #2992 by David Rodríguez.
305
368
 
306
- Breaking changes:
369
+ ## Breaking changes:
307
370
 
308
371
  * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
309
372
 
310
- === 3.1.0.pre3 / 2019-11-11
373
+ # 3.1.0.pre3 / 2019-11-11
311
374
 
312
- Enhancements:
375
+ ## Enhancements:
313
376
 
314
377
  * Fix gem pristine not accounting for user installed gems. Pull request
315
378
  #2914 by Luis Sagastume.
@@ -328,18 +391,18 @@ Enhancements:
328
391
  * Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
329
392
  #2985 by MSP-Greg.
330
393
 
331
- === 3.1.0.pre2 / 2019-10-15
394
+ # 3.1.0.pre2 / 2019-10-15
332
395
 
333
- Enhancements:
396
+ ## Enhancements:
334
397
 
335
398
  * Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
336
399
  Boussier.
337
400
  * Time comparison around date boundary. Pull request #2944 by Nobuyoshi
338
401
  Nakada.
339
402
 
340
- === 3.1.0.pre1 / 2019-10-08
403
+ # 3.1.0.pre1 / 2019-10-08
341
404
 
342
- Enhancements:
405
+ ## Enhancements:
343
406
 
344
407
  * Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
345
408
  * [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
@@ -469,7 +532,7 @@ Enhancements:
469
532
  Berger.
470
533
  * Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
471
534
 
472
- Bug fixes:
535
+ ## Bug fixes:
473
536
 
474
537
  * Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
475
538
  * Remove unused empty sources array. Pull request #2598 by Aaron
@@ -502,7 +565,7 @@ Bug fixes:
502
565
  * Fix cryptic error on local and ignore-dependencies combination. Pull
503
566
  request #2650 by David Rodríguez.
504
567
 
505
- Deprecations:
568
+ ## Deprecations:
506
569
 
507
570
  * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
508
571
  #2857 by SHIBATA Hiroshi.
@@ -516,7 +579,7 @@ Deprecations:
516
579
  * Add deprecation warnings for cli options. Pull request #2607 by Luis
517
580
  Sagastume.
518
581
 
519
- Breaking changes:
582
+ ## Breaking changes:
520
583
 
521
584
  * Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
522
585
  * Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
@@ -539,16 +602,16 @@ Breaking changes:
539
602
  #2685 by SHIBATA Hiroshi.
540
603
  * Removing yaml require. Pull request #2538 by Luciano Sousa.
541
604
 
542
- === 3.0.8 / 2020-02-19
605
+ # 3.0.8 / 2020-02-19
543
606
 
544
- Bug fixes:
607
+ ## Bug fixes:
545
608
 
546
609
  * Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
547
610
  Nobuyoshi Nakada.
548
611
 
549
- === 3.0.7 / 2020-02-18
612
+ # 3.0.7 / 2020-02-18
550
613
 
551
- Bug fixes:
614
+ ## Bug fixes:
552
615
 
553
616
  * Fix underscore version selection for bundler #2908 by David Rodríguez.
554
617
  * Add missing wrapper. Pull request #2690 by David Rodríguez.
@@ -558,15 +621,15 @@ Bug fixes:
558
621
  * Use IAM role to extract security-credentials for EC2 instance. Pull
559
622
  request #2894 by Alexander Pakulov.
560
623
 
561
- === 3.0.6 / 2019-08-17
624
+ # 3.0.6 / 2019-08-17
562
625
 
563
- Bug fixes:
626
+ ## Bug fixes:
564
627
 
565
628
  * Revert #2813. It broke the compatibility with 3.0.x versions.
566
629
 
567
- === 3.0.5 / 2019-08-16
630
+ # 3.0.5 / 2019-08-16
568
631
 
569
- Enhancements:
632
+ ## Enhancements:
570
633
 
571
634
  * Use env var to configure api key on push. Pull request #2559 by Luis
572
635
  Sagastume.
@@ -601,7 +664,7 @@ Enhancements:
601
664
  by Alexander Pakulov.
602
665
  * Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
603
666
 
604
- Bug fixes:
667
+ ## Bug fixes:
605
668
 
606
669
  * Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
607
670
  MSP-Greg.
@@ -617,9 +680,9 @@ Bug fixes:
617
680
  * Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
618
681
  Hiroshi.
619
682
 
620
- === 3.0.4 / 2019-06-14
683
+ # 3.0.4 / 2019-06-14
621
684
 
622
- Enhancements:
685
+ ## Enhancements:
623
686
 
624
687
  * Add support for TruffleRuby #2612 by Benoit Daloze
625
688
  * Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
@@ -656,7 +719,7 @@ Enhancements:
656
719
  request #2777 by Yusuke Endoh.
657
720
  * Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
658
721
 
659
- Bug fixes:
722
+ ## Bug fixes:
660
723
 
661
724
  * Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
662
725
  * Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
@@ -672,7 +735,7 @@ Bug fixes:
672
735
  #2732 by Alex Junger.
673
736
  * Fix TODOs. Pull request #2748 by David Rodríguez.
674
737
 
675
- === 3.0.3 / 2019-03-05
738
+ # 3.0.3 / 2019-03-05
676
739
 
677
740
  Security fixes:
678
741
 
@@ -683,14 +746,14 @@ Security fixes:
683
746
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
684
747
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
685
748
 
686
- === 3.0.2 / 2019-01-01
749
+ # 3.0.2 / 2019-01-01
687
750
 
688
- Enhancements:
751
+ ## Enhancements:
689
752
 
690
753
  * Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
691
754
  * Fix document flag description. Pull request #2555 by Luis Sagastume.
692
755
 
693
- Bug fixes:
756
+ ## Bug fixes:
694
757
 
695
758
  * Fix tests when ruby --program-suffix is used without rubygems
696
759
  --format-executable. Pull request #2549 by Jeremy Evans.
@@ -700,9 +763,9 @@ Bug fixes:
700
763
  Fukumori.
701
764
  * Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
702
765
 
703
- === 3.0.1 / 2018-12-23
766
+ # 3.0.1 / 2018-12-23
704
767
 
705
- Bug fixes:
768
+ ## Bug fixes:
706
769
 
707
770
  * Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
708
771
  * Dup the Dir.home string before passing it on. Pull request #2545 by
@@ -711,9 +774,9 @@ Bug fixes:
711
774
  by SHIBATA Hiroshi.
712
775
  * Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
713
776
 
714
- === 3.0.0 / 2018-12-19
777
+ # 3.0.0 / 2018-12-19
715
778
 
716
- Enhancements:
779
+ ## Enhancements:
717
780
 
718
781
  * S3 source. Pull request #1690 by Aditya Prakash.
719
782
  * Download gems with threads. Pull request #1898 by André Arko.
@@ -878,7 +941,7 @@ Enhancements:
878
941
  * Support the environment without OpenSSL. Pull request #2528 by SHIBATA
879
942
  Hiroshi.
880
943
 
881
- Bug fixes:
944
+ ## Bug fixes:
882
945
 
883
946
  * Fix undefined method error when printing alert. Pull request #1884 by
884
947
  Robert Ross.
@@ -931,7 +994,7 @@ Bug fixes:
931
994
  * Fix tests when --program-suffix and similar ruby configure options are
932
995
  used. Pull request #2529 by Jeremy Evans.
933
996
 
934
- Breaking changes:
997
+ ## Breaking changes:
935
998
 
936
999
  * IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
937
1000
  Hiroshi.
@@ -984,9 +1047,9 @@ Breaking changes:
984
1047
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on
985
1048
  major versions. Pull request #2515 by Colby Swandale.
986
1049
 
987
- === 2.7.10 / 2019-06-14
1050
+ # 2.7.10 / 2019-06-14
988
1051
 
989
- Enhancements:
1052
+ ## Enhancements:
990
1053
 
991
1054
  * Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
992
1055
  by David Rodríguez.
@@ -994,7 +1057,7 @@ Enhancements:
994
1057
  Pull request #2515 by Colby Swandale.
995
1058
  + Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
996
1059
 
997
- === 2.7.9 / 2019-03-05
1060
+ # 2.7.9 / 2019-03-05
998
1061
 
999
1062
  Security fixes:
1000
1063
 
@@ -1005,9 +1068,9 @@ Security fixes:
1005
1068
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
1006
1069
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
1007
1070
 
1008
- === 2.7.8 / 2018-11-02
1071
+ # 2.7.8 / 2018-11-02
1009
1072
 
1010
- Enhancements:
1073
+ ## Enhancements:
1011
1074
 
1012
1075
  * [Requirement] Treat requirements with == versions as equal. Pull
1013
1076
  request #2230 by Samuel Giddins.
@@ -1026,7 +1089,7 @@ Enhancements:
1026
1089
  * Improve bindir flag description. Pull request #2383 by Luis Sagastume.
1027
1090
  * Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
1028
1091
 
1029
- Bug fixes:
1092
+ ## Bug fixes:
1030
1093
 
1031
1094
  * Fix #1470: generate documentation when --install-dir is present. Pull
1032
1095
  request #2229 by Elias Hernandis.
@@ -1039,9 +1102,9 @@ Bug fixes:
1039
1102
  * Gem::Version should handle nil like it used to before. Pull request
1040
1103
  #2363 by Luis Sagastume.
1041
1104
 
1042
- === 2.7.7 / 2018-05-08
1105
+ # 2.7.7 / 2018-05-08
1043
1106
 
1044
- Enhancements:
1107
+ ## Enhancements:
1045
1108
 
1046
1109
  * [RequestSet] Only suggest a gem version with an installable platform.
1047
1110
  Pull request #2175 by Samuel Giddins.
@@ -1056,7 +1119,7 @@ Enhancements:
1056
1119
  Sagastume.
1057
1120
  * Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
1058
1121
 
1059
- Bug fixes:
1122
+ ## Bug fixes:
1060
1123
 
1061
1124
  * Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
1062
1125
  #2115 by MSP-Greg.
@@ -1069,7 +1132,7 @@ Bug fixes:
1069
1132
  * Fix path checks for case insensitive filesystem. Pull request #2211 by
1070
1133
  Lars Kanis.
1071
1134
 
1072
- Deprecations:
1135
+ ## Deprecations:
1073
1136
 
1074
1137
  * Deprecate unused code before removing them at #1524. Pull request #2197
1075
1138
  by SHIBATA Hiroshi.
@@ -1077,11 +1140,11 @@ Deprecations:
1077
1140
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
1078
1141
  SHIBATA Hiroshi.
1079
1142
 
1080
- Breaking changes:
1143
+ ## Breaking changes:
1081
1144
 
1082
1145
  * Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
1083
1146
 
1084
- === 2.7.6 / 2018-02-16
1147
+ # 2.7.6 / 2018-02-16
1085
1148
 
1086
1149
  Security fixes:
1087
1150
 
@@ -1100,9 +1163,9 @@ Security fixes:
1100
1163
  * Prevent Path Traversal issue during gem installation.
1101
1164
  Discovered by nmalkin.
1102
1165
 
1103
- === 2.7.5
1166
+ # 2.7.5
1104
1167
 
1105
- Bug fixes:
1168
+ ## Bug fixes:
1106
1169
 
1107
1170
  * To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
1108
1171
  * Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
@@ -1114,9 +1177,9 @@ Bug fixes:
1114
1177
  * Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
1115
1178
  * Fix undefined method error when printing alert #1884 by Robert Ross.
1116
1179
 
1117
- === 2.7.4
1180
+ # 2.7.4
1118
1181
 
1119
- Bug fixes:
1182
+ ## Bug fixes:
1120
1183
 
1121
1184
  * Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
1122
1185
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -1125,9 +1188,9 @@ Bug fixes:
1125
1188
  * Handle environment that does not have `flock` system call. Pull request
1126
1189
  #2107 by SHIBATA Hiroshi.
1127
1190
 
1128
- === 2.7.3
1191
+ # 2.7.3
1129
1192
 
1130
- Enhancements:
1193
+ ## Enhancements:
1131
1194
 
1132
1195
  * Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
1133
1196
  * Add --[no-]check-development option to cleanup command. Pull request
@@ -1140,7 +1203,7 @@ Enhancements:
1140
1203
  * Remove multi load warning from plugins documentation. Pull request #2103
1141
1204
  by Thibault Jouan.
1142
1205
 
1143
- Bug fixes:
1206
+ ## Bug fixes:
1144
1207
 
1145
1208
  * Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
1146
1209
  Dash.
@@ -1159,25 +1222,25 @@ Bug fixes:
1159
1222
  * Use setup command --regenerate-binstubs option flag. Pull request #2099
1160
1223
  by Thibault Jouan.
1161
1224
 
1162
- === 2.7.2
1225
+ # 2.7.2
1163
1226
 
1164
- Bug fixes:
1227
+ ## Bug fixes:
1165
1228
 
1166
1229
  * Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
1167
1230
  Hiroshi.
1168
1231
  * Added workaround for non-git environment. Pull request #2066 by SHIBATA
1169
1232
  Hiroshi.
1170
1233
 
1171
- === 2.7.1 (2017-11-03)
1234
+ # 2.7.1 (2017-11-03)
1172
1235
 
1173
- Bug fixes:
1236
+ ## Bug fixes:
1174
1237
 
1175
1238
  * Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
1176
1239
  Samuel Giddins.
1177
1240
 
1178
- === 2.7.0 (2017-11-02)
1241
+ # 2.7.0 (2017-11-02)
1179
1242
 
1180
- Enhancements:
1243
+ ## Enhancements:
1181
1244
 
1182
1245
  * Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
1183
1246
  * Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
@@ -1268,7 +1331,7 @@ Enhancements:
1268
1331
  * Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
1269
1332
  Dash.
1270
1333
 
1271
- Deprecations:
1334
+ ## Deprecations:
1272
1335
 
1273
1336
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
1274
1337
  Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
@@ -1278,7 +1341,7 @@ Deprecations:
1278
1341
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
1279
1342
  Pull request #1731 by Jon Moss.
1280
1343
 
1281
- Breaking changes:
1344
+ ## Breaking changes:
1282
1345
 
1283
1346
  * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1284
1347
  unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
@@ -1286,7 +1349,7 @@ Breaking changes:
1286
1349
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
1287
1350
  #1796 by Matej.
1288
1351
 
1289
- Bug fixes:
1352
+ ## Bug fixes:
1290
1353
 
1291
1354
  * Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
1292
1355
  MSP-Greg.
@@ -1339,7 +1402,7 @@ Bug fixes:
1339
1402
  * [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
1340
1403
  Pull request #1738 by Samuel Giddins.
1341
1404
 
1342
- === 2.6.14 / 2017-10-09
1405
+ # 2.6.14 / 2017-10-09
1343
1406
 
1344
1407
  Security fixes:
1345
1408
 
@@ -1347,7 +1410,7 @@ Security fixes:
1347
1410
  See CVE-2017-0903 for full details.
1348
1411
  Fix by Aaron Patterson.
1349
1412
 
1350
- === 2.6.13 / 2017-08-27
1413
+ # 2.6.13 / 2017-08-27
1351
1414
 
1352
1415
  Security fixes:
1353
1416
 
@@ -1361,9 +1424,9 @@ Security fixes:
1361
1424
  to overwrite arbitrary files. (CVE-2017-0901)
1362
1425
  Discovered by Yusuke Endoh, fix by Samuel Giddins.
1363
1426
 
1364
- === 2.6.12 / 2017-04-30
1427
+ # 2.6.12 / 2017-04-30
1365
1428
 
1366
- Bug fixes:
1429
+ ## Bug fixes:
1367
1430
 
1368
1431
  * Fix test_self_find_files_with_gemfile to sort expected files. Pull
1369
1432
  request #1880 by Kazuaki Matsuo.
@@ -1384,9 +1447,9 @@ Bug fixes:
1384
1447
  * Allow Gem.finish_resolve to respect already-activated specs. Pull
1385
1448
  request #1910 by Samuel Giddins.
1386
1449
 
1387
- === 2.6.11 / 2017-03-16
1450
+ # 2.6.11 / 2017-03-16
1388
1451
 
1389
- Bug fixes:
1452
+ ## Bug fixes:
1390
1453
 
1391
1454
  * Fixed broken tests on ruby-head. Pull request #1841 by
1392
1455
  SHIBATA Hiroshi.
@@ -1397,16 +1460,16 @@ Bug fixes:
1397
1460
  * Use improved resolver sorting algorithm. Pull request #1856 by
1398
1461
  Samuel Giddins.
1399
1462
 
1400
- === 2.6.10 / 2017-01-23
1463
+ # 2.6.10 / 2017-01-23
1401
1464
 
1402
- Bug fixes:
1465
+ ## Bug fixes:
1403
1466
 
1404
1467
  * Fix `require` calling the wrong `gem` method when it is overridden.
1405
1468
  Pull request #1822 by Samuel Giddins.
1406
1469
 
1407
- === 2.6.9 / 2017-01-20
1470
+ # 2.6.9 / 2017-01-20
1408
1471
 
1409
- Bug fixes:
1472
+ ## Bug fixes:
1410
1473
 
1411
1474
  * Allow initializing versions with empty strings. Pull request #1767 by
1412
1475
  Luis Sagastume.
@@ -1420,9 +1483,9 @@ Bug fixes:
1420
1483
  * RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
1421
1484
  Jonsson.
1422
1485
 
1423
- === 2.6.8 / 2016-10-29
1486
+ # 2.6.8 / 2016-10-29
1424
1487
 
1425
- Bug fixes:
1488
+ ## Bug fixes:
1426
1489
 
1427
1490
  * Improve SSL verification failure message. Pull request #1751
1428
1491
  by Eric Hodel.
@@ -1431,9 +1494,9 @@ Bug fixes:
1431
1494
  * Update vendored Molinillo to 0.5.3. Pull request #1763 by
1432
1495
  Samuel Giddins.
1433
1496
 
1434
- === 2.6.7 / 2016-09-26
1497
+ # 2.6.7 / 2016-09-26
1435
1498
 
1436
- Bug fixes:
1499
+ ## Bug fixes:
1437
1500
 
1438
1501
  * Install native extensions in the correct location when using the
1439
1502
  `--user-install` flag. Pull request #1683 by Noah Kantrowitz.
@@ -1445,24 +1508,24 @@ Bug fixes:
1445
1508
  * Update vendored Molinillo to 0.5.1. Pull request #1714 by
1446
1509
  Samuel Giddins.
1447
1510
 
1448
- === 2.6.6 / 2016-06-22
1511
+ # 2.6.6 / 2016-06-22
1449
1512
 
1450
- Bug fixes:
1513
+ ## Bug fixes:
1451
1514
 
1452
1515
  * Sort installed versions to make sure we install the latest version when
1453
1516
  running `gem update --system`. As a one-time fix, run
1454
1517
  `gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
1455
1518
 
1456
- === 2.6.5 / 2016-06-21
1519
+ # 2.6.5 / 2016-06-21
1457
1520
 
1458
- Enhancements:
1521
+ ## Enhancements:
1459
1522
 
1460
1523
  * Support for unified Integer in Ruby 2.4. Pull request #1618
1461
1524
  by SHIBATA Hiroshi.
1462
1525
  * Update vendored Molinillo to 0.5.0 for performance improvements.
1463
1526
  Pull request #1638 by Samuel Giddins.
1464
1527
 
1465
- Bug fixes:
1528
+ ## Bug fixes:
1466
1529
 
1467
1530
  * Raise an explicit error if Signer#sign is called with no certs. Pull
1468
1531
  request #1605 by Daniel Berger.
@@ -1482,16 +1545,16 @@ Bug fixes:
1482
1545
  Pull request #1644 by Charles Oliver Nutter.
1483
1546
  * Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
1484
1547
 
1485
- === 2.6.4 / 2016-04-26
1548
+ # 2.6.4 / 2016-04-26
1486
1549
 
1487
- Enhancements:
1550
+ ## Enhancements:
1488
1551
 
1489
1552
  * Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
1490
1553
  by Chris Charabaruk.
1491
1554
  * Use File.symlink on MS Windows if supported. Pull request #1418
1492
1555
  by Nobuyoshi Nakada.
1493
1556
 
1494
- Bug fixes:
1557
+ ## Bug fixes:
1495
1558
 
1496
1559
  * Redact uri password from error output when gem fetch fails. Pull request
1497
1560
  #1565 by Brian Fletcher.
@@ -1499,9 +1562,9 @@ Bug fixes:
1499
1562
  * Escape user-supplied content served on web pages by `gem server` to avoid
1500
1563
  potential XSS vulnerabilities. Samuel Giddins.
1501
1564
 
1502
- === 2.6.3 / 2016-04-05
1565
+ # 2.6.3 / 2016-04-05
1503
1566
 
1504
- Enhancements:
1567
+ ## Enhancements:
1505
1568
 
1506
1569
  * Lazily calculate Gem::LoadError exception messages. Pull request #1550
1507
1570
  by Aaron Patterson.
@@ -1512,7 +1575,7 @@ Enhancements:
1512
1575
  * Show default gems when using "gem list". Pull request #1570 by Luis
1513
1576
  Sagastume.
1514
1577
 
1515
- Bug fixes:
1578
+ ## Bug fixes:
1516
1579
 
1517
1580
  * Stub ordering should be consistent regardless of how cache is populated.
1518
1581
  Pull request #1552 by Aaron Patterson.
@@ -1528,9 +1591,9 @@ Bug fixes:
1528
1591
  Giddins.
1529
1592
  * Allow two digit version numbers in the tests. Pull request #1575 by unak.
1530
1593
 
1531
- === 2.6.2 / 2016-03-12
1594
+ # 2.6.2 / 2016-03-12
1532
1595
 
1533
- Bug fixes:
1596
+ ## Bug fixes:
1534
1597
 
1535
1598
  * Fix wrong version of gem activation for bin stub. Pull request #1527 by
1536
1599
  Aaron Patterson.
@@ -1541,9 +1604,9 @@ Bug fixes:
1541
1604
  #1538 by Charles Oliver Nutter.
1542
1605
 
1543
1606
 
1544
- === 2.6.1 / 2016-02-28
1607
+ # 2.6.1 / 2016-02-28
1545
1608
 
1546
- Bug fixes:
1609
+ ## Bug fixes:
1547
1610
 
1548
1611
  * Ensure `default_path` and `home` are set for paths. Pull request #1513
1549
1612
  by Aaron Patterson.
@@ -1552,9 +1615,9 @@ Bug fixes:
1552
1615
  * Fix invalid gem file preventing gem install from working. Pull request
1553
1616
  #1499 by Luis Sagastume.
1554
1617
 
1555
- === 2.6.0 / 2016-02-26
1618
+ # 2.6.0 / 2016-02-26
1556
1619
 
1557
- Enhancements:
1620
+ ## Enhancements:
1558
1621
 
1559
1622
  * RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
1560
1623
  metadata setting. Pull request #1486 by Josh Lane.
@@ -1565,7 +1628,7 @@ Enhancements:
1565
1628
  * Allow specifying gem requirements via env variables. Pull request #1472
1566
1629
  by Samuel E. Giddins.
1567
1630
 
1568
- Bug fixes:
1631
+ ## Bug fixes:
1569
1632
 
1570
1633
  * RubyGems now stores `gem push` credentials under the host you signed-in for.
1571
1634
  Pull request #1485 by Josh Lane.
@@ -1591,9 +1654,9 @@ Bug fixes:
1591
1654
  * Find_files only from loaded_gems when using gemdeps. Pull request #1277
1592
1655
  by Michal Papis.
1593
1656
 
1594
- === 2.5.2 / 2016-01-31
1657
+ # 2.5.2 / 2016-01-31
1595
1658
 
1596
- Bug fixes:
1659
+ ## Bug fixes:
1597
1660
 
1598
1661
  * Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
1599
1662
  Zuijlen.
@@ -1609,7 +1672,7 @@ Bug fixes:
1609
1672
  * Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
1610
1673
  Giddins.
1611
1674
 
1612
- Enhancements:
1675
+ ## Enhancements:
1613
1676
 
1614
1677
  * Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
1615
1678
  Sagastume.
@@ -1634,9 +1697,9 @@ Enhancements:
1634
1697
  * Function correctly when string literals are frozen on Ruby 2.3. Pull request
1635
1698
  #1408 by Samuel E. Giddins.
1636
1699
 
1637
- === 2.5.1 / 2015-12-10
1700
+ # 2.5.1 / 2015-12-10
1638
1701
 
1639
- Bug fixes:
1702
+ ## Bug fixes:
1640
1703
 
1641
1704
  * Ensure platform sorting only uses strings. Affected binary installs on Windows.
1642
1705
  Issue #1369 reported by Ryan Atball (among others).
@@ -1665,9 +1728,9 @@ Bug fixes:
1665
1728
  Kudo.
1666
1729
  * Fixed double word typo. Pull request #1411 by Jake Worth.
1667
1730
 
1668
- === 2.5.0 / 2015-11-03
1731
+ # 2.5.0 / 2015-11-03
1669
1732
 
1670
- Enhancements:
1733
+ ## Enhancements:
1671
1734
 
1672
1735
  * Added the Gem::Licenses class which provides a set of standard license
1673
1736
  identifiers as set by spdx.org. This is now used by the
@@ -1737,7 +1800,7 @@ Enhancements:
1737
1800
  * Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
1738
1801
  Agis Anastasopoulos.
1739
1802
 
1740
- Bug fixes:
1803
+ ## Bug fixes:
1741
1804
 
1742
1805
  * Fixed Rake homepage url in example for Gem::Specification#homepage.
1743
1806
  Pull request #1171 by Arthur Nogueira Neves
@@ -1794,22 +1857,22 @@ Bug fixes:
1794
1857
  * RubyGems handles invalid config files better. Pull request #1367 by Agis
1795
1858
  Anastasopoulos.
1796
1859
 
1797
- === 2.4.8 / 2015-06-08
1860
+ # 2.4.8 / 2015-06-08
1798
1861
 
1799
- Bug fixes:
1862
+ ## Bug fixes:
1800
1863
 
1801
1864
  * Tightened API endpoint checks for CVE-2015-3900
1802
1865
 
1803
- === 2.4.7 / 2015-05-14
1866
+ # 2.4.7 / 2015-05-14
1804
1867
 
1805
- Bug fixes:
1868
+ ## Bug fixes:
1806
1869
 
1807
1870
  * Limit API endpoint to original security domain for CVE-2015-3900.
1808
1871
  Fix by claudijd
1809
1872
 
1810
- === 2.4.6 / 2015-02-05
1873
+ # 2.4.6 / 2015-02-05
1811
1874
 
1812
- Bug fixes:
1875
+ ## Bug fixes:
1813
1876
 
1814
1877
  * Fixed resolving gems with both upper and lower requirement boundaries.
1815
1878
  Issue #1141 by Jakub Jirutka.
@@ -1834,9 +1897,9 @@ Bug fixes:
1834
1897
  Ondruch.
1835
1898
  * Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
1836
1899
 
1837
- === 2.4.5 / 2014-12-03
1900
+ # 2.4.5 / 2014-12-03
1838
1901
 
1839
- Bug fixes:
1902
+ ## Bug fixes:
1840
1903
 
1841
1904
  * Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
1842
1905
  request #1060 by unak.
@@ -1876,27 +1939,27 @@ Bug fixes:
1876
1939
  * Fixed grouped expression warning. Pull request #1081 by André Arko.
1877
1940
  * Fixed handling of platforms when writing lockfiles.
1878
1941
 
1879
- === 2.4.4 / 2014-11-12
1942
+ # 2.4.4 / 2014-11-12
1880
1943
 
1881
- Bug fixes:
1944
+ ## Bug fixes:
1882
1945
 
1883
1946
  * Add alternate Root CA for upcoming certificate change. Fixes #1050 by
1884
1947
  Protosac
1885
1948
 
1886
- === 2.4.3 / 2014-11-10
1949
+ # 2.4.3 / 2014-11-10
1887
1950
 
1888
- Bug fixes:
1951
+ ## Bug fixes:
1889
1952
 
1890
1953
  * Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
1891
1954
  * Fix typo in platform= docs. Pull request #1048 by @jasonrclark
1892
1955
  * Add root SSL certificates for upcoming certificate change. Fixes #1050 by
1893
1956
  Protosac
1894
1957
 
1895
- === 2.4.2 / 2014-10-01
1958
+ # 2.4.2 / 2014-10-01
1896
1959
 
1897
1960
  This release was sponsored by Ruby Central.
1898
1961
 
1899
- Bug fixes:
1962
+ ## Bug fixes:
1900
1963
 
1901
1964
  * RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
1902
1965
  voelzemo.
@@ -1930,16 +1993,16 @@ Bug fixes:
1930
1993
  * RubyGems now fails immediately when a git reference cannot be found instead
1931
1994
  of spewing git errors. Issue #1031 by Michal Papis
1932
1995
 
1933
- === 2.4.1 / 2014-07-17
1996
+ # 2.4.1 / 2014-07-17
1934
1997
 
1935
- Bug fixes:
1998
+ ## Bug fixes:
1936
1999
 
1937
2000
  * RubyGems can now be updated on Ruby implementations that do not support
1938
2001
  vendordir in RbConfig::CONFIG. Issue #974 by net1957.
1939
2002
 
1940
- === 2.4.0 / 2014-07-16
2003
+ # 2.4.0 / 2014-07-16
1941
2004
 
1942
- Enhancements:
2005
+ ## Enhancements:
1943
2006
 
1944
2007
  * The contents command now supports a --show-install-dir option that shows
1945
2008
  only the directory the gem is installed in. Feature request #966 by Akinori
@@ -1950,7 +2013,7 @@ Enhancements:
1950
2013
  in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
1951
2014
  Marcus Rückert.
1952
2015
 
1953
- Bug fixes:
2016
+ ## Bug fixes:
1954
2017
 
1955
2018
  * Kernel#gem now respects the prerelease flag when activating gems.
1956
2019
  Previously this behavior was undefined which could lead to bugs when a
@@ -2000,9 +2063,9 @@ Bug fixes:
2000
2063
  during gem resolution.
2001
2064
 
2002
2065
 
2003
- === 2.3.0 / 2014-06-10
2066
+ # 2.3.0 / 2014-06-10
2004
2067
 
2005
- Enhancements:
2068
+ ## Enhancements:
2006
2069
 
2007
2070
  * Added the `open` command which allows you to inspect the source of a gem
2008
2071
  using your editor.
@@ -2043,7 +2106,7 @@ Enhancements:
2043
2106
  * RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
2044
2107
  Benjamin Fleischer.
2045
2108
 
2046
- Bug fixes:
2109
+ ## Bug fixes:
2047
2110
 
2048
2111
  * RubyGems now only fetches the latest specs to find misspellings which speeds
2049
2112
  up gem suggestions. Pull request #808 by Aaron Patterson.
@@ -2123,29 +2186,29 @@ Bug fixes:
2123
2186
  * Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
2124
2187
  #852 by Vít Ondruch.
2125
2188
 
2126
- === 2.2.5 / 2015-06-08
2189
+ # 2.2.5 / 2015-06-08
2127
2190
 
2128
- Bug fixes:
2191
+ ## Bug fixes:
2129
2192
 
2130
2193
  * Tightened API endpoint checks for CVE-2015-3900
2131
2194
 
2132
- === 2.2.4 / 2015-05-14
2195
+ # 2.2.4 / 2015-05-14
2133
2196
 
2134
- Bug fixes:
2197
+ ## Bug fixes:
2135
2198
 
2136
2199
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
2137
2200
  Fix by claudijd
2138
2201
 
2139
- === 2.2.3 / 2014-12-21
2202
+ # 2.2.3 / 2014-12-21
2140
2203
 
2141
- Bug fixes:
2204
+ ## Bug fixes:
2142
2205
 
2143
2206
  * Backport: Add alternate Root CA for upcoming certificate change.
2144
2207
  Fixes #1050 by Protosac
2145
2208
 
2146
- === 2.2.2 / 2014-02-05
2209
+ # 2.2.2 / 2014-02-05
2147
2210
 
2148
- Bug fixes:
2211
+ ## Bug fixes:
2149
2212
 
2150
2213
  * Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
2151
2214
  Nakada.
@@ -2170,9 +2233,9 @@ Bug fixes:
2170
2233
  * Restored behavior of Gem::Version::new when subclassed. Issue #805 by
2171
2234
  Sergio Rubio.
2172
2235
 
2173
- === 2.2.1 / 2014-01-06
2236
+ # 2.2.1 / 2014-01-06
2174
2237
 
2175
- Bug fixes:
2238
+ ## Bug fixes:
2176
2239
 
2177
2240
  * Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
2178
2241
  #767 by Diego Viola.
@@ -2198,12 +2261,12 @@ Bug fixes:
2198
2261
  * Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
2199
2262
  request #763 by James Mead
2200
2263
 
2201
- === 2.2.0 / 2013-12-26
2264
+ # 2.2.0 / 2013-12-26
2202
2265
 
2203
2266
  Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
2204
2267
  RubyGems as it was prepared for the 2.2.0 release.
2205
2268
 
2206
- Enhancements:
2269
+ ## Enhancements:
2207
2270
 
2208
2271
  * RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
2209
2272
  rubygems executables are started and uses the found dependencies. This
@@ -2271,7 +2334,7 @@ Enhancements:
2271
2334
  * Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
2272
2335
  Request #755 by strzibny.
2273
2336
 
2274
- Bug fixes:
2337
+ ## Bug fixes:
2275
2338
 
2276
2339
  * RubyGems now returns an error status when any file given to `gem which`
2277
2340
  cannot be found. Ruby bug #9004 by Eugene Vilensky.
@@ -2288,9 +2351,9 @@ Bug fixes:
2288
2351
  * Improved speed of `gem install --ignore-dependencies`. Patch by Terence
2289
2352
  Lee.
2290
2353
 
2291
- === 2.1.11 / 2013-11-12
2354
+ # 2.1.11 / 2013-11-12
2292
2355
 
2293
- Bug fixes:
2356
+ ## Bug fixes:
2294
2357
 
2295
2358
  * Gem::Specification::remove_spec no longer checks for existence of the spec
2296
2359
  to be removed. Issue #698 by Tiago Macedo.
@@ -2300,9 +2363,9 @@ Bug fixes:
2300
2363
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
2301
2364
  Pull Request #706 by akr.
2302
2365
 
2303
- === 2.1.10 / 2013-10-24
2366
+ # 2.1.10 / 2013-10-24
2304
2367
 
2305
- Bug fixes:
2368
+ ## Bug fixes:
2306
2369
 
2307
2370
  * Use class check instead of :version method check when creating Gem::Version
2308
2371
  objects. Fixes #674 by jkanywhere.
@@ -2321,18 +2384,18 @@ Bug fixes:
2321
2384
  * The --ignore-dependencies option for gem installation works again. Issue
2322
2385
  #695
2323
2386
 
2324
- === 2.1.9 / 2013-10-14
2387
+ # 2.1.9 / 2013-10-14
2325
2388
 
2326
- Bug fixes:
2389
+ ## Bug fixes:
2327
2390
 
2328
2391
  * Reduce sorting when fetching specifications. This speeds up the update and
2329
2392
  outdated commands, and others. Issue #657 by windwiny.
2330
2393
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
2331
2394
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
2332
2395
 
2333
- === 2.1.8 / 2013-10-10
2396
+ # 2.1.8 / 2013-10-10
2334
2397
 
2335
- Bug fixes:
2398
+ ## Bug fixes:
2336
2399
 
2337
2400
  * Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
2338
2401
  * Files starting with "." in the root directory are installed again. Issue
@@ -2340,9 +2403,9 @@ Bug fixes:
2340
2403
  * The index generator no longer indexes default gems. Issue #661 by
2341
2404
  Jeremy Hinegardner.
2342
2405
 
2343
- === 2.1.7 / 2013-10-09
2406
+ # 2.1.7 / 2013-10-09
2344
2407
 
2345
- Bug fixes:
2408
+ ## Bug fixes:
2346
2409
 
2347
2410
  * `gem sources --list` now displays a list of sources. Pull request #672 by
2348
2411
  Nathan Marley.
@@ -2355,9 +2418,9 @@ Bug fixes:
2355
2418
  * Expand unpack destination directory. This fixes problems when File.realpath
2356
2419
  is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
2357
2420
 
2358
- === 2.1.6 / 2013-10-08
2421
+ # 2.1.6 / 2013-10-08
2359
2422
 
2360
- Bug fixes:
2423
+ ## Bug fixes:
2361
2424
 
2362
2425
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
2363
2426
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -2372,7 +2435,7 @@ Bug fixes:
2372
2435
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
2373
2436
  Thomas Sänger.
2374
2437
 
2375
- === 2.1.5 / 2013-09-24
2438
+ # 2.1.5 / 2013-09-24
2376
2439
 
2377
2440
  Security fixes:
2378
2441
 
@@ -2381,25 +2444,25 @@ Security fixes:
2381
2444
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
2382
2445
  1.8.23.2 (for Ruby 1.9.3).
2383
2446
 
2384
- === 2.1.4 / 2013-09-17
2447
+ # 2.1.4 / 2013-09-17
2385
2448
 
2386
- Bug fixes:
2449
+ ## Bug fixes:
2387
2450
 
2388
2451
  * `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
2389
2452
  #650 by Kyle (remkade).
2390
2453
  * Fixed uninstalling gems installed in the home directory (as in
2391
2454
  `--user-install`). Issue #653 by Lin Jen-Shin.
2392
2455
 
2393
- === 2.1.3 / 2013-09-12
2456
+ # 2.1.3 / 2013-09-12
2394
2457
 
2395
- Bug fixes:
2458
+ ## Bug fixes:
2396
2459
 
2397
2460
  * Gems with files entries starting with "./" no longer install 0 files. Issue
2398
2461
  #644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
2399
2462
 
2400
- === 2.1.2 / 2013-09-11
2463
+ # 2.1.2 / 2013-09-11
2401
2464
 
2402
- Bug fixes:
2465
+ ## Bug fixes:
2403
2466
 
2404
2467
  * Restore concurrent requires following the fix for ruby bug #8374. Pull
2405
2468
  request #637 and issue #640 by Charles Nutter.
@@ -2408,14 +2471,14 @@ Bug fixes:
2408
2471
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
2409
2472
  Issue #643 by Brian Shirai.
2410
2473
 
2411
- === 2.1.1 / 2013-09-10
2474
+ # 2.1.1 / 2013-09-10
2412
2475
 
2413
- Bug fixes:
2476
+ ## Bug fixes:
2414
2477
 
2415
2478
  * Only matching gems matching your local platform are considered for
2416
2479
  installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
2417
2480
 
2418
- === 2.1.0 / 2013-09-09
2481
+ # 2.1.0 / 2013-09-09
2419
2482
 
2420
2483
  Security fixes:
2421
2484
 
@@ -2424,7 +2487,7 @@ Security fixes:
2424
2487
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2425
2488
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2426
2489
 
2427
- Enhancements:
2490
+ ## Enhancements:
2428
2491
 
2429
2492
  * RubyGems uses a new dependency resolver for gem installation which works
2430
2493
  similar to the bundler resolver. The new resolver can resolve conflicts the
@@ -2500,7 +2563,7 @@ Enhancements:
2500
2563
  still slow, but I see a near 50% improvement for 250 gems on a fast
2501
2564
  connection). See also Gem::Specification::outdated_and_latest_version
2502
2565
 
2503
- Bug fixes:
2566
+ ## Bug fixes:
2504
2567
 
2505
2568
  * rubygems_plugin.rb files are now only loaded from the latest installed gem.
2506
2569
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
@@ -2508,29 +2571,29 @@ Bug fixes:
2508
2571
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
2509
2572
  request #622 by Arthur Nogueira Neves
2510
2573
 
2511
- === 2.0.17 / 2015-06-08
2574
+ # 2.0.17 / 2015-06-08
2512
2575
 
2513
- Bug fixes:
2576
+ ## Bug fixes:
2514
2577
 
2515
2578
  * Tightened API endpoint checks for CVE-2015-3900
2516
2579
 
2517
- === 2.0.16 / 2015-05-14
2580
+ # 2.0.16 / 2015-05-14
2518
2581
 
2519
- Bug fixes:
2582
+ ## Bug fixes:
2520
2583
 
2521
2584
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
2522
2585
  Fix by claudijd
2523
2586
 
2524
- === 2.0.15 / 2014-12-21
2587
+ # 2.0.15 / 2014-12-21
2525
2588
 
2526
- Bug fixes:
2589
+ ## Bug fixes:
2527
2590
 
2528
2591
  * Backport: Add alternate Root CA for upcoming certificate change.
2529
2592
  Fixes #1050 by Protosac
2530
2593
 
2531
- === 2.0.14 / 2013-11-12
2594
+ # 2.0.14 / 2013-11-12
2532
2595
 
2533
- Bug fixes:
2596
+ ## Bug fixes:
2534
2597
 
2535
2598
  * Gem::Specification::remove_spec no longer checks for existence of the spec
2536
2599
  to be removed. Issue #698 by Tiago Macedo.
@@ -2540,9 +2603,9 @@ Bug fixes:
2540
2603
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
2541
2604
  Pull Request #706 by akr.
2542
2605
 
2543
- === 2.0.13 / 2013-10-24
2606
+ # 2.0.13 / 2013-10-24
2544
2607
 
2545
- Bug fixes:
2608
+ ## Bug fixes:
2546
2609
 
2547
2610
  * Use class check instead of :version method check when creating Gem::Version
2548
2611
  objects. Fixes #674 by jkanywhere.
@@ -2551,16 +2614,16 @@ Bug fixes:
2551
2614
  * Fix updating gems which have multiple platforms. Issue #693 by Ookami
2552
2615
  Kenrou.
2553
2616
 
2554
- === 2.0.12 / 2013-10-14
2617
+ # 2.0.12 / 2013-10-14
2555
2618
 
2556
- Bug fixes:
2619
+ ## Bug fixes:
2557
2620
 
2558
2621
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
2559
2622
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
2560
2623
 
2561
- === 2.0.11 / 2013-10-08
2624
+ # 2.0.11 / 2013-10-08
2562
2625
 
2563
- Bug fixes:
2626
+ ## Bug fixes:
2564
2627
 
2565
2628
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
2566
2629
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -2575,7 +2638,7 @@ Bug fixes:
2575
2638
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
2576
2639
  Thomas Sänger.
2577
2640
 
2578
- === 2.0.10 / 2013-09-24
2641
+ # 2.0.10 / 2013-09-24
2579
2642
 
2580
2643
  Security fixes:
2581
2644
 
@@ -2584,16 +2647,16 @@ Security fixes:
2584
2647
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
2585
2648
  1.8.23.2 (for Ruby 1.9.3).
2586
2649
 
2587
- === 2.0.9 / 2013-09-13
2650
+ # 2.0.9 / 2013-09-13
2588
2651
 
2589
- Bug fixes:
2652
+ ## Bug fixes:
2590
2653
 
2591
2654
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
2592
2655
  Issue #643 by Brian Shirai.
2593
2656
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
2594
2657
  request #622 by Arthur Nogueira Neves
2595
2658
 
2596
- === 2.0.8 / 2013-09-09
2659
+ # 2.0.8 / 2013-09-09
2597
2660
 
2598
2661
  Security fixes:
2599
2662
 
@@ -2602,14 +2665,14 @@ Security fixes:
2602
2665
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2603
2666
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2604
2667
 
2605
- Bug fixes:
2668
+ ## Bug fixes:
2606
2669
 
2607
2670
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
2608
2671
  #625 by elarkin
2609
2672
 
2610
- === 2.0.7 / 2013-08-15
2673
+ # 2.0.7 / 2013-08-15
2611
2674
 
2612
- Bug fixes:
2675
+ ## Bug fixes:
2613
2676
 
2614
2677
  * Extensions may now be built in parallel (therefore gems may be installed in
2615
2678
  parallel). Bug #607 by Hemant Kumar.
@@ -2619,9 +2682,9 @@ Bug fixes:
2619
2682
  Patches by Yui Naruse and Koichi Sasada.
2620
2683
  * Fixed documentation for Kernel#require.
2621
2684
 
2622
- === 2.0.6 / 2013-07-24
2685
+ # 2.0.6 / 2013-07-24
2623
2686
 
2624
- Bug fixes:
2687
+ ## Bug fixes:
2625
2688
 
2626
2689
  * Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
2627
2690
  #593 by Blargel.
@@ -2633,14 +2696,14 @@ Bug fixes:
2633
2696
  Bug #599 by Chris Riesbeck
2634
2697
  * Restored default of remote search to `gem search`.
2635
2698
 
2636
- === 2.0.5 / 2013-07-11
2699
+ # 2.0.5 / 2013-07-11
2637
2700
 
2638
2701
  * Fixed building of extensions that run ruby in their makefiles. Bug #589 by
2639
2702
  Zachary Salzbank.
2640
2703
 
2641
- === 2.0.4 / 2013-07-09
2704
+ # 2.0.4 / 2013-07-09
2642
2705
 
2643
- Bug fixes:
2706
+ ## Bug fixes:
2644
2707
 
2645
2708
  * Fixed error caused by gem install not finding the right platform for your
2646
2709
  platform. Bug #576 by John Anderson
@@ -2679,9 +2742,9 @@ Bug fixes:
2679
2742
  * Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
2680
2743
  r41148 by Yui Naruse
2681
2744
 
2682
- === 2.0.3 / 2013-03-11
2745
+ # 2.0.3 / 2013-03-11
2683
2746
 
2684
- Bug fixes:
2747
+ ## Bug fixes:
2685
2748
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
2686
2749
  #506 by André Arko
2687
2750
  * Use File.realpath to remove extra / while checking if files are
@@ -2696,17 +2759,17 @@ Bug fixes:
2696
2759
  * Fixed default gem key and cert locations. Pull request #511 by Samuel
2697
2760
  Cochran.
2698
2761
 
2699
- === 2.0.2 / 2013-03-06
2762
+ # 2.0.2 / 2013-03-06
2700
2763
 
2701
- Bug fixes:
2764
+ ## Bug fixes:
2702
2765
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
2703
2766
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
2704
2767
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
2705
2768
  * Fixed HTTP to HTTPS upgrade for rubygems.org.
2706
2769
 
2707
- === 2.0.1 / 2013-03-05
2770
+ # 2.0.1 / 2013-03-05
2708
2771
 
2709
- Bug fixes:
2772
+ ## Bug fixes:
2710
2773
  * Lazily load RubyGems.org API credentials to avoid failure during
2711
2774
  RubyGems installation. Bug #465 by Isaac Sanders.
2712
2775
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -2728,7 +2791,7 @@ Bug fixes:
2728
2791
  Ruby bug #7713 by nobu
2729
2792
  * Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
2730
2793
 
2731
- === 2.0.0 / 2013-02-24
2794
+ # 2.0.0 / 2013-02-24
2732
2795
 
2733
2796
  RubyGems 2.0 includes several new features and many breaking changes. Some of
2734
2797
  these changes will cause existing software to break. These changes are a
@@ -2740,7 +2803,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
2740
2803
 
2741
2804
  Changes since RubyGems 1.8.25 (including past pre-releases):
2742
2805
 
2743
- Breaking changes:
2806
+ ## Breaking changes:
2744
2807
 
2745
2808
  * Deprecated Gem.unresolved_deps in favor of
2746
2809
  Gem::Specification.unresolved_deps
@@ -2762,7 +2825,7 @@ Breaking changes:
2762
2825
  * Removed support for Ruby 1.9.1
2763
2826
  * Removed many deprecated methods
2764
2827
 
2765
- Enhancements:
2828
+ ## Enhancements:
2766
2829
 
2767
2830
  * Improved support for default gems shipping with ruby 2.0.0+
2768
2831
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2822,7 +2885,7 @@ Enhancements:
2822
2885
  GEM_HOME
2823
2886
  * When building gems with non-world-readable files a warning is shown.
2824
2887
 
2825
- Bug fixes:
2888
+ ## Bug fixes:
2826
2889
  * Gem.refresh now maintains the active gem list. Clearing the list would
2827
2890
  cause double-loads which would cause other bugs. Pull Request #427 by
2828
2891
  Jeremy Evans
@@ -2879,7 +2942,7 @@ Bug fixes:
2879
2942
 
2880
2943
  Changes since RubyGems 2.0.0.rc.2:
2881
2944
 
2882
- Bug fixes:
2945
+ ## Bug fixes:
2883
2946
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
2884
2947
  #450 by Jeremy Kemper
2885
2948
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -2892,48 +2955,48 @@ Bug fixes:
2892
2955
  * Fixed verification of gems at LowSecurity due to missing signature.
2893
2956
  Thanks to André Arko.
2894
2957
 
2895
- === 2.0.0.rc.2 / 2013-02-08
2958
+ # 2.0.0.rc.2 / 2013-02-08
2896
2959
 
2897
- Bug fixes:
2960
+ ## Bug fixes:
2898
2961
  * Fixed signature verification of gems which was broken only on master.
2899
2962
  Thanks to Brian Buchanan.
2900
2963
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
2901
2964
  André Arko.
2902
2965
 
2903
- === 2.0.0.rc.1 / 2013-01-08
2966
+ # 2.0.0.rc.1 / 2013-01-08
2904
2967
 
2905
- Enhancements:
2968
+ ## Enhancements:
2906
2969
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
2907
2970
  prerelease versions of RubyGems cannot push gems.
2908
2971
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2909
2972
  #419 by Erik Hollensbe
2910
2973
 
2911
- Bug fixes:
2974
+ ## Bug fixes:
2912
2975
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
2913
2976
  #418 by André Arko
2914
2977
  * Gem installation will fail if RubyGems cannot load the specification from
2915
2978
  the gem. Bug #419 by Erik Hollensbe
2916
2979
 
2917
- === 2.0.0.preview2.2 / 2012-12-14
2980
+ # 2.0.0.preview2.2 / 2012-12-14
2918
2981
 
2919
- Enhancements:
2982
+ ## Enhancements:
2920
2983
  * Added a cmake builder. Pull request #265 by Allan Espinosa.
2921
2984
  * Removed rubyforge page from gem list output
2922
2985
 
2923
- Bug fixes:
2986
+ ## Bug fixes:
2924
2987
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
2925
2988
  #413 by Jeremy Kemper.
2926
2989
 
2927
- === 2.0.0.preview2.1 / 2012-12-08
2990
+ # 2.0.0.preview2.1 / 2012-12-08
2928
2991
 
2929
- Enhancements:
2992
+ ## Enhancements:
2930
2993
  * Gem::DependencyInstaller now passes build_args down to the installer.
2931
2994
  Pull Request #412 by Sam Rawlins.
2932
2995
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
2933
2996
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
2934
2997
  Skipper.
2935
2998
 
2936
- Bug fixes:
2999
+ ## Bug fixes:
2937
3000
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
2938
3001
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
2939
3002
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -2945,13 +3008,13 @@ Bug fixes:
2945
3008
  * gem install now ignores directories that match the gem to install. Bug
2946
3009
  #407 by Santiago Pastorino.
2947
3010
 
2948
- === 2.0.0.preview2 / 2012-12-01
3011
+ # 2.0.0.preview2 / 2012-12-01
2949
3012
 
2950
3013
  This release contains two commits not present in Ruby 2.0.0.preview2. One
2951
3014
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
2952
3015
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2953
3016
 
2954
- Breaking changes:
3017
+ ## Breaking changes:
2955
3018
 
2956
3019
  * Deprecated Gem.unresolved_deps in favor of
2957
3020
  Gem::Specification.unresolved_deps
@@ -2973,7 +3036,7 @@ Breaking changes:
2973
3036
  * Removed support for Ruby 1.9.1
2974
3037
  * Removed many deprecated methods
2975
3038
 
2976
- Enhancements:
3039
+ ## Enhancements:
2977
3040
 
2978
3041
  * Improved support for default gems shipping with ruby 2.0.0+
2979
3042
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -3024,7 +3087,7 @@ Enhancements:
3024
3087
  GEM_HOME
3025
3088
  * When building gems with non-world-readable files a warning is shown.
3026
3089
 
3027
- Bug fixes:
3090
+ ## Bug fixes:
3028
3091
 
3029
3092
  * Added PID to setup bin_file while installing RubyGems to protect against
3030
3093
  errors. Fixes #328 by ConradIrwin
@@ -3065,17 +3128,17 @@ Bug fixes:
3065
3128
  * URI scheme matching is no longer case-sensitive. Fixes #322
3066
3129
  * ext/builder now checks $MAKE as well as $make (okkez)
3067
3130
 
3068
- === 1.8.29 / 2013-11-23
3131
+ # 1.8.29 / 2013-11-23
3069
3132
 
3070
- Bug fixes:
3133
+ ## Bug fixes:
3071
3134
 
3072
3135
  * Fixed installation when the LANG environment variable is empty.
3073
3136
  * Added DigiCert High Assurance EV Root CA to the default SSL certificates for
3074
3137
  cloudfront.
3075
3138
 
3076
- === 1.8.28 / 2013-10-08
3139
+ # 1.8.28 / 2013-10-08
3077
3140
 
3078
- Bug fixes:
3141
+ ## Bug fixes:
3079
3142
 
3080
3143
  * Added the Verisign Class 3 Public Primary Certification Authority G5
3081
3144
  certificate and its intermediary to follow the s3.amazonaws.com certificate
@@ -3085,7 +3148,7 @@ Bug fixes:
3085
3148
  * Added test for missing certificates for https://s3.amazonaws.com or
3086
3149
  https://rubygems.org. Pull request #673 by Hannes Georg.
3087
3150
 
3088
- === 1.8.27 / 2013-09-24
3151
+ # 1.8.27 / 2013-09-24
3089
3152
 
3090
3153
  Security fixes:
3091
3154
 
@@ -3094,7 +3157,7 @@ Security fixes:
3094
3157
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3095
3158
  1.8.23.2 (for Ruby 1.9.3).
3096
3159
 
3097
- === 1.8.26 / 2013-09-09
3160
+ # 1.8.26 / 2013-09-09
3098
3161
 
3099
3162
  Security fixes:
3100
3163
 
@@ -3103,13 +3166,13 @@ Security fixes:
3103
3166
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3104
3167
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3105
3168
 
3106
- Bug fixes:
3169
+ ## Bug fixes:
3107
3170
 
3108
3171
  * Fixed editing of a Makefile with 8-bit characters. Fixes #181
3109
3172
 
3110
- === 1.8.25 / 2013-01-24
3173
+ # 1.8.25 / 2013-01-24
3111
3174
 
3112
- Bug fixes:
3175
+ ## Bug fixes:
3113
3176
  * Added 11627 to setup bin_file location to protect against errors. Fixes
3114
3177
  #328 by ConradIrwin
3115
3178
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -3118,14 +3181,14 @@ Bug fixes:
3118
3181
  * Fix missing load_yaml in YAML-related requirement.rb code.
3119
3182
  * Manually backport encoding-aware YAML gemspec
3120
3183
 
3121
- === 1.8.24 / 2012-04-27
3184
+ # 1.8.24 / 2012-04-27
3122
3185
 
3123
- Bug fixes:
3186
+ ## Bug fixes:
3124
3187
 
3125
3188
  * Install the .pem files properly. Fixes #320
3126
3189
  * Remove OpenSSL dependency from the http code path
3127
3190
 
3128
- === 1.8.23.2 / 2013-09-24
3191
+ # 1.8.23.2 / 2013-09-24
3129
3192
 
3130
3193
  Security fixes:
3131
3194
 
@@ -3134,7 +3197,7 @@ Security fixes:
3134
3197
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3135
3198
  1.8.23.2 (for Ruby 1.9.3).
3136
3199
 
3137
- === 1.8.23.1 / 2013-09-09
3200
+ # 1.8.23.1 / 2013-09-09
3138
3201
 
3139
3202
  Security fixes:
3140
3203
 
@@ -3143,7 +3206,7 @@ Security fixes:
3143
3206
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3144
3207
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3145
3208
 
3146
- === 1.8.23 / 2012-04-19
3209
+ # 1.8.23 / 2012-04-19
3147
3210
 
3148
3211
  This release increases the security used when RubyGems is talking to
3149
3212
  an https server. If you use a custom RubyGems server over SSL, this
@@ -3163,49 +3226,49 @@ Security fixes:
3163
3226
  * Disallow redirects from https to http
3164
3227
  * Turn on verification of server SSL certs
3165
3228
 
3166
- Enhancements:
3229
+ ## Enhancements:
3167
3230
  * Add --clear-sources to fetch
3168
3231
 
3169
- Bug fixes:
3232
+ ## Bug fixes:
3170
3233
  * Use File.identical? to check if two files are the same.
3171
3234
  * Fixed init_with warning when using psych
3172
3235
 
3173
- === 1.8.22 / 2012-04-13
3236
+ # 1.8.22 / 2012-04-13
3174
3237
 
3175
- Bug fixes:
3238
+ ## Bug fixes:
3176
3239
 
3177
3240
  * Workaround for psych/syck YAML date parsing issue
3178
3241
  * Don't trust the encoding of ARGV. Fixes #307
3179
3242
  * Quiet default warnings about missing spec variables
3180
3243
  * Read a binary file properly (windows fix)
3181
3244
 
3182
- === 1.8.21 / 2012-03-22
3245
+ # 1.8.21 / 2012-03-22
3183
3246
 
3184
- Bug fixes:
3247
+ ## Bug fixes:
3185
3248
 
3186
3249
  * Add workaround for buggy yaml output from 1.9.2
3187
3250
  * Force 1.9.1 to remove it's prelude code. Fixes #305
3188
3251
 
3189
- === 1.8.20 / 2012-03-21
3252
+ # 1.8.20 / 2012-03-21
3190
3253
 
3191
- Bug fixes:
3254
+ ## Bug fixes:
3192
3255
 
3193
3256
  * Add --force to `gem build` to skip validation. Fixes #297
3194
3257
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
3195
3258
  * Treat the source as a proper url base. Fixes #304
3196
3259
  * Warn when updating the specs cache fails. Fixes #300
3197
3260
 
3198
- === 1.8.19 / 2012-03-14
3261
+ # 1.8.19 / 2012-03-14
3199
3262
 
3200
- Bug fixes:
3263
+ ## Bug fixes:
3201
3264
 
3202
3265
  * Handle loading psych vs syck properly. Fixes #298
3203
3266
  * Make sure Date objects don't leak in via Marshal
3204
3267
  * Perform Date => Time coercion on yaml loading. Fixes #266
3205
3268
 
3206
- === 1.8.18 / 2012-03-11
3269
+ # 1.8.18 / 2012-03-11
3207
3270
 
3208
- Bug fixes:
3271
+ ## Bug fixes:
3209
3272
 
3210
3273
  * Use Psych API to emit more compatible YAML
3211
3274
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -3213,14 +3276,14 @@ Bug fixes:
3213
3276
  * Search everywhere for a spec for `gem spec`. Fixes #288
3214
3277
  * Fix Gem.all_load_path. Fixes #171
3215
3278
 
3216
- === 1.8.17 / 2012-02-17
3279
+ # 1.8.17 / 2012-02-17
3217
3280
 
3218
- Enhancements:
3281
+ ## Enhancements:
3219
3282
 
3220
3283
  * Add MacRuby to the list of special cases for platforms (ferrous26)
3221
3284
  * Add a default for where to install rubygems itself
3222
3285
 
3223
- Bug fixes:
3286
+ ## Bug fixes:
3224
3287
 
3225
3288
  * Fixed gem loading issue caused by dependencies not resolving.
3226
3289
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -3228,59 +3291,59 @@ Bug fixes:
3228
3291
  * Define SUCKAGE better, ie only MRI 1.9.2
3229
3292
  * Propagate env-shebang to the pristine command if set for install.
3230
3293
 
3231
- === 1.8.16 / 2012-02-12
3294
+ # 1.8.16 / 2012-02-12
3232
3295
 
3233
- Bug fixes:
3296
+ ## Bug fixes:
3234
3297
 
3235
3298
  * Fix gem specification loading when encoding is not UTF-8. #146
3236
3299
  * Allow group writable if umask allows it already.
3237
3300
  * Uniquify the spec list based on directory order priority
3238
3301
 
3239
- === 1.8.15 / 2012-01-06
3302
+ # 1.8.15 / 2012-01-06
3240
3303
 
3241
- Bug fixes:
3304
+ ## Bug fixes:
3242
3305
 
3243
3306
  * Don't eager load yaml, it creates a bad loop. Fixes #256
3244
3307
 
3245
- === 1.8.14 / 2012-01-05
3308
+ # 1.8.14 / 2012-01-05
3246
3309
 
3247
- Bug fixes:
3310
+ ## Bug fixes:
3248
3311
 
3249
3312
  * Ignore old/bad cache data in Version
3250
3313
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
3251
3314
 
3252
- === 1.8.13 / 2011-12-21
3315
+ # 1.8.13 / 2011-12-21
3253
3316
 
3254
- Bug fixes:
3317
+ ## Bug fixes:
3255
3318
 
3256
3319
  * Check loaded_specs properly when trying to satisfy a dep
3257
3320
 
3258
- Enhancements:
3321
+ ## Enhancements:
3259
3322
 
3260
3323
  * Remove using #loaded_path? for performance
3261
3324
  * Remove Zlib workaround for Windows build.
3262
3325
 
3263
- === 1.8.12 / 2011-12-02
3326
+ # 1.8.12 / 2011-12-02
3264
3327
 
3265
- Bug fixes:
3328
+ ## Bug fixes:
3266
3329
 
3267
3330
  * Handle more cases where Syck's DefaultKey showed up in requirements
3268
3331
  and wasn't cleaned out.
3269
3332
 
3270
- === 1.8.11 / 2011-10-03
3333
+ # 1.8.11 / 2011-10-03
3271
3334
 
3272
- Bug fixes:
3335
+ ## Bug fixes:
3273
3336
 
3274
3337
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
3275
3338
  namespace.
3276
3339
 
3277
- === 1.8.10 / 2011-08-25
3340
+ # 1.8.10 / 2011-08-25
3278
3341
 
3279
3342
  RubyGems 1.8.10 contains a security fix that prevents malicious gems from
3280
3343
  executing code when their specification is loaded. See
3281
3344
  https://github.com/rubygems/rubygems/pull/165 for details.
3282
3345
 
3283
- Bug fixes:
3346
+ ## Bug fixes:
3284
3347
 
3285
3348
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
3286
3349
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -3291,21 +3354,21 @@ Bug fixes:
3291
3354
  * Fixed Syck DefaultKey infecting ruby-format specifications.
3292
3355
  * `gem uninstall a b` no longer stops if gem "a" is not installed.
3293
3356
 
3294
- === 1.8.9 / 2011-08-23
3357
+ # 1.8.9 / 2011-08-23
3295
3358
 
3296
- Bug fixes:
3359
+ ## Bug fixes:
3297
3360
 
3298
3361
  * Fixed uninstalling multiple gems using `gem uninstall`
3299
3362
  * Gem.use_paths splatted to take multiple paths! Issue #148
3300
3363
 
3301
- === 1.8.8 / 2011-08-11
3364
+ # 1.8.8 / 2011-08-11
3302
3365
 
3303
- Bug fixes:
3366
+ ## Bug fixes:
3304
3367
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
3305
3368
 
3306
- === 1.8.7 / 2011-08-04
3369
+ # 1.8.7 / 2011-08-04
3307
3370
 
3308
- Bug fixes:
3371
+ ## Bug fixes:
3309
3372
  * Added missing require for `gem uninstall --format-executable`
3310
3373
  * The correct name of the executable being uninstalled is now displayed with
3311
3374
  --format-executable
@@ -3317,14 +3380,14 @@ Bug fixes:
3317
3380
  * Gem repository directories are no longer created world-writable. Patch by
3318
3381
  Sakuro OZAWA. Ruby Bug #4930
3319
3382
 
3320
- === 1.8.6 / 2011-07-25
3383
+ # 1.8.6 / 2011-07-25
3321
3384
 
3322
- Enhancements:
3385
+ ## Enhancements:
3323
3386
 
3324
3387
  * Add autorequires and delay startup of RubyGems until require is called.
3325
3388
  See Ruby bug #4962
3326
3389
 
3327
- Bug fixes:
3390
+ ## Bug fixes:
3328
3391
 
3329
3392
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
3330
3393
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -3336,27 +3399,27 @@ Bug fixes:
3336
3399
  * Handle the Syck DefaultKey problem once and for all.
3337
3400
  * Fix SystemStackError occurring with "gem list -r -a" on 1.9.
3338
3401
 
3339
- === 1.8.5 / 2011-05-31
3402
+ # 1.8.5 / 2011-05-31
3340
3403
 
3341
- Enhancements:
3404
+ ## Enhancements:
3342
3405
 
3343
3406
  * The -u option to 'update local source cache' is official deprecated.
3344
3407
  * Remove has_rdoc deprecations from Specification.
3345
3408
 
3346
- Bug fixes:
3409
+ ## Bug fixes:
3347
3410
 
3348
3411
  * Handle bad specs more gracefully.
3349
3412
  * Reset any Gem paths changed in the installer.
3350
3413
 
3351
- === 1.8.4 / 2011-05-25
3414
+ # 1.8.4 / 2011-05-25
3352
3415
 
3353
- Enhancements:
3416
+ ## Enhancements:
3354
3417
 
3355
3418
  * Removed default_executable deprecations from Specification.
3356
3419
 
3357
- === 1.8.3 / 2011-05-19
3420
+ # 1.8.3 / 2011-05-19
3358
3421
 
3359
- Bug fixes:
3422
+ ## Bug fixes:
3360
3423
 
3361
3424
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
3362
3425
  Shota Fukumori
@@ -3365,33 +3428,33 @@ Bug fixes:
3365
3428
  * Fixed some bad calls left behind after rolling out some refactorings.
3366
3429
  * Syck has a parse error on (good) times output from Psych. (dazuma, et al)
3367
3430
 
3368
- === 1.8.2 / 2011-05-11
3431
+ # 1.8.2 / 2011-05-11
3369
3432
 
3370
- Enhancements:
3433
+ ## Enhancements:
3371
3434
 
3372
3435
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
3373
3436
  * Print out a warning about missing executables.
3374
3437
 
3375
- Bug fixes:
3438
+ ## Bug fixes:
3376
3439
 
3377
3440
  * Added missing requires to fix various upgrade issues.
3378
3441
  * `gem pristine` respects multiple gem repositories.
3379
3442
  * setup.rb now execs with --disable-gems when possible
3380
3443
 
3381
- === 1.8.1 / 2011-05-05
3444
+ # 1.8.1 / 2011-05-05
3382
3445
 
3383
- Enhancements:
3446
+ ## Enhancements:
3384
3447
 
3385
3448
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
3386
3449
 
3387
- Bug fixes:
3450
+ ## Bug fixes:
3388
3451
 
3389
3452
  * Typo on Indexer rendered it useless on Windows
3390
3453
  * gem dep can fetch remote dependencies for non-latest gems again.
3391
3454
  * gem uninstall with multiple versions no longer crashes with ArgumentError
3392
3455
  * Always use binary mode for File.open to keep Windows happy
3393
3456
 
3394
- === 1.8.0 / 2011-04-34
3457
+ # 1.8.0 / 2011-04-34
3395
3458
 
3396
3459
  This release focused on properly encapsulating functionality. Most of this
3397
3460
  work focused on moving functionality out of Gem::SourceIndex and
@@ -3406,7 +3469,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
3406
3469
  --build-arg` to regenerate a gem with an extension where it requires special
3407
3470
  build arguments.
3408
3471
 
3409
- Deprecations:
3472
+ ## Deprecations:
3410
3473
 
3411
3474
  * DependencyList.from_source_index deprecated the source_index argument.
3412
3475
  * Deprecated Dependency.new(/regex/).
@@ -3427,7 +3490,7 @@ Deprecations:
3427
3490
  * Deprecated all of Gem::GemPathSearcher.
3428
3491
  * Deprecated Gem::Specification#default_executable.
3429
3492
 
3430
- Enhancements:
3493
+ ## Enhancements:
3431
3494
 
3432
3495
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
3433
3496
  Gem::SourceIndex is completely disconnected from Gem::Specification
@@ -3479,7 +3542,7 @@ Enhancements:
3479
3542
  extensions.
3480
3543
  * `gem pristine` can now restore multiple gems.
3481
3544
 
3482
- Bug fixes:
3545
+ ## Bug fixes:
3483
3546
 
3484
3547
  * DependencyInstaller passed around a source_index instance but used
3485
3548
  Gem.source_index.
@@ -3491,15 +3554,15 @@ Bug fixes:
3491
3554
  * `gem pristine` can now restore non-latest gems where the cached gem was
3492
3555
  removed.
3493
3556
 
3494
- === 1.7.1 / 2011-03-32
3557
+ # 1.7.1 / 2011-03-32
3495
3558
 
3496
- Bug fixes:
3559
+ ## Bug fixes:
3497
3560
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
3498
3561
  `rake check_manifest` showing a diff would not exit with an error.)
3499
3562
 
3500
- === 1.7.0 / 2011-03-32
3563
+ # 1.7.0 / 2011-03-32
3501
3564
 
3502
- Deprecations:
3565
+ ## Deprecations:
3503
3566
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
3504
3567
  cache.
3505
3568
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -3511,7 +3574,7 @@ Deprecations:
3511
3574
  test_suite_file(=).
3512
3575
  * Deprecated Specification#has_rdoc= and default_executable=
3513
3576
 
3514
- Enhancements:
3577
+ ## Enhancements:
3515
3578
  * Added stupid simple deprecation module.
3516
3579
  * Added --spec option to `gem unpack` to output a gem's original metadata
3517
3580
  * Added packaging option to Specification#validate
@@ -3543,7 +3606,7 @@ Enhancements:
3543
3606
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
3544
3607
  * UpdateCommand#which_to_update now takes an optional system argument.
3545
3608
 
3546
- Bug fixes:
3609
+ ## Bug fixes:
3547
3610
  * Added missing remote fetcher require to pristine command (aarnell)
3548
3611
  * Building gems now checks to ensure all required fields are non-nil
3549
3612
  * Fix option parser when summary is nil.
@@ -3559,17 +3622,17 @@ Bug fixes:
3559
3622
  Elias Baixas
3560
3623
  * `gem update` now uniq's command line arguments.
3561
3624
 
3562
- === 1.6.2 / 2011-03-08
3625
+ # 1.6.2 / 2011-03-08
3563
3626
 
3564
- Bug fixes:
3627
+ ## Bug fixes:
3565
3628
 
3566
3629
  * require of an activated gem could cause activation conflicts. Fixes
3567
3630
  Bug #29056 by Dave Verwer.
3568
3631
  * `gem outdated` now works with up-to-date prerelease gems.
3569
3632
 
3570
- === 1.6.1 / 2011-03-03
3633
+ # 1.6.1 / 2011-03-03
3571
3634
 
3572
- Bug fixes:
3635
+ ## Bug fixes:
3573
3636
 
3574
3637
  * Installation no longer fails when a dependency from a version that won't be
3575
3638
  installed is unsatisfied.
@@ -3578,9 +3641,9 @@ Bug fixes:
3578
3641
  * Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
3579
3642
  * Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
3580
3643
 
3581
- === 1.6.0 / 2011-02-29
3644
+ # 1.6.0 / 2011-02-29
3582
3645
 
3583
- Deprecations:
3646
+ ## Deprecations:
3584
3647
 
3585
3648
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
3586
3649
  'thread' to their applications.
@@ -3589,7 +3652,7 @@ Deprecations:
3589
3652
  * Gem::LoadError#version_requirements has been removed. Use
3590
3653
  Gem::LoadError#requirement.
3591
3654
 
3592
- Enhancements:
3655
+ ## Enhancements:
3593
3656
 
3594
3657
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
3595
3658
  * Gem::LoadError#version_requirement has been removed. Use
@@ -3617,7 +3680,7 @@ Enhancements:
3617
3680
  locally cached gem specifications.
3618
3681
  * SpecFetcher.fetch_spec can now take a string source_uri.
3619
3682
 
3620
- Bug fixes:
3683
+ ## Bug fixes:
3621
3684
 
3622
3685
  * Added missing require of Gem::RemoteFetcher to the unpack command.
3623
3686
  * RubyGems now completely removes a previous install when reinstalling.
@@ -3630,28 +3693,28 @@ Bug fixes:
3630
3693
  * Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
3631
3694
  * Gem::Uninstaller now respects --format-executable.
3632
3695
 
3633
- === 1.5.3 / 2011-02-26
3696
+ # 1.5.3 / 2011-02-26
3634
3697
 
3635
- Bug fixes:
3698
+ ## Bug fixes:
3636
3699
 
3637
3700
  * Fix for a bug in Syck which causes install failures for gems packaged with
3638
3701
  Psych. Bug #28965 by Aaron Patterson.
3639
3702
 
3640
- === 1.5.2 / 2011-02-10
3703
+ # 1.5.2 / 2011-02-10
3641
3704
 
3642
- Bug fixes:
3705
+ ## Bug fixes:
3643
3706
 
3644
3707
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
3645
3708
 
3646
- === 1.5.1 / 2011-02-09
3709
+ # 1.5.1 / 2011-02-09
3647
3710
 
3648
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3711
+ #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3649
3712
 
3650
- Enhancements:
3713
+ ## Enhancements:
3651
3714
 
3652
3715
  * Added ability to do gem update --system X.Y.Z.
3653
3716
 
3654
- Bug fixes:
3717
+ ## Bug fixes:
3655
3718
 
3656
3719
  * Scrub !!null YAML from 1.9.2 (install and build).
3657
3720
  * Added missing requires for user_interaction.
@@ -3660,11 +3723,11 @@ Bug fixes:
3660
3723
  * Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
3661
3724
  * RubyGems now enforces ruby 1.8.7 or newer.
3662
3725
 
3663
- === 1.5.0 / 2011-01-31
3726
+ # 1.5.0 / 2011-01-31
3664
3727
 
3665
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3728
+ #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3666
3729
 
3667
- Enhancements:
3730
+ ## Enhancements:
3668
3731
 
3669
3732
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
3670
3733
  * Merged huge 1.3.7/ruby-core changes to master.
@@ -3679,7 +3742,7 @@ Enhancements:
3679
3742
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
3680
3743
  Erik Hollensbe.
3681
3744
 
3682
- Bug fixes:
3745
+ ## Bug fixes:
3683
3746
 
3684
3747
  * `gem update` was implicitly doing --system.
3685
3748
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -3691,25 +3754,25 @@ Bug fixes:
3691
3754
  Erik Hollensbe.
3692
3755
  * rubygems-update lists its development dependencies again
3693
3756
 
3694
- === 1.4.2 / 2011-01-06
3757
+ # 1.4.2 / 2011-01-06
3695
3758
 
3696
- Bug fixes:
3759
+ ## Bug fixes:
3697
3760
 
3698
3761
  * Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
3699
3762
  * Fixed Gem.find_files.
3700
3763
  * Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
3701
3764
 
3702
- === 1.4.1 / 2010-12-31
3765
+ # 1.4.1 / 2010-12-31
3703
3766
 
3704
3767
  Since apparently nobody reads my emails, blog posts or the README:
3705
3768
 
3706
3769
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
3707
3770
 
3708
- Bug fixes:
3771
+ ## Bug fixes:
3709
3772
 
3710
3773
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
3711
3774
 
3712
- === 1.4.0 / 2010-12-30
3775
+ # 1.4.0 / 2010-12-30
3713
3776
 
3714
3777
  NOTE: In order to better maintain rubygems and to get it in sync with
3715
3778
  the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
@@ -3719,7 +3782,7 @@ You have been warned!
3719
3782
 
3720
3783
  NOTE: We've switched to git/github. See README.rdoc for details.
3721
3784
 
3722
- Features:
3785
+ ## Features:
3723
3786
 
3724
3787
  * Added --launch option to `gem server`. (gthiesfeld)
3725
3788
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -3729,7 +3792,7 @@ Features:
3729
3792
  * --source is now additive with your current sources.
3730
3793
  Use --clear-sources first to maintain previous behavior.
3731
3794
 
3732
- Bug fixes:
3795
+ ## Bug fixes:
3733
3796
 
3734
3797
  * Dependency "~>"s now respect lower-bound prerelease versions.
3735
3798
  * Ensure the gem directories exist on download.
@@ -3740,7 +3803,7 @@ Bug fixes:
3740
3803
  Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
3741
3804
  * Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
3742
3805
 
3743
- === 1.3.7 / 2010-05-13
3806
+ # 1.3.7 / 2010-05-13
3744
3807
 
3745
3808
  NOTE:
3746
3809
 
@@ -3751,7 +3814,7 @@ http://gems.rubyforge.org with https://rubygems.org/
3751
3814
 
3752
3815
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3753
3816
 
3754
- Features:
3817
+ ## Features:
3755
3818
 
3756
3819
  * `gem` commands
3757
3820
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -3770,7 +3833,7 @@ Features:
3770
3833
  in 1.3.6)
3771
3834
  * RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
3772
3835
 
3773
- Bug fixes:
3836
+ ## Bug fixes:
3774
3837
 
3775
3838
  * Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
3776
3839
  Roger Pack.
@@ -3782,9 +3845,9 @@ Bug fixes:
3782
3845
  * Gem::PackageTask depends on the package dir like the other rake package
3783
3846
  tasks so dependencies can be hooked up correctly.
3784
3847
 
3785
- === 1.3.6 / 2010-02-17
3848
+ # 1.3.6 / 2010-02-17
3786
3849
 
3787
- Features:
3850
+ ## Features:
3788
3851
 
3789
3852
  * `gem` commands
3790
3853
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -3796,7 +3859,7 @@ Features:
3796
3859
  force rebuilding. Patch #25982 by Akinori MUSHA.
3797
3860
  * Capital letters are now allowed in prerelease versions.
3798
3861
 
3799
- Bug fixes:
3862
+ ## Bug fixes:
3800
3863
 
3801
3864
  * Development deps are no longer added to rubygems-update gem so older
3802
3865
  versions can update successfully.
@@ -3815,7 +3878,7 @@ Bug fixes:
3815
3878
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
3816
3879
  Patch #27409 by Jakub Šťastný.
3817
3880
 
3818
- Deprecations:
3881
+ ## Deprecations:
3819
3882
 
3820
3883
  * lib/rubygems/timer.rb has been removed.
3821
3884
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -3824,23 +3887,23 @@ Deprecations:
3824
3887
  * Gem::manage_gems was removed in 1.3.3.
3825
3888
  * Time::today was removed in 1.3.3.
3826
3889
 
3827
- === 1.3.5 / 2009-07-21
3890
+ # 1.3.5 / 2009-07-21
3828
3891
 
3829
- Bug fixes:
3892
+ ## Bug fixes:
3830
3893
 
3831
3894
  * Fix use of prerelease gems.
3832
3895
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
3833
3896
 
3834
- Deprecations:
3897
+ ## Deprecations:
3835
3898
 
3836
3899
  * Bulk index update is no longer supported (the code currently remains, but not
3837
3900
  the tests)
3838
3901
  * Gem::manage_gems was removed in 1.3.3.
3839
3902
  * Time::today was removed in 1.3.3.
3840
3903
 
3841
- === 1.3.4 / 2009-05-03
3904
+ # 1.3.4 / 2009-05-03
3842
3905
 
3843
- Bug fixes:
3906
+ ## Bug fixes:
3844
3907
 
3845
3908
  * Fixed various warnings
3846
3909
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -3851,16 +3914,16 @@ Bug fixes:
3851
3914
  drives. Bug #25882 by Lars Christensen
3852
3915
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
3853
3916
 
3854
- Deprecations:
3917
+ ## Deprecations:
3855
3918
 
3856
3919
  * Bulk index update is no longer supported (the code currently remains, but not
3857
3920
  the tests)
3858
3921
  * Gem::manage_gems was removed in 1.3.3.
3859
3922
  * Time::today was removed in 1.3.3.
3860
3923
 
3861
- === 1.3.3 / 2009-05-04
3924
+ # 1.3.3 / 2009-05-04
3862
3925
 
3863
- Features:
3926
+ ## Features:
3864
3927
 
3865
3928
  * `gem server` allows port names (from /etc/services) with --port.
3866
3929
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -3870,7 +3933,7 @@ Features:
3870
3933
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
3871
3934
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
3872
3935
 
3873
- Bug fixes:
3936
+ ## Bug fixes:
3874
3937
 
3875
3938
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
3876
3939
  Eisenberg.
@@ -3892,15 +3955,15 @@ Bug fixes:
3892
3955
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
3893
3956
  reported by Alf Mikula.
3894
3957
 
3895
- Deprecations:
3958
+ ## Deprecations:
3896
3959
 
3897
3960
  * Gem::manage_gems has been removed.
3898
3961
  * Time::today has been removed early. There was no way to make it warn and be
3899
3962
  easy to override with user code.
3900
3963
 
3901
- === 1.3.2 / 2009-04-15
3964
+ # 1.3.2 / 2009-04-15
3902
3965
 
3903
- Features:
3966
+ ## Features:
3904
3967
 
3905
3968
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
3906
3969
  This can be used to add commands (See Gem::CommandManager) or add
@@ -3928,7 +3991,7 @@ Features:
3928
3991
  * Modern indicies can now be updated incrementally.
3929
3992
  * Legacy indicies can be updated separately from modern.
3930
3993
 
3931
- Bug fixes:
3994
+ ## Bug fixes:
3932
3995
 
3933
3996
  * Better gem activation error message. Patch #23082.
3934
3997
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -3954,7 +4017,7 @@ Bug fixes:
3954
4017
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
3955
4018
  Windows. Bug #22712.
3956
4019
 
3957
- Deprecations:
4020
+ ## Deprecations:
3958
4021
 
3959
4022
  * Gem::manage_gems has been removed.
3960
4023
  * Time::today will be removed in RubyGems 1.4.
@@ -3962,9 +4025,9 @@ Deprecations:
3962
4025
  Special thanks to Chad Wooley for backwards compatibility testing and Luis
3963
4026
  Lavena and Daniel Berger for continuing windows support.
3964
4027
 
3965
- === 1.3.1 / 2008-10-28
4028
+ # 1.3.1 / 2008-10-28
3966
4029
 
3967
- Bug fixes:
4030
+ ## Bug fixes:
3968
4031
 
3969
4032
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
3970
4033
  issues related to no uid support under Windows.
@@ -3975,13 +4038,13 @@ Bug fixes:
3975
4038
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
3976
4039
  * Silence PATH warning.
3977
4040
 
3978
- Deprecations:
4041
+ ## Deprecations:
3979
4042
 
3980
4043
  * Gem::manage_gems will be removed on or after March 2009.
3981
4044
 
3982
- === 1.3.0 / 2008-09-25
4045
+ # 1.3.0 / 2008-09-25
3983
4046
 
3984
- Features:
4047
+ ## Features:
3985
4048
 
3986
4049
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
3987
4050
  stdout is not a TTY, except with --both.
@@ -3995,12 +4058,12 @@ Features:
3995
4058
  * RubyGems now updates the ri cache when the rdoc gem is installed and
3996
4059
  documentation is generated.
3997
4060
 
3998
- Deprecations:
4061
+ ## Deprecations:
3999
4062
 
4000
4063
  * Gem::manage_gems now warns when called. It will be removed on or after March
4001
4064
  2009.
4002
4065
 
4003
- Bug fixes:
4066
+ ## Bug fixes:
4004
4067
 
4005
4068
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
4006
4069
  Bug #20775 by Hemant Kumar.
@@ -4024,7 +4087,7 @@ Bug fixes:
4024
4087
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
4025
4088
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
4026
4089
 
4027
- Enhancements:
4090
+ ## Enhancements:
4028
4091
 
4029
4092
  * `gem help install` now describes _version_ argument to executable stubs
4030
4093
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -4050,9 +4113,9 @@ Enhancements:
4050
4113
  * test/test_ext_configure_builder.rb
4051
4114
  * Locale-free patch by Yusuke Endoh [ruby-core:17444].
4052
4115
 
4053
- === 1.2.0 / 2008-06-21
4116
+ # 1.2.0 / 2008-06-21
4054
4117
 
4055
- Features:
4118
+ ## Features:
4056
4119
 
4057
4120
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
4058
4121
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -4071,7 +4134,7 @@ Features:
4071
4134
  * setup.rb now handles --vendor and --destdir for packagers
4072
4135
  * `gem stale` command that lists gems by last access time
4073
4136
 
4074
- Bug fixes:
4137
+ ## Bug fixes:
4075
4138
 
4076
4139
  * File modes from gems are now honored, patch #19737
4077
4140
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -4086,7 +4149,7 @@ Bug fixes:
4086
4149
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
4087
4150
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
4088
4151
 
4089
- Enhancements:
4152
+ ## Enhancements:
4090
4153
 
4091
4154
  * setup.rb
4092
4155
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -4105,9 +4168,9 @@ Enhancements:
4105
4168
  * Gem::RemoteFetcher now performs persistent connections for HEAD requests,
4106
4169
  bug #7973
4107
4170
 
4108
- === 1.1.1 / 2008-04-11
4171
+ # 1.1.1 / 2008-04-11
4109
4172
 
4110
- Bug fixes:
4173
+ ## Bug fixes:
4111
4174
 
4112
4175
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
4113
4176
  sitelibdir or libdir.
@@ -4122,9 +4185,9 @@ Bug fixes:
4122
4185
  * Gem::RemoteFetcher handles Errno::ECONNABORTED.
4123
4186
  * Printing of release notes fixed.
4124
4187
 
4125
- === 1.1.0 / 2008-03-29
4188
+ # 1.1.0 / 2008-03-29
4126
4189
 
4127
- Features:
4190
+ ## Features:
4128
4191
 
4129
4192
  * RubyGems now uses persistent connections on index updates. Index updates are
4130
4193
  much faster now.
@@ -4136,7 +4199,7 @@ Features:
4136
4199
  * `gem spec` now extracts specifications from .gem files.
4137
4200
  * `gem query --installed` to aid automation of checking for gems.
4138
4201
 
4139
- Bug fixes:
4202
+ ## Bug fixes:
4140
4203
 
4141
4204
  * RubyGems works with both Config and RbConfig now.
4142
4205
  * Executables are now cleaned upon uninstall.
@@ -4152,7 +4215,7 @@ Bug fixes:
4152
4215
  * Gem stub scripts on windows now work outside Gem.bindir.
4153
4216
  * `gem sources -r` now works without network access.
4154
4217
 
4155
- Enhancements:
4218
+ ## Enhancements:
4156
4219
 
4157
4220
  * RubyGems now requires Ruby > 1.8.3.
4158
4221
  * Release notes are now printed upon installation.
@@ -4163,26 +4226,26 @@ Enhancements:
4163
4226
 
4164
4227
  For a full list of changes to RubyGems, see the ChangeLog file.
4165
4228
 
4166
- === 1.0.1 / 2007-12-20
4229
+ # 1.0.1 / 2007-12-20
4167
4230
 
4168
- Bug fixes:
4231
+ ## Bug fixes:
4169
4232
 
4170
4233
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
4171
4234
  * `gem build` on 1.8.3 fixed
4172
4235
 
4173
- Enhancements:
4236
+ ## Enhancements:
4174
4237
 
4175
4238
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
4176
4239
  this is official in RubyGems 1.0.1.
4177
4240
 
4178
- === 1.0.0 / 2007-12-20
4241
+ # 1.0.0 / 2007-12-20
4179
4242
 
4180
- Features:
4243
+ ## Features:
4181
4244
 
4182
4245
  * RubyGems warns about various problems with gemspecs during gem building
4183
4246
  * More-consistent versioning for the RubyGems software
4184
4247
 
4185
- Enhancements:
4248
+ ## Enhancements:
4186
4249
 
4187
4250
  * Fixed various bugs and problems with installing gems on Windows
4188
4251
  * Fixed using `gem server` for installing gems
@@ -4196,7 +4259,7 @@ Enhancements:
4196
4259
  * `gem unpack` can now unpack into a specific directory with --target
4197
4260
  * OpenSSL is no longer required by default
4198
4261
 
4199
- Breaking changes:
4262
+ ## Breaking changes:
4200
4263
 
4201
4264
  * Kernel#require_gem has been removed
4202
4265
  * Executables without a shebang will not be wrapped in a future version, this
@@ -4208,9 +4271,9 @@ Breaking changes:
4208
4271
  * Gem::Specification#autorequire= has been deprecated
4209
4272
  * Time::today will be removed in a future version
4210
4273
 
4211
- === 0.9.5 / 2007-11-19
4274
+ # 0.9.5 / 2007-11-19
4212
4275
 
4213
- Features:
4276
+ ## Features:
4214
4277
 
4215
4278
  * Platform support
4216
4279
  * Automatic installation of platform gems
@@ -4222,7 +4285,7 @@ Features:
4222
4285
  * Improved stubs and `gem.bat` on mswin, including better compatibility
4223
4286
  with the One-Click Installer.
4224
4287
 
4225
- Enhancements:
4288
+ ## Enhancements:
4226
4289
 
4227
4290
  * Time::today is deprecated and will be removed at a future date
4228
4291
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -4267,13 +4330,13 @@ Special thanks to:
4267
4330
  * Tom Copeland
4268
4331
  * Wilson Bilkovich
4269
4332
 
4270
- === 0.9.4 / 2007-05-23
4333
+ # 0.9.4 / 2007-05-23
4271
4334
 
4272
4335
  If you are experiencing problems with the source index (e.g. strange
4273
4336
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
4274
4337
  messsage), we recommend upgrading to RubyGems 0.9.4.
4275
4338
 
4276
- Bug fixes:
4339
+ ## Bug fixes:
4277
4340
 
4278
4341
  * Several people have been experiencing problems with no method errors
4279
4342
  on the source index cache. The source index cache is now a bit more
@@ -4285,9 +4348,9 @@ Bug fixes:
4285
4348
  * Several sub-commands were accidentally dropped from the "gem" command.
4286
4349
  These commands have been restored.
4287
4350
 
4288
- === 0.9.3 / 2007-05-10
4351
+ # 0.9.3 / 2007-05-10
4289
4352
 
4290
- Bug fixes:
4353
+ ## Bug fixes:
4291
4354
 
4292
4355
  The ZLib library on Windows will occasionally complains about a buffer error
4293
4356
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -4295,19 +4358,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
4295
4358
  have received several reports of the error occurring with ZLib 1.2.3, so we
4296
4359
  have permanently enabled the work around on all versions.
4297
4360
 
4298
- === 0.9.2 / 2007-02-05
4361
+ # 0.9.2 / 2007-02-05
4299
4362
 
4300
- Bug fixes:
4363
+ ## Bug fixes:
4301
4364
 
4302
4365
  * The "unpack" command now works properly.
4303
4366
  * User name and password are now passed properly to the authenticating
4304
4367
  proxy when downloading gems.
4305
4368
 
4306
- === 0.9.1 / 2007-01-16
4369
+ # 0.9.1 / 2007-01-16
4307
4370
 
4308
4371
  See ChangeLog
4309
4372
 
4310
- === 0.9.0 / 2006-06-28
4373
+ # 0.9.0 / 2006-06-28
4311
4374
 
4312
4375
  Finally, the much anticipated RubyGems version 0.9.0 is now available.
4313
4376
  This release includes a number of new features and bug fixes. The
@@ -4315,7 +4378,7 @@ number one change is that we can now download the gem index
4315
4378
  incrementally. This will greatly speed up the gem command when only a
4316
4379
  few gems are out of date.
4317
4380
 
4318
- Enhancements:
4381
+ ## Enhancements:
4319
4382
 
4320
4383
  * The gem index is now downloaded incrementally, only updating entries
4321
4384
  that are out of date. If more than 50 entries are out of date, we
@@ -4342,7 +4405,7 @@ Enhancements:
4342
4405
  * .rbw is now a supported suffix for RubyGem's custom require.
4343
4406
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
4344
4407
 
4345
- Bug fixes:
4408
+ ## Bug fixes:
4346
4409
 
4347
4410
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
4348
4411
  cross-Ruby version compatibility issues.
@@ -4354,7 +4417,7 @@ Bug fixes:
4354
4417
  * Fixed prefix handling for native expressions (patch by Aaron Patterson).
4355
4418
  * Fixed several Upgrade => Update typos.
4356
4419
 
4357
- === 0.8.11 / 2005-07-13
4420
+ # 0.8.11 / 2005-07-13
4358
4421
 
4359
4422
  * -y is a synonym for --include-dependencies.
4360
4423
  * Better handling of errors in the top level rescue clause.
@@ -4373,7 +4436,7 @@ Bug fixes:
4373
4436
  * Added David Glasser's install-from-mirror patch.
4374
4437
  * Additional internal structural cleanup and test reorganization.
4375
4438
 
4376
- === 0.8.10 / 2005-03-27
4439
+ # 0.8.10 / 2005-03-27
4377
4440
 
4378
4441
  * In multi-user environments, it is common to supply multiple versions of gems
4379
4442
  (for example Rails), allowing individual users to select the version of the
@@ -4384,16 +4447,16 @@ Bug fixes:
4384
4447
  installed, then the "gem update --system" command will download a new
4385
4448
  update, but install the latest update prior to the download.
4386
4449
 
4387
- === 0.8.9
4450
+ # 0.8.9
4388
4451
 
4389
4452
  Never released
4390
4453
 
4391
- === 0.8.8 / 2005-03-14
4454
+ # 0.8.8 / 2005-03-14
4392
4455
 
4393
4456
  * Moved the master definition of class Requirement back under version.
4394
4457
  Kept the body of Requirement under Gem.
4395
4458
 
4396
- === 0.8.7 / 2005-03-14
4459
+ # 0.8.7 / 2005-03-14
4397
4460
 
4398
4461
  Even though it has only been a few weeks since that last release,
4399
4462
  there are quite a number of new features in 0.8.7. A complete list of
@@ -4446,11 +4509,11 @@ file system. You can read more about them here:
4446
4509
  * gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
4447
4510
  * gemwhich: http://docs.rubygems.org/read/chapter/17
4448
4511
 
4449
- === 0.8.6 / 2005-02-27
4512
+ # 0.8.6 / 2005-02-27
4450
4513
 
4451
4514
  * Fixed a small bug with shebang construction
4452
4515
 
4453
- === 0.8.5 / 2005-02-26
4516
+ # 0.8.5 / 2005-02-26
4454
4517
 
4455
4518
  Do you know how you used to dread getting the following message while
4456
4519
  installing gems?
@@ -4472,7 +4535,7 @@ us. No RDoc generation was included in the following times.
4472
4535
  The new caching code is at least 3x faster than previous versions. Woo
4473
4536
  Hoo!
4474
4537
 
4475
- === 0.8.4 / 2005-01-01
4538
+ # 0.8.4 / 2005-01-01
4476
4539
 
4477
4540
  * Rubygems 0.8.3's installer was broken unless you already had an older
4478
4541
  version of RubyGems installed. That's fixed.
@@ -4482,7 +4545,7 @@ Hoo!
4482
4545
  * Support for lower-cased Gem file names (for you, Paul Duncan :)
4483
4546
  * Erik Veenstra's patch for making Gem versions sortable.
4484
4547
 
4485
- === 0.8.3 / 2004-12-07
4548
+ # 0.8.3 / 2004-12-07
4486
4549
 
4487
4550
  No real earth shattering news here, but there were a number of really
4488
4551
  annoying issues involving other libraries that RubyGems depends upon.
@@ -4524,11 +4587,11 @@ There has been some minor usability enhancements and changes ...
4524
4587
  names. This was useful for him while testing libs that he had in
4525
4588
  development.
4526
4589
 
4527
- === 0.8.1 / 2004-09-17
4590
+ # 0.8.1 / 2004-09-17
4528
4591
 
4529
4592
  * Quick release to capture some bug fixes.
4530
4593
 
4531
- === 0.8.0 / 2004-09-15
4594
+ # 0.8.0 / 2004-09-15
4532
4595
 
4533
4596
  * Remove need for library stubs. Set the RUBYOPT environment variable to
4534
4597
  include "rrubygems", and a normal require will find gem files. Continue to
@@ -4551,15 +4614,15 @@ There has been some minor usability enhancements and changes ...
4551
4614
  to pick.
4552
4615
  * Added "gem unpack" for "unpacking" a gem to the current directory
4553
4616
 
4554
- === 0.7.0 / 2004-07-09
4617
+ # 0.7.0 / 2004-07-09
4555
4618
 
4556
4619
  See ChangeLog
4557
4620
 
4558
- === 0.6.1 / 2004-06-08
4621
+ # 0.6.1 / 2004-06-08
4559
4622
 
4560
4623
  See ChangeLog
4561
4624
 
4562
- === 0.6.0 / 2004-06-08
4625
+ # 0.6.0 / 2004-06-08
4563
4626
 
4564
4627
  * Collapse output of --search and --list (and gem_server) operations so that
4565
4628
  each gem is listed only once, with each of its versions listed on the same
@@ -4572,7 +4635,7 @@ See ChangeLog
4572
4635
  spec.required_ruby_version = "> 1.8.0"
4573
4636
  * --install-stub defaults to true, so library stubs are created
4574
4637
 
4575
- === 0.5.0 / 2004-06-06
4638
+ # 0.5.0 / 2004-06-06
4576
4639
 
4577
4640
  * Jim added the ability to specify version constraints to avoid API
4578
4641
  incompatibilities. This has been the subject of much debate for the past
@@ -4595,11 +4658,11 @@ See ChangeLog
4595
4658
  automatically included.
4596
4659
  * Some small bug fixes
4597
4660
 
4598
- === 0.4.0 / 2004-05-30
4661
+ # 0.4.0 / 2004-05-30
4599
4662
 
4600
4663
  * Minor bug fixes including Windows compatibility issues
4601
4664
 
4602
- === 0.3.0 / 2004-04-30
4665
+ # 0.3.0 / 2004-04-30
4603
4666
 
4604
4667
  * Cleanup of command-line arguments and handling. Most commands accept a
4605
4668
  --local or --remote modifier.
@@ -4620,6 +4683,6 @@ See ChangeLog
4620
4683
  * Generally improved error messages (still more work to do)
4621
4684
  * Rearranged gem directory structure for cleanliness.
4622
4685
 
4623
- === 0.2.0 / 2004-03-14
4686
+ # 0.2.0 / 2004-03-14
4624
4687
 
4625
4688
  * Initial public release