byebug 9.0.5 → 11.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +399 -264
  3. data/CONTRIBUTING.md +12 -19
  4. data/GUIDE.md +40 -26
  5. data/LICENSE +18 -18
  6. data/README.md +103 -74
  7. data/exe/byebug +6 -0
  8. data/ext/byebug/breakpoint.c +2 -2
  9. data/ext/byebug/byebug.c +26 -31
  10. data/ext/byebug/byebug.h +44 -28
  11. data/ext/byebug/context.c +45 -32
  12. data/ext/byebug/extconf.rb +7 -5
  13. data/ext/byebug/locker.c +4 -4
  14. data/ext/byebug/threads.c +12 -12
  15. data/lib/byebug/attacher.rb +18 -4
  16. data/lib/byebug/breakpoint.rb +26 -6
  17. data/lib/byebug/command.rb +20 -14
  18. data/lib/byebug/command_list.rb +3 -1
  19. data/lib/byebug/commands/break.rb +36 -22
  20. data/lib/byebug/commands/catch.rb +16 -18
  21. data/lib/byebug/commands/condition.rb +11 -11
  22. data/lib/byebug/commands/continue.rb +32 -12
  23. data/lib/byebug/commands/debug.rb +7 -5
  24. data/lib/byebug/commands/delete.rb +13 -11
  25. data/lib/byebug/commands/disable/breakpoints.rb +7 -5
  26. data/lib/byebug/commands/disable/display.rb +7 -5
  27. data/lib/byebug/commands/disable.rb +8 -6
  28. data/lib/byebug/commands/display.rb +11 -9
  29. data/lib/byebug/commands/down.rb +10 -8
  30. data/lib/byebug/commands/edit.rb +11 -8
  31. data/lib/byebug/commands/enable/breakpoints.rb +7 -5
  32. data/lib/byebug/commands/enable/display.rb +7 -5
  33. data/lib/byebug/commands/enable.rb +8 -6
  34. data/lib/byebug/commands/finish.rb +9 -7
  35. data/lib/byebug/commands/frame.rb +11 -9
  36. data/lib/byebug/commands/help.rb +7 -5
  37. data/lib/byebug/commands/history.rb +7 -5
  38. data/lib/byebug/commands/info/breakpoints.rb +18 -14
  39. data/lib/byebug/commands/info/display.rb +16 -9
  40. data/lib/byebug/commands/info/file.rb +13 -14
  41. data/lib/byebug/commands/info/line.rb +5 -3
  42. data/lib/byebug/commands/info/program.rb +8 -6
  43. data/lib/byebug/commands/info.rb +11 -9
  44. data/lib/byebug/commands/interrupt.rb +8 -4
  45. data/lib/byebug/commands/irb.rb +13 -12
  46. data/lib/byebug/commands/kill.rb +11 -11
  47. data/lib/byebug/commands/list.rb +41 -46
  48. data/lib/byebug/commands/method.rb +10 -8
  49. data/lib/byebug/commands/next.rb +8 -6
  50. data/lib/byebug/commands/pry.rb +10 -10
  51. data/lib/byebug/commands/quit.rb +10 -8
  52. data/lib/byebug/commands/restart.rb +30 -11
  53. data/lib/byebug/commands/save.rb +10 -8
  54. data/lib/byebug/commands/set.rb +13 -11
  55. data/lib/byebug/commands/show.rb +7 -5
  56. data/lib/byebug/commands/skip.rb +85 -0
  57. data/lib/byebug/commands/source.rb +7 -7
  58. data/lib/byebug/commands/step.rb +8 -6
  59. data/lib/byebug/commands/thread/current.rb +6 -4
  60. data/lib/byebug/commands/thread/list.rb +7 -5
  61. data/lib/byebug/commands/thread/resume.rb +7 -7
  62. data/lib/byebug/commands/thread/stop.rb +6 -4
  63. data/lib/byebug/commands/thread/switch.rb +6 -4
  64. data/lib/byebug/commands/thread.rb +11 -9
  65. data/lib/byebug/commands/tracevar.rb +10 -11
  66. data/lib/byebug/commands/undisplay.rb +12 -11
  67. data/lib/byebug/commands/untracevar.rb +8 -6
  68. data/lib/byebug/commands/up.rb +10 -8
  69. data/lib/byebug/commands/var/all.rb +7 -5
  70. data/lib/byebug/commands/var/args.rb +6 -4
  71. data/lib/byebug/commands/var/const.rb +9 -9
  72. data/lib/byebug/commands/var/global.rb +5 -3
  73. data/lib/byebug/commands/var/instance.rb +6 -4
  74. data/lib/byebug/commands/var/local.rb +6 -4
  75. data/lib/byebug/commands/var.rb +12 -10
  76. data/lib/byebug/commands/where.rb +9 -7
  77. data/lib/byebug/commands.rb +40 -37
  78. data/lib/byebug/context.rb +7 -5
  79. data/lib/byebug/core.rb +26 -25
  80. data/lib/byebug/errors.rb +4 -2
  81. data/lib/byebug/frame.rb +19 -22
  82. data/lib/byebug/helpers/bin.rb +47 -0
  83. data/lib/byebug/helpers/eval.rb +15 -13
  84. data/lib/byebug/helpers/file.rb +6 -4
  85. data/lib/byebug/helpers/frame.rb +7 -5
  86. data/lib/byebug/helpers/parse.rb +5 -5
  87. data/lib/byebug/helpers/path.rb +9 -11
  88. data/lib/byebug/helpers/reflection.rb +2 -0
  89. data/lib/byebug/helpers/string.rb +11 -2
  90. data/lib/byebug/helpers/thread.rb +10 -8
  91. data/lib/byebug/helpers/toggle.rb +28 -27
  92. data/lib/byebug/helpers/var.rb +9 -7
  93. data/lib/byebug/history.rb +20 -11
  94. data/lib/byebug/interface.rb +13 -11
  95. data/lib/byebug/interfaces/local_interface.rb +25 -7
  96. data/lib/byebug/interfaces/remote_interface.rb +21 -9
  97. data/lib/byebug/interfaces/script_interface.rb +4 -1
  98. data/lib/byebug/interfaces/test_interface.rb +5 -3
  99. data/lib/byebug/option_setter.rb +14 -12
  100. data/lib/byebug/printers/base.rb +10 -10
  101. data/lib/byebug/printers/plain.rb +9 -8
  102. data/lib/byebug/printers/texts/base.yml +7 -3
  103. data/lib/byebug/printers/texts/plain.yml +1 -1
  104. data/lib/byebug/processors/command_processor.rb +11 -12
  105. data/lib/byebug/processors/control_processor.rb +4 -6
  106. data/lib/byebug/processors/post_mortem_processor.rb +4 -2
  107. data/lib/byebug/processors/script_processor.rb +7 -3
  108. data/lib/byebug/remote/client.rb +57 -0
  109. data/lib/byebug/remote/server.rb +47 -0
  110. data/lib/byebug/remote.rb +46 -66
  111. data/lib/byebug/runner.rb +43 -49
  112. data/lib/byebug/setting.rb +11 -5
  113. data/lib/byebug/settings/autoirb.rb +7 -5
  114. data/lib/byebug/settings/autolist.rb +7 -5
  115. data/lib/byebug/settings/autopry.rb +7 -5
  116. data/lib/byebug/settings/autosave.rb +4 -2
  117. data/lib/byebug/settings/basename.rb +4 -2
  118. data/lib/byebug/settings/callstyle.rb +4 -3
  119. data/lib/byebug/settings/fullpath.rb +4 -2
  120. data/lib/byebug/settings/histfile.rb +5 -3
  121. data/lib/byebug/settings/histsize.rb +4 -2
  122. data/lib/byebug/settings/linetrace.rb +6 -4
  123. data/lib/byebug/settings/listsize.rb +4 -2
  124. data/lib/byebug/settings/post_mortem.rb +6 -4
  125. data/lib/byebug/settings/savefile.rb +4 -2
  126. data/lib/byebug/settings/stack_on_error.rb +4 -2
  127. data/lib/byebug/settings/width.rb +3 -1
  128. data/lib/byebug/source_file_formatter.rb +71 -0
  129. data/lib/byebug/subcommands.rb +6 -4
  130. data/lib/byebug/version.rb +2 -1
  131. data/lib/byebug.rb +3 -1
  132. metadata +22 -20
  133. data/bin/byebug +0 -7
data/CHANGELOG.md CHANGED
@@ -1,156 +1,254 @@
1
- # CHANGELOG
1
+ # Changelog
2
2
 
3
- ## Master (Unreleased)
3
+ ## [Unreleased]
4
4
 
5
- ## 9.0.5 - 2016-05-28
5
+ ## [11.1.3] - 2020-04-23
6
6
 
7
7
  ### Fixed
8
8
 
9
- * Error loading rc file when `ENV['HOME']` is unset.
9
+ * [#674](https://github.com/deivid-rodriguez/byebug/pull/674): crash when using byebug on ruby 2.7.0 on Windows.
10
10
 
11
- ## 9.0.4 - 2016-05-19
11
+ ## [11.1.2] - 2020-04-17
12
+
13
+ ### Fixed
14
+
15
+ * [#657](https://github.com/deivid-rodriguez/byebug/pull/657): crash when hitting \<TAB\> due to IRB completion mechanism included in the default ruby 2.7 version of the `irb` gem ([@terceiro]).
16
+
17
+ ## [11.1.1] - 2020-01-24
18
+
19
+ ### Fixed
20
+
21
+ * [#635](https://github.com/deivid-rodriguez/byebug/pull/635): usage on Fedora 31 or any other `byebug` installation performed by a `rubygems` copy customized by setting `Gem.install_extension_in_lib` to false.
22
+
23
+ ## [11.1.0] - 2020-01-20
24
+
25
+ ### Added
26
+
27
+ * Official support for MRI 2.7 ([@yui-knk]).
28
+
29
+ ### Fixed
30
+
31
+ * [#562](https://github.com/deivid-rodriguez/byebug/pull/562): post mortem mode landing in the wrong line when coming from an exception inside a `Kernel.load` call.
32
+
33
+ ### Removed
34
+
35
+ * Support for MRI 2.3. Byebug no longer installs on this platform.
36
+
37
+ ## [11.0.1] - 2019-03-18
38
+
39
+ ### Fixed
40
+
41
+ * [#546](https://github.com/deivid-rodriguez/byebug/pull/546): `continue!` to ignore further `byebug` calls.
42
+ * [#545](https://github.com/deivid-rodriguez/byebug/pull/545): `skip` autolisting code for intermediate skipped breakpoints.
43
+
44
+ ## [11.0.0] - 2019-02-15
45
+
46
+ ### Added
47
+
48
+ * [#377](https://github.com/deivid-rodriguez/byebug/pull/377): `skip` to continue until the next breakpoint as long as it is different from the current one. You can use this command to get out of loops, for example ([@tacnoman]).
49
+ * [#524](https://github.com/deivid-rodriguez/byebug/pull/524): `continue!` (or `continue unconditionally`) to continue until the end of the program regardless of the currently enabled breakpoints ([@tacnoman]).
50
+
51
+ ### Fixed
52
+
53
+ * [#527](https://github.com/deivid-rodriguez/byebug/pull/527): `break` help text to clarify placeholders from literals.
54
+ * [#528](https://github.com/deivid-rodriguez/byebug/pull/528): `quit!` help to not show a space between "quit" and "!".
55
+
56
+ ### Removed
57
+
58
+ * Support for MRI 2.2. Byebug no longer installs on this platform.
59
+
60
+ ## [10.0.2] - 2018-03-30
61
+
62
+ ### Fixed
63
+
64
+ * [#447](https://github.com/deivid-rodriguez/byebug/pull/447): Error when using byebug with `debase` gem ([@tzmfreedom]).
65
+
66
+ ## [10.0.1] - 2018-03-21
67
+
68
+ ### Fixed
69
+
70
+ * [#443](https://github.com/deivid-rodriguez/byebug/pull/443): Error when using byebug with `debase` gem ([@tzmfreedom]).
71
+
72
+ ## [10.0.0] - 2018-01-26
73
+
74
+ ### Changed
75
+
76
+ * Breaking on methods now stops on the first effective line of a method, not on the line containing the `def` keyword.
77
+
78
+ ### Added
79
+
80
+ * [#393](https://github.com/deivid-rodriguez/byebug/pull/393): Show valid breakpoint locations when invalid location given ([@ko1]).
81
+ * [#397](https://github.com/deivid-rodriguez/byebug/pull/397): Ruby 2.5.0 support ([@yui-knk]).
82
+ * Log host & port when launching byebug's client in remote mode.
83
+ * [#82](https://github.com/deivid-rodriguez/byebug/issues/82): Some love & tests to remote debugging.
84
+ * [#141](https://github.com/deivid-rodriguez/byebug/issues/141): `remote_byebug` shortcut to start the most common case for remote debugging.
85
+
86
+ ### Fixed
87
+
88
+ * [#419](https://github.com/deivid-rodriguez/byebug/pull/419): Properly ignore ruby fullpath executable when passed to byebug script.
89
+ * [#141](https://github.com/deivid-rodriguez/byebug/issues/141): Remote server crash when interrupting client.
90
+ * [#274](https://github.com/deivid-rodriguez/byebug/issues/274): Remote server crash when interrupting client.
91
+ * [#239](https://github.com/deivid-rodriguez/byebug/issues/239): Control server thread being able to `interrupt` main thread only a single time.
92
+
93
+ ## [9.1.0] - 2017-08-22
94
+
95
+ ### Added
96
+
97
+ * Better UI messages for breakpoint management.
98
+
99
+ ### Fixed
100
+
101
+ * `where` command failing on instance_exec block stack frames.
102
+ * [#321](https://github.com/deivid-rodriguez/byebug/pull/321): `restart` command crashing in certain cases because of a missing `require "English"` ([@akaneko3]).
103
+ * [#321](https://github.com/deivid-rodriguez/byebug/pull/321): `restart` command crashing when debugged script is not executable or has no shebang ([@akaneko3]).
104
+
105
+ ### Removed
106
+
107
+ * Ruby 2.0 and Ruby 2.1 official & unofficial support. Byebug no longer installs on these platforms.
108
+
109
+ ## [9.0.6] - 2016-09-29
110
+
111
+ ### Fixed
112
+
113
+ * [#241](https://github.com/deivid-rodriguez/byebug/issues/241): Error when using `byebug` with a ruby compiled against libedit.
114
+ * [#277](https://github.com/deivid-rodriguez/byebug/pull/277): Allow `Byebug.start_server` to yield the block passed to it when the actual port is already known ([@cben]).
115
+ * [#275](https://github.com/deivid-rodriguez/byebug/pull/275): Use a standard license name so it can be more reliably used by tools.
116
+
117
+ ## [9.0.5] - 2016-05-28
118
+
119
+ ### Fixed
120
+
121
+ * Error loading rc file when `ENV["HOME"]` is unset.
122
+
123
+ ## [9.0.4] - 2016-05-19
12
124
 
13
125
  ### Fixed
14
126
 
15
127
  * Errors in rc file not being displayed to the user.
16
128
 
17
- ## 9.0.3 - 2016-05-16
129
+ ## [9.0.3] - 2016-05-16
18
130
 
19
131
  ### Fixed
20
132
 
21
- * Unfriendly output in byebug's executable when no script specified (#256).
133
+ * [#256](https://github.com/deivid-rodriguez/byebug/issues/256): Unfriendly output in byebug's executable when no script specified.
22
134
  * Unfriendly output in byebug's executable when script doesn't exist.
23
135
  * Unfriendly output in byebug's executable when script has invalid code.
24
136
 
25
- ## 9.0.2 - 2016-05-15
137
+ ## [9.0.2] - 2016-05-15
26
138
 
27
139
  ### Fixed
28
140
 
29
- * Skip to get a line in eval context (#263, thanks @k0kubun).
30
- * Debugger getting disabled after `continue` even when linetrace is enabled
31
- (#264, thanks @k0kubun).
141
+ * [#263](https://github.com/deivid-rodriguez/byebug/pull/263): Skip to get a line in eval context ([@k0kubun]).
142
+ * [#264](https://github.com/deivid-rodriguez/byebug/pull/264): Debugger getting disabled after `continue` even when linetrace is enabled ([@k0kubun]).
32
143
 
33
- ## 9.0.1 - 2016-05-14
144
+ ## [9.0.1] - 2016-05-14
34
145
 
35
146
  ### Fixed
36
147
 
37
- * `quit` never exiting when remote debugging (#201).
148
+ * [#201](https://github.com/deivid-rodriguez/byebug/issues/201): `quit` never exiting when remote debugging.
38
149
 
39
- ## 9.0.0 - 2016-05-11
150
+ ## [9.0.0] - 2016-05-11
40
151
 
41
152
  ### Fixed
42
153
 
43
154
  * `irb` command unintentionally changing $PROGRAM_NAME.
44
155
  * `pry` command failing.
45
156
  * Unrelated error message when using `pry` command and Pry not installed.
46
- * Interrupting program execution from remote control interface (#239, thanks
47
- @izaera).
157
+ * [#239](https://github.com/deivid-rodriguez/byebug/issues/239): Interrupting program execution from remote control interface ([@izaera]).
48
158
 
49
159
  ### Removed
50
160
 
51
- * Official Ruby 2.0.0 support. `var local` no longer works in Ruby 2.0. The
52
- rest of the commands should still work as before, but `byebug` is no longer
53
- tested against this version so they might start breaking in the
54
- future.
161
+ * Official Ruby 2.0.0 support. `var local` no longer works in Ruby 2.0. The rest of the commands should still work as before, but `byebug` is no longer tested against this version so they might start breaking in the future.
55
162
 
56
- ## 8.2.5 - 2016-04-27
163
+ ## [8.2.5] - 2016-04-27
57
164
 
58
165
  ### Fixed
59
166
 
60
- * Allows paths with spaces (#244, thanks @HookyQR).
61
- * Allows paths with colons (#244, thanks @HookyQR).
167
+ * [#244](https://github.com/deivid-rodriguez/byebug/pull/244): Allows paths with spaces ([@HookyQR]).
168
+ * [#244](https://github.com/deivid-rodriguez/byebug/pull/244): Allows paths with colons ([@HookyQR]).
62
169
 
63
- ## 8.2.4 - 2016-04-08
170
+ ## [8.2.4] - 2016-04-08
64
171
 
65
172
  ### Fixed
66
173
 
67
- * Reverts #211 which leads to an unusable debugger.
174
+ * Reverts [#211](https://github.com/deivid-rodriguez/byebug/pull/211) which leads to an unusable debugger.
68
175
 
69
- ## 8.2.3 - 2016-04-07
176
+ ## [8.2.3] - 2016-04-07
70
177
 
71
178
  ### Fixed
72
179
 
73
180
  * Better interaction with utilities like RSpec when hitting Ctrl-C.
74
- * `irb` command when original program modified ARGV (#197, thanks @josephks).
75
- * Unusable debugger when stdin redirected (#211,thanks @sethk).
76
- * RC file loading when no explicit flag included (#223).
77
- * Installation on some Windows systems (#175, #226).
181
+ * [#197](https://github.com/deivid-rodriguez/byebug/issues/197): `irb` command when original program modified ARGV ([@josephks]).
182
+ * [#211](https://github.com/deivid-rodriguez/byebug/pull/211): Unusable debugger when stdin redirected ([@sethk]).
183
+ * [#223](https://github.com/deivid-rodriguez/byebug/issues/223): RC file loading when no explicit flag included.
184
+ * [#175](https://github.com/deivid-rodriguez/byebug/issues/175): Installation on some Windows systems.
185
+ * [#226](https://github.com/deivid-rodriguez/byebug/issues/226): Installation on some Windows systems.
78
186
 
79
- ## 8.2.2 - 2016-02-01
187
+ ## [8.2.2] - 2016-02-01
80
188
 
81
189
  ### Fixed
82
190
 
83
191
  * Bug in rc file loading where most initialization commands would not be run.
84
192
 
85
- ## 8.2.1 - 2015-11-26
193
+ ## [8.2.1] - 2015-11-26
86
194
 
87
195
  ### Fixed
88
196
 
89
197
  * Bug in evaluations using "eval".
90
198
 
91
- ## 8.2.0 - 2015-11-12
199
+ ## [8.2.0] - 2015-11-12
92
200
 
93
201
  ### Fixed
94
202
 
95
- * [#184](https://github.com/deivid-rodriguez/byebug/issues/184) &
96
- [#188](https://github.com/deivid-rodriguez/byebug/issues/188), both due
97
- to the way of running evaluations in a separate thread.
203
+ * [#184](https://github.com/deivid-rodriguez/byebug/issues/184): Due to the way of running evaluations in a separate thread.
204
+ * [#188](https://github.com/deivid-rodriguez/byebug/issues/188): Due to the way of running evaluations in a separate thread.
98
205
 
99
206
  ### Added
100
207
 
101
- * `debug` command to evaluate things in a separate thread, since this behavior
102
- was removed from default `eval` to fix the above issues.
208
+ * `debug` command to evaluate things in a separate thread, since this behavior was removed from default `eval` to fix the above issues.
103
209
 
104
- ## 8.1.0 - 2015-11-09
210
+ ## [8.1.0] - 2015-11-09
105
211
 
106
212
  ### Fixed
107
213
 
108
214
  * Command history should be specific per project.
109
215
  * Better error message in certain edge cases when printing the backtrace.
110
- * Bug in evaluator which would show information about having stopped at a
111
- breakpoint in some cases.
216
+ * Bug in evaluator which would show information about having stopped at a breakpoint in some cases.
112
217
 
113
218
  ### Added
114
219
 
115
220
  * Ability to autolist source code after `frame` command.
116
221
  * Ability to stop at lines where methods return.
117
222
 
118
- ## 8.0.1 - 2015-11-07
223
+ ## [8.0.1] - 2015-11-07
119
224
 
120
225
  ### Fixed
121
226
 
122
227
  * Error stream wouldn't be properly reset when using standalone `byebug`.
123
228
  * Confusing error message for invalid breakpoint locations.
124
229
 
125
- ## 8.0.0 - 2015-11-05
230
+ ## [8.0.0] - 2015-11-05
126
231
 
127
232
  ### Fixed
128
233
 
129
- * [#183](https://github.com/deivid-rodriguez/byebug/issues/183). Compilation
130
- in Ruby 2.0. Regression introduced in 7.0.0
131
- * "Return value is: nil" would be displayed when stopping right before the end
132
- of a class definition. We want to avoid showing anything instead.
234
+ * [#183](https://github.com/deivid-rodriguez/byebug/issues/183). Compilation in Ruby 2.0. Regression introduced in [7.0.0].
235
+ * "Return value is: nil" would be displayed when stopping right before the end of a class definition. We want to avoid showing anything instead.
133
236
 
134
237
  ### Changed
135
238
 
136
- * Plugins now need to implement an `at_end` method (separate from `at_return`)
137
- in their custom processors.
239
+ * Plugins now need to implement an `at_end` method (separate from `at_return`) in their custom processors.
138
240
 
139
- ## 7.0.0 - 2015-11-04
241
+ ## [7.0.0] - 2015-11-04
140
242
 
141
243
  ### Fixed
142
244
 
143
- * [#177](https://github.com/deivid-rodriguez/byebug/issues/177). Some issues
144
- with formatting results of evaluations.
145
- * [#144](https://github.com/deivid-rodriguez/byebug/issues/144). Ruby process
146
- after using byebug does no longer get slow.
147
- * [#121](https://github.com/deivid-rodriguez/byebug/issues/121). `byebug`
148
- commands inside code evaluated from debugger's prompt are now properly working.
245
+ * [#177](https://github.com/deivid-rodriguez/byebug/issues/177). Some issues with formatting results of evaluations.
246
+ * [#144](https://github.com/deivid-rodriguez/byebug/issues/144). Ruby process after using byebug does no longer get slow.
247
+ * [#121](https://github.com/deivid-rodriguez/byebug/issues/121). `byebug` commands inside code evaluated from debugger's prompt are now properly working.
149
248
  * Another evaluation bug in autocommands.
150
- * `finish 0` command would sometimes fail to stop right before exiting the
151
- current frame.
152
- * Runner's `--[no-]stop` option now works (thanks @windwiny).
153
- * Change variable name `bool`, avoid conflict clang's predefined macro
249
+ * `finish 0` command would sometimes fail to stop right before exiting the current frame.
250
+ * Runner's `--[no-]stop` option now works ([@windwiny]).
251
+ * Change variable name `bool`, avoid conflict clang's predefined macro.
154
252
 
155
253
  ### Removed
156
254
 
@@ -158,42 +256,32 @@
158
256
 
159
257
  ### Changed
160
258
 
161
- * [#166](https://github.com/deivid-rodriguez/byebug/issues/166). Don't load
162
- the entire library on require, but only when a `byebug` call is issued. Thanks
163
- @bquorning.
164
- * The above fix to the `finish 0` command cause `byebug`'s entrypoint to
165
- require 3 steps out instead of 2. In general, plugins using
166
- `Byebug::Context.step_out` will need to be changed to consider "c return
167
- events" as well.
259
+ * [#166](https://github.com/deivid-rodriguez/byebug/issues/166). Don't load the entire library on require, but only when a `byebug` call is issued ([@bquorning]).
260
+ * The above fix to the `finish 0` command cause `byebug`'s entrypoint to require 3 steps out instead of 2. In general, plugins using `Byebug::Context.step_out` will need to be changed to consider "c return events" as well.
168
261
 
169
262
  ### Added
170
263
 
171
264
  * `autopry` setting that calls `pry` on every stop.
172
265
  * Return value information to debugger's output when `finish 0` is used.
173
266
 
174
- ## 6.0.2 - 2015-08-20
267
+ ## [6.0.2] - 2015-08-20
175
268
 
176
269
  ### Fixed
177
270
 
178
- * The user should always be given back a prompt unless (s)he explicitly states
179
- the opposite. This provides a more general fix to the bug resolved in 6.0.1.
271
+ * The user should always be given back a prompt unless (s)he explicitly states the opposite. This provides a more general fix to the bug resolved in [6.0.1].
180
272
 
181
- ## 6.0.1 - 2015-08-19
273
+ ## [6.0.1] - 2015-08-19
182
274
 
183
275
  ### Fixed
184
276
 
185
- * Bug in evaluation where the user would lose the command prompt when entering
186
- an expression with a syntax error.
277
+ * Bug in evaluation where the user would lose the command prompt when entering an expression with a syntax error.
187
278
 
188
- ## 6.0.0 - 2015-08-17
279
+ ## [6.0.0] - 2015-08-17
189
280
 
190
281
  ### Removed
191
282
 
192
283
  * `autoeval` setting. I haven't heard of anyone setting it to false.
193
- * `pp`, `putl`, `eval`. People just want to evaluate Ruby code, so the less
194
- magic the better. Most of the people probably were not aware that `byebug`
195
- was overriding stuff like `pp` or `eval`. Only keeping `ps` as the single
196
- "enhanced evaluation" command.
284
+ * `pp`, `putl`, `eval`. People just want to evaluate Ruby code, so the less magic the better. Most of the people probably were not aware that `byebug` was overriding stuff like `pp` or `eval`. Only keeping `ps` as the single "enhanced evaluation" command.
197
285
  * `verbose` setting.
198
286
  * `info catch` command. Use `catch` without arguments instead.
199
287
  * `R` command alias for `restart`.
@@ -206,79 +294,65 @@
206
294
 
207
295
  ### Fixed
208
296
 
209
- * [#140](https://github.com/deivid-rodriguez/byebug/issues/140). `help` command
210
- not showing the list of available commands and their descriptions.
211
- * [#147](https://github.com/deivid-rodriguez/byebug/issues/147). Setting
212
- breakpoints at symlinked files.
297
+ * [#140](https://github.com/deivid-rodriguez/byebug/issues/140). `help` command not showing the list of available commands and their descriptions.
298
+ * [#147](https://github.com/deivid-rodriguez/byebug/issues/147). Setting breakpoints at symlinked files.
213
299
 
214
300
  ### Added
215
301
 
216
302
  * API to define custom command processors (see the CommandProcessor class).
217
303
 
218
- ## 5.0.0 - 2015-05-18
304
+ ## [5.0.0] - 2015-05-18
219
305
 
220
306
  ### Fixed
221
307
 
222
- * [#136](https://github.com/deivid-rodriguez/byebug/issues/136). `frame`
223
- command not working with negative numbers (thanks @ark6).
308
+ * [#136](https://github.com/deivid-rodriguez/byebug/issues/136). `frame` command not working with negative numbers ([@ark6]).
224
309
 
225
310
  ### Added
226
311
 
227
312
  * IDE support and a new command/subcommand API for plugins.
228
- * Add a "savefile" setting holding the file where "save" command saves current
229
- debugger's state.
313
+ * Add a "savefile" setting holding the file where "save" command saves current debugger's state.
230
314
 
231
315
  ### Changed
232
316
 
233
- * `disable` no longer disable all breakpoints, it just shows command's help
234
- instead. To disable all breakpoints now you need to do `disable breakpoints`
235
- (or `dis b`). Similarly, you can't no longer use `dis 1 2 3` but need to do
236
- `dis b 1 2 3` to disable specific breakpoints. The same applies to the
237
- `enable` command.
317
+ * `disable` no longer disable all breakpoints, it just shows command's help instead. To disable all breakpoints now you need to do `disable breakpoints` (or `dis b`). Similarly, you can't no longer use `dis 1 2 3` but need to do `dis b 1 2 3` to disable specific breakpoints. The same applies to the `enable` command.
238
318
 
239
319
  ### Removed
240
320
 
241
- * `help set <setting>` no longer works. `help set` includes that same output and
242
- it's not verbose enough so that this is a problem. Same with `help
243
- show <setting>`.
321
+ * `help set <setting>` no longer works. `help set` includes that same output and it's not verbose enough so that this is a problem. Same with `help show <setting>`.
244
322
 
245
- ## 4.0.5 - 2015-04-02
323
+ ## [4.0.5] - 2015-04-02
246
324
 
247
325
  ### Fixed
248
326
 
249
- * [#131](https://github.com/deivid-rodriguez/byebug/issues/131)
250
- * Thread commands help format should be consistent with the rest of the help
251
- system now.
327
+ * [#131](https://github.com/deivid-rodriguez/byebug/issues/131).
328
+ * Thread commands help format should be consistent with the rest of the help system now.
252
329
 
253
- ## 4.0.4 - 2015-03-27
330
+ ## [4.0.4] - 2015-03-27
254
331
 
255
332
  ### Fixed
256
333
 
257
- * [#127](https://github.com/deivid-rodriguez/byebug/issues/127)
334
+ * [#127](https://github.com/deivid-rodriguez/byebug/issues/127).
258
335
 
259
- ## 4.0.3 - 2015-03-19
336
+ ## [4.0.3] - 2015-03-19
260
337
 
261
338
  ### Fixed
262
339
 
263
- * Unused variable warning in context.c
340
+ * Unused variable warning in `context.c`.
264
341
 
265
- ## 4.0.2 - 2015-03-16
342
+ ## [4.0.2] - 2015-03-16
266
343
 
267
344
  ### Fixed
268
345
 
269
- * [#118](https://github.com/deivid-rodriguez/byebug/issues/118). Remove
270
- `rb-readline` as a dependency and show a help message whenever requiring
271
- `readline` fails instead.
346
+ * [#118](https://github.com/deivid-rodriguez/byebug/issues/118). Remove `rb-readline` as a dependency and show a help message whenever requiring `readline` fails instead.
272
347
 
273
- ## 4.0.1 - 2015-03-13
348
+ ## [4.0.1] - 2015-03-13
274
349
 
275
350
  ### Fixed
276
351
 
277
352
  * .yml files needed for printers support were missing from the release... :S
278
- * [#118](https://github.com/deivid-rodriguez/byebug/issues/118). Add `readline`
279
- as a dependency.
353
+ * [#118](https://github.com/deivid-rodriguez/byebug/issues/118). Add `readline` as a dependency.
280
354
 
281
- ## 4.0.0 - 2015-03-13
355
+ ## [4.0.0] - 2015-03-13
282
356
 
283
357
  ### Added
284
358
 
@@ -287,79 +361,56 @@
287
361
  * OSX CI build through Travis.
288
362
  * Style enforcement through RuboCop.
289
363
  * C style enforment using the `indent` command line utility.
290
- * Some remote debugging tests (thanks @eric-hu).
291
- * Printer's support (thanks @astashov).
364
+ * Some remote debugging tests ([@eric-hu]).
365
+ * Printer's support ([@astashov]).
292
366
 
293
367
  ### Changed
294
368
 
295
369
  * A lot of internal refactoring.
296
370
  * `tracevar` now requires the full global variable name (with "$").
297
- * [#92](https://github.com/deivid-rodriguez/byebug/issues/92). The `catch`
298
- command is not allowed in post_mortem mode anymore. It was not working anyways.
299
- * [#85](https://github.com/deivid-rodriguez/byebug/issues/85). `step` is now
300
- more user friendly when used in combination with `up`.
301
- * `var const` can now be called without an argument and will show constants in
302
- the current scope.
303
- * `break` with a class name now creates breakpoints regardless of class not
304
- being yet defined. If that's the case, it gives a warning but the class is
305
- created anyways.
371
+ * [#92](https://github.com/deivid-rodriguez/byebug/issues/92). The `catch` command is not allowed in post_mortem mode anymore. It was not working anyways.
372
+ * [#85](https://github.com/deivid-rodriguez/byebug/issues/85). `step` is now more user friendly when used in combination with `up`.
373
+ * `var const` can now be called without an argument and will show constants in the current scope.
374
+ * `break` with a class name now creates breakpoints regardless of class not being yet defined. If that's the case, it gives a warning but the class is created anyways.
306
375
 
307
376
  ### Fixed
308
377
 
309
378
  * Code reloading issues.
310
379
  * `set fullpath` was not showing fullpaths. Now it is.
311
- * `up`, `down` and `frame` commands now work in post_mortem mode (#93).
312
- * rc file (`.byebugrc`) loading: invalid commands are just ignored instead of
313
- aborting, global (home) rc file is now properly loaded before project's file.
314
- * [#93](https://github.com/deivid-rodriguez/byebug/issues/93). Backtraces not
315
- working in `post_mortem` mode.
316
- * 'cmd1 ; cmd2 ; ...; cmdN' syntax which allows running several commands
317
- sequentially.
318
- * [#101](https://github.com/deivid-rodriguez/byebug/issues/101). `finish`
319
- command not stopping at the correct line.
320
- * [#106](https://github.com/deivid-rodriguez/byebug/issues/106). `break` with
321
- namespaced class, like `break A::B#c` should now work.
380
+ * [#93](https://github.com/deivid-rodriguez/byebug/issues/93): `up`, `down` and `frame` commands now work in post_mortem mode.
381
+ * rc file (`.byebugrc`) loading: invalid commands are just ignored instead of aborting, global (home) rc file is now properly loaded before project's file.
382
+ * [#93](https://github.com/deivid-rodriguez/byebug/issues/93). Backtraces not working in `post_mortem` mode.
383
+ * 'cmd1 ; cmd2 ; ...; cmdN' syntax which allows running several commands sequentially.
384
+ * [#101](https://github.com/deivid-rodriguez/byebug/issues/101). `finish` command not stopping at the correct line.
385
+ * [#106](https://github.com/deivid-rodriguez/byebug/issues/106). `break` with namespaced class, like `break A::B#c` should now work.
322
386
  * Command history is now persisted before exiting byebug.
323
- * Setting breakpoint in a method would stop not only at the beginning of the
324
- method but also at the beginning of every block inside the method.
325
- * [#122](https://github.com/deivid-rodriguez/byebug/issues/122). Setting
326
- breakpoints on module methods (@x-yuri).
387
+ * Setting breakpoint in a method would stop not only at the beginning of the method but also at the beginning of every block inside the method.
388
+ * [#122](https://github.com/deivid-rodriguez/byebug/issues/122). Setting breakpoints on module methods ([@x-yuri]).
327
389
 
328
390
  ### Removed
329
391
 
330
- * `autoreload` setting as it's not necessary anymore. Code should always be up
331
- to date.
392
+ * `autoreload` setting as it's not necessary anymore. Code should always be up to date.
332
393
  * `reload` command for the same reason.
333
394
  * Gem dependency on `debugger-linecache`.
334
- * `step+`, `step-`, `next+`, `next-`, `set/show linetrace_plus` and
335
- `set/show forcestep` commands. These were all mechanisms to deal with
336
- TracePoint API event dupplication, but this duplicated events have been
337
- completely removed from the API since [r48609](
338
- bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/48609), so
339
- they are no longer necessary.
340
- * `info file` subcommands: `info file breakpoints`, `info file mtime`, `info
341
- file sha1`, `info file all`. Now all information is listed under `info file`.
342
- * `testing` setting. It was just a hack to be able to test `byebug`. Nobody was
343
- supposed to actually use it!
395
+ * `step+`, `step-`, `next+`, `next-`, `set/show linetrace_plus` and `set/show forcestep` commands. These were all mechanisms to deal with TracePoint API event dupplication, but this duplicated events have been completely removed from the API since [r48609]( bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/48609), so they are no longer necessary.
396
+ * `info file` subcommands: `info file breakpoints`, `info file mtime`, `info file sha1`, `info file all`. Now all information is listed under `info file`.
397
+ * `testing` setting. It was just a hack to be able to test `byebug`. Nobody was supposed to actually use it!
344
398
  * `var class` command, just use Ruby (`self.class.class_variables`).
345
- * `p` command, just use `eval`, or just type your expression and `byebug` will
346
- autoevaluate it.
399
+ * `p` command, just use `eval`, or just type your expression and `byebug` will autoevaluate it.
347
400
  * `exit` alias for `quit`.
348
401
 
349
- ## 3.5.1 - 2014-09-29
402
+ ## [3.5.1] - 2014-09-29
350
403
 
351
404
  ### Fixed
352
405
 
353
- * [#79](https://github.com/deivid-rodriguez/byebug/issues/79). Windows
354
- installation.
406
+ * [#79](https://github.com/deivid-rodriguez/byebug/issues/79). Windows installation.
355
407
  * `condition` command not properly detecting invalid breakpoint ids.
356
408
 
357
- ## 3.5.0 - 2014-09-28
409
+ ## [3.5.0] - 2014-09-28
358
410
 
359
411
  ### Fixed
360
412
 
361
- * [#81](https://github.com/deivid-rodriguez/byebug/issues/81). Byebug's history
362
- messing up other programs using Readline.
413
+ * [#81](https://github.com/deivid-rodriguez/byebug/issues/81). Byebug's history messing up other programs using Readline.
363
414
  * Readline's history not being properly saved and inmediately available.
364
415
  * User not being notified when trying to debug a non existent script.
365
416
 
@@ -367,45 +418,39 @@
367
418
 
368
419
  * Complete rewrite of byebug's history.
369
420
  * Complete rewrite of list command.
370
- * Docs about stacktrace related commands (up, down, frame, backtrace).
421
+ * Docs about stacktrace related commands (`up`, `down`, `frame`, `backtrace`).
371
422
 
372
- ## 3.4.2 - 2014-09-26
423
+ ## [3.4.2] - 2014-09-26
373
424
 
374
425
  ### Fixed
375
426
 
376
- * [#67](https://github.com/deivid-rodriguez/byebug/issues/67). Debugging
377
- commands invoked by ruby executable, as in `byebug -- ruby -Itest a_test.rb
378
- -n test_something`.
427
+ * [#67](https://github.com/deivid-rodriguez/byebug/issues/67). Debugging commands invoked by ruby executable, as in `byebug -- ruby -Itest a_test.rb -n test_something`.
379
428
 
380
- ## 3.4.1 - 2014-09-25
429
+ ## [3.4.1] - 2014-09-25
381
430
 
382
431
  ### Fixed
383
432
 
384
- * [#54](https://github.com/deivid-rodriguez/byebug/issues/54). Use of threads
385
- inside `eval` command.
433
+ * [#54](https://github.com/deivid-rodriguez/byebug/issues/54). Use of threads inside `eval` command.
386
434
  * `list` command not listing backwards after reaching the end of the file.
387
435
 
388
- ## 3.4.0 - 2014-09-01
436
+ ## [3.4.0] - 2014-09-01
389
437
 
390
438
  ### Fixed
391
439
 
392
440
  * deivid-rodriguez/pry-byebug#32 in a better way.
393
441
 
394
- ## 3.3.0 - 2014-08-28
442
+ ## [3.3.0] - 2014-08-28
395
443
 
396
444
  ### Fixed
397
445
 
398
446
  * `set verbose` command.
399
447
  * `set post_mortem false` command.
400
448
  * Debugger stopping in `byebug`'s internal frames in some cases.
401
- * `backtrace` crashing when `fullpath` setting disabled and calculated stack
402
- size being smaller than the real one.
449
+ * `backtrace` crashing when `fullpath` setting disabled and calculated stack size being smaller than the real one.
403
450
 
404
451
  ### Changed
405
452
 
406
- * The `-t` option for `bin/byebug` now turns tracing on whereas the `-x` option
407
- tells byebug to run the initialization file (.byebugrc) on startup. This is
408
- the default behaviour though.
453
+ * The `-t` option for `bin/byebug` now turns tracing on whereas the `-x` option tells byebug to run the initialization file (.byebugrc) on startup. This is the default behaviour though.
409
454
  * `bin/byebug` libified and tests added.
410
455
 
411
456
  ### Removed
@@ -414,49 +459,43 @@
414
459
  * `info instance_variables` command. Use `var instance` instead.
415
460
  * `info global_variables` command. Use `var global` instead.
416
461
  * `info variables` command. Use `var all` instead.
417
- * `irb` command stepping capabilities, see
418
- [8e226d0](https://github.com/deivid-rodriguez/byebug/commit/8e226d0).
462
+ * `irb` command stepping capabilities, see [8e226d0](https://github.com/deivid-rodriguez/byebug/commit/8e226d0).
419
463
  * `script` and `restart-script` options for `bin/byebug`.
420
464
 
421
- ## 3.2.0 - 2014-08-02
465
+ ## [3.2.0] - 2014-08-02
422
466
 
423
467
  ### Fixed
424
468
 
425
- * [#71](https://github.com/deivid-rodriguez/byebug/issues/71). Remote debugging
426
- (thanks @shuky19).
427
- * [#69](https://github.com/deivid-rodriguez/byebug/issues/69). `source` command
428
- (thanks @Olgagr).
469
+ * [#71](https://github.com/deivid-rodriguez/byebug/issues/71). Remote debugging ([@shuky19]).
470
+ * [#69](https://github.com/deivid-rodriguez/byebug/issues/69). `source` command ([@Olgagr]).
429
471
 
430
472
  ### Removed
431
473
 
432
- * `post_mortem` activation through `Byebug.post_mortem`. Use `set post_mortem`
433
- instead.
474
+ * `post_mortem` activation through `Byebug.post_mortem`. Use `set post_mortem` instead.
434
475
  * `info stack` command. Use `where` instead.
435
476
  * `method iv` command. Use `var instance` instead.
436
477
  * [#77](https://github.com/deivid-rodriguez/byebug/issues/77). Warning.
437
478
 
438
- ## 3.1.2 - 2014-04-23
479
+ ## [3.1.2] - 2014-04-23
439
480
 
440
481
  ### Fixed
441
482
 
442
483
  * `post_mortem` mode in `bin/byebug` (really).
443
484
  * Line tracing in `bin/byebug`.
444
485
 
445
- ## 3.1.1 - 2014-04-23
486
+ ## [3.1.1] - 2014-04-23
446
487
 
447
488
  ### Fixed
448
489
 
449
490
  * `post_mortem` mode in bin/byebug.
450
491
 
451
- ## 3.1.0 - 2014-04-23
492
+ ## [3.1.0] - 2014-04-23
452
493
 
453
494
  ### Removed
454
495
 
455
496
  * `show commands` command. Use `history` instead.
456
- * Byebug.start accepting options. Any program settings you want applied from
457
- the start should be set in `.byebugrc`.
458
- * `trace` command. Use `set linetrace` for line tracing and `tracevar` for
459
- global variable tracing.
497
+ * Byebug.start accepting options. Any program settings you want applied from the start should be set in `.byebugrc`.
498
+ * `trace` command. Use `set linetrace` for line tracing and `tracevar` for global variable tracing.
460
499
  * `show version` command. Use `byebug --version` to check byebug's version.
461
500
  * `set arg` setting. Use the `restart` command instead.
462
501
 
@@ -468,15 +507,14 @@
468
507
 
469
508
  * `history` command to check byebug's history of previous commands.
470
509
 
471
- ## 3.0.0 - 2014-04-17
510
+ ## [3.0.0] - 2014-04-17
472
511
 
473
512
  ### Fixed
474
513
 
475
514
  * Plain `byebug` not working when `pry-byebug` installed.
476
515
  * `post_mortem` mode.
477
516
  * Command history not being saved after regular program termination.
478
- * [#54](https://github.com/deivid-rodriguez/byebug/issues/54). (Again) calling
479
- `Byebug.start` with `Timeout.timeout` (thanks @zmoazeni).
517
+ * [#54](https://github.com/deivid-rodriguez/byebug/issues/54). (Again) calling `Byebug.start` with `Timeout.timeout` ([@zmoazeni]).
480
518
 
481
519
  ### Added
482
520
 
@@ -484,105 +522,94 @@
484
522
 
485
523
  ### Changed
486
524
 
487
- * `show commands` command for listing history of previous commands now behaves
488
- like shell's `history` command.
489
- * `show/set history filename` is now `show/set histfile`
490
- * `show/set history size` is now `show/set histsize`
491
- * `show/set history save` is now `show/set autosave`
492
- * `finish` semantics, see
493
- [61f9b4d](https://github.com/deivid-rodriguez/byebug/commit/61f9b4d).
494
- * Use `per project` history file by default.
525
+ * `show commands` command for listing history of previous commands now behaves like shell's `history` command.
526
+ * `show/set history filename` is now `show/set histfile`.
527
+ * `show/set history size` is now `show/set histsize`.
528
+ * `show/set history save` is now `show/set autosave`.
529
+ * `finish` semantics, see [61f9b4d](https://github.com/deivid-rodriguez/byebug/commit/61f9b4d).
530
+ * Use per project history file by default.
495
531
 
496
532
  ### Removed
497
533
 
498
- * The `init` option for `Byebug.start`. Information to make the `restart`
499
- command work is always saved now.
534
+ * The `init` option for `Byebug.start`. Information to make the `restart` command work is always saved now.
500
535
 
501
- ## 2.7.0 - 2014-02-24
536
+ ## [2.7.0] - 2014-02-24
502
537
 
503
538
  ### Fixed
504
539
 
505
- * [#52](https://github.com/deivid-rodriguez/byebug/issues/52). `IGNORED_FILES`
506
- slowing down startup.
507
- * [#53](https://github.com/deivid-rodriguez/byebug/issues/53) and
508
- [#54](https://github.com/deivid-rodriguez/byebug/issues/54). Calling
509
- `Byebug.start` with `Timeout.timeout`.
540
+ * [#52](https://github.com/deivid-rodriguez/byebug/issues/52). `IGNORED_FILES` slowing down startup.
541
+ * [#53](https://github.com/deivid-rodriguez/byebug/issues/53). Calling `Byebug.start` with `Timeout.timeout`.
542
+ * [#54](https://github.com/deivid-rodriguez/byebug/issues/54). Calling `Byebug.start` with `Timeout.timeout`.
510
543
 
511
- ## 2.6.0 - 2014-02-08
544
+ ## [2.6.0] - 2014-02-08
512
545
 
513
546
  ### Fixed
514
547
 
515
- * Circular dependency affecting `pry-byebug` (thanks @andreychernih).
548
+ * Circular dependency affecting `pry-byebug` ([@andreychernih]).
516
549
 
517
- ## 2.5.0 - 2013-12-14
550
+ ## [2.5.0] - 2013-12-14
518
551
 
519
552
  ### Added
520
553
 
521
554
  * Support for `sublime-debugger`.
522
555
 
523
- ## 2.4.1 - 2013-12-05
556
+ ## [2.4.1] - 2013-12-05
524
557
 
525
558
  ### Fixed
526
559
 
527
- * [#40](https://github.com/deivid-rodriguez/byebug/issues/40). Installation
528
- error in Mac OSX (thanks @luislavena).
560
+ * [#40](https://github.com/deivid-rodriguez/byebug/issues/40). Installation error in Mac OSX ([@luislavena]).
529
561
 
530
- ## 2.4.0 - 2013-12-02
562
+ ## [2.4.0] - 2013-12-02
531
563
 
532
564
  ### Fixed
533
565
 
534
566
  * `thread list` showing too many threads.
535
- * Fix setting post mortem mode with `set post_mortem`. Now this is the only
536
- post mortem functionality available as specifying `Byebug.post_mortem` with a
537
- block has been removed in this version.
567
+ * Fix setting post mortem mode with `set post_mortem`. Now this is the only post mortem functionality available as specifying `Byebug.post_mortem` with a block has been removed in this version.
538
568
 
539
569
  ### Added
540
570
 
541
- * (Again) `debugger` as an alias to `byebug` (thanks @wallace).
542
- * `-R` option for `bin/byebug` to specify server's hostname:port for remote
543
- debugging (thanks @mrkn).
571
+ * (Again) `debugger` as an alias to `byebug` ([@wallace]).
572
+ * `-R` option for `bin/byebug` to specify server's hostname:port for remote debugging ([@mrkn]).
544
573
 
545
574
  ### Changed
546
575
 
547
- * Use `require` instead of `require_relative` for loading byebug's extension
548
- library (thanks @nobu).
576
+ * Use `require` instead of `require_relative` for loading byebug's extension library ([@nobu]).
549
577
  * `trace variable $foo` should be now `trace variable $foo`.
550
578
 
551
- ## 2.3.1 - 2013-10-17
579
+ ## [2.3.1] - 2013-10-17
552
580
 
553
581
  ### Fixed
554
582
 
555
583
  * Breakpoint removal.
556
584
  * Broken test suite.
557
585
 
558
- ## 2.3.0 - 2013-10-09
586
+ ## [2.3.0] - 2013-10-09
559
587
 
560
588
  ### Added
561
589
 
562
- * Compatibility with Phusion Passenger Enterprise (thanks @FooBarWidget).
590
+ * Compatibility with Phusion Passenger Enterprise ([@FooBarWidget]).
563
591
 
564
592
  ### Changed
565
593
 
566
594
  * More minimalist help system.
567
595
 
568
- ## 2.2.2 - 2013-09-25
596
+ ## [2.2.2] - 2013-09-25
569
597
 
570
598
  ### Fixed
571
599
 
572
600
  * Compilation issue in 64 bit systems.
573
601
 
574
- ## 2.2.1 - 2013-09-24
602
+ ## [2.2.1] - 2013-09-24
575
603
 
576
604
  ### Fixed
577
605
 
578
- * [#26](https://github.com/deivid-rodriguez/byebug/issues/26). Compilation issue
579
- introduced in `2.2.0`.
606
+ * [#26](https://github.com/deivid-rodriguez/byebug/issues/26). Compilation issue introduced in [2.2.0].
580
607
 
581
608
  ### Changed
582
609
 
583
610
  * `show/set stack_trace_on_error` is now `show/set stack_on_error`.
584
611
 
585
- ## 2.2.0 - 2013-09-22
612
+ ## [2.2.0] - 2013-09-22
586
613
 
587
614
  ### Fixed
588
615
 
@@ -598,25 +625,25 @@
598
625
  * Warning free byebug.
599
626
  * Allow `edit <filename>` without a line number.
600
627
 
601
- ## 2.1.1 - 2013-09-10
628
+ ## [2.1.1] - 2013-09-10
602
629
 
603
630
  ### Fixed
604
631
 
605
632
  * Debugging code inside `-e` Ruby flag.
606
633
 
607
- ## 2.1.0 - 2013-09-08
634
+ ## [2.1.0] - 2013-09-08
608
635
 
609
636
  ### Fixed
610
637
 
611
638
  * Remote debugging display.
612
- * `eval` crashing when inspecting raised an exception (reported by @iblue).
639
+ * `eval` crashing when inspecting raised an exception (reported by [@iblue]).
613
640
 
614
641
  ### Changed
615
642
 
616
643
  * `enable breakpoints` now enables every breakpoint.
617
644
  * `disable breakpoints` now disables every breakpoint.
618
645
 
619
- ## 2.0.0 - 2013-08-30
646
+ ## [2.0.0] - 2013-08-30
620
647
 
621
648
  ### Added
622
649
 
@@ -631,7 +658,7 @@
631
658
 
632
659
  * Several internal refactorings.
633
660
 
634
- ## 1.8.2 - 2013-08-16
661
+ ## [1.8.2] - 2013-08-16
635
662
 
636
663
  ### Fixed
637
664
 
@@ -643,19 +670,19 @@
643
670
  * More user friendly regexps for commands.
644
671
  * Better help for some commands.
645
672
 
646
- ## 1.8.1 - 2013-08-12
673
+ ## [1.8.1] - 2013-08-12
647
674
 
648
675
  ### Fixed
649
676
 
650
- * Major regression introduced in 1.8.0.
677
+ * Major regression introduced in [1.8.0].
651
678
 
652
- ## 1.8.0 - 2013-08-12
679
+ ## [1.8.0] - 2013-08-12
653
680
 
654
681
  ### Added
655
682
 
656
683
  * Remote debugging support.
657
684
 
658
- ## 1.7.0 - 2013-08-03
685
+ ## [1.7.0] - 2013-08-03
659
686
 
660
687
  ### Added
661
688
 
@@ -663,13 +690,13 @@
663
690
  * C-frames specifically marked in the callstack.
664
691
  * C-frames skipped when navigating the callstack.
665
692
 
666
- ## 1.6.1 - 2013-07-10
693
+ ## [1.6.1] - 2013-07-10
667
694
 
668
695
  ### Fixed
669
696
 
670
697
  * Windows compatibiliy: compilation and terminal width issues.
671
698
 
672
- ## 1.6.0 - 2013-07-10
699
+ ## [1.6.0] - 2013-07-10
673
700
 
674
701
  ### Fixed
675
702
 
@@ -678,16 +705,15 @@
678
705
 
679
706
  ### Changed
680
707
 
681
- * Backtrace callstyles. Use `long` for detailed frames in callstack and `short`
682
- for more concise frames.
708
+ * Backtrace callstyles. Use `long` for detailed frames in callstack and `short` for more concise frames.
683
709
 
684
- ## 1.5.0 - 2013-06-21
710
+ ## [1.5.0] - 2013-06-21
685
711
 
686
712
  ### Fixed
687
713
 
688
714
  * Incomplete backtraces when the debugger was not started at program startup.
689
715
 
690
- ## 1.4.2 - 2013-06-20
716
+ ## [1.4.2] - 2013-06-20
691
717
 
692
718
  ### Fixed
693
719
 
@@ -696,15 +722,14 @@
696
722
  * `post_mortem` mode when running byebug from the outset.
697
723
  * `no-quit` flag when running byebug from the outset.
698
724
 
699
- ## 1.4.1 - 2013-06-15
725
+ ## [1.4.1] - 2013-06-15
700
726
 
701
727
  ### Fixed
702
728
 
703
729
  * Crash when printing some filenames in backtraces.
704
- * Allow byebug developers to easily use compilers different from gcc (thanks
705
- @GarthSnyder!).
730
+ * Allow byebug developers to easily use compilers different from gcc ([@GarthSnyder]).
706
731
 
707
- ## 1.4.0 - 2013-06-05
732
+ ## [1.4.0] - 2013-06-05
708
733
 
709
734
  ### Fixed
710
735
 
@@ -714,7 +739,7 @@
714
739
 
715
740
  * Use the Debug Inspector API for backtrace information.
716
741
 
717
- ## 1.3.1 - 2013-06-02
742
+ ## [1.3.1] - 2013-06-02
718
743
 
719
744
  ### Fixed
720
745
 
@@ -722,13 +747,13 @@
722
747
  * Crash when trying to print lines of code containing the character '%'.
723
748
  * `basename` and `linetrace` options not working together.
724
749
 
725
- ## 1.3.0 - 2013-05-25
750
+ ## [1.3.0] - 2013-05-25
726
751
 
727
752
  ### Added
728
753
 
729
- * Support colon-delimited include paths in command-line front-end (@ender672).
754
+ * Support colon-delimited include paths in command-line front-end ([@ender672]).
730
755
 
731
- ## 1.2.0 - 2013-05-20
756
+ ## [1.2.0] - 2013-05-20
732
757
 
733
758
  ### Fixed
734
759
 
@@ -738,7 +763,7 @@
738
763
 
739
764
  * `pry` command.
740
765
 
741
- ## 1.1.1 - 2013-05-07
766
+ ## [1.1.1] - 2013-05-07
742
767
 
743
768
  ### Added
744
769
 
@@ -749,44 +774,41 @@
749
774
  * Better help system.
750
775
  * Code cleanup.
751
776
 
752
- ## 1.1.0 - 2013-04-30
777
+ ## [1.1.0] - 2013-04-30
753
778
 
754
779
  ### Added
755
780
 
756
781
  * Post Mortem support.
757
782
 
758
- ## 1.0.3 - 2013-04-23
783
+ ## [1.0.3] - 2013-04-23
759
784
 
760
785
  ### Fixed
761
786
 
762
787
  * Negative line numbers shown by list command at the beginning of file.
763
- * `backtrace` command segfaulting when trying to show info on some frame args.
764
- Don't know the reason yet, but the exception is handled now and command does
765
- not segfault anymore.
788
+ * `backtrace` command segfaulting when trying to show info on some frame args. Don't know the reason yet, but the exception is handled now and command does not segfault anymore.
766
789
 
767
790
  ### Changed
768
791
 
769
792
  * `autoreload` is set by default now.
770
793
  * Try some thread support (not even close to usable).
771
794
 
772
- ## 1.0.2 - 2013-04-09
795
+ ## [1.0.2] - 2013-04-09
773
796
 
774
797
  ### Fixed
775
798
 
776
- * backtraces messed up when using both `next`/`step` and backtrace navigation
777
- commands.
799
+ * backtraces messed up when using both `next`/`step` and backtrace navigation commands.
778
800
 
779
801
  ### Changed
780
802
 
781
803
  * `autolist` and `autoeval` are default settings now.
782
804
 
783
- ## 1.0.1 - 2013-04-06
805
+ ## [1.0.1] - 2013-04-06
784
806
 
785
807
  ### Fixed
786
808
 
787
809
  * Byebug not loading properly.
788
810
 
789
- ## 1.0.0 - 2013-03-29
811
+ ## [1.0.0] - 2013-03-29
790
812
 
791
813
  ### Fixed
792
814
 
@@ -797,3 +819,116 @@
797
819
  ### Added
798
820
 
799
821
  * Initial release.
822
+
823
+ [Unreleased]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.3...HEAD
824
+ [11.1.3]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.2...v11.1.3
825
+ [11.1.2]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.1...v11.1.2
826
+ [11.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.0...v11.1.1
827
+ [11.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v11.0.1...v11.1.0
828
+ [11.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v11.0.0...v11.0.1
829
+ [11.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v10.0.2...v11.0.0
830
+ [10.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v10.0.1...v10.0.2
831
+ [10.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v10.0.0...v10.0.1
832
+ [10.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v9.1.0...v10.0.0
833
+ [9.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.6...v9.1.0
834
+ [9.0.6]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.5...v9.0.6
835
+ [9.0.5]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.4...v9.0.5
836
+ [9.0.4]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.3...v9.0.4
837
+ [9.0.3]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.2...v9.0.3
838
+ [9.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.1...v9.0.2
839
+ [9.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.0...v9.0.1
840
+ [9.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.5...v9.0.0
841
+ [8.2.5]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.4...v8.2.5
842
+ [8.2.4]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.3...v8.2.4
843
+ [8.2.3]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.2...v8.2.3
844
+ [8.2.2]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.1...v8.2.2
845
+ [8.2.1]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.0...v8.2.1
846
+ [8.2.0]: https://github.com/deivid-rodriguez/byebug/compare/v8.1.0...v8.2.0
847
+ [8.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v8.0.1...v8.1.0
848
+ [8.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v8.0.0...v8.0.1
849
+ [8.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v7.0.0...v8.0.0
850
+ [7.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v6.0.2...v7.0.0
851
+ [6.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v6.0.1...v6.0.2
852
+ [6.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v6.0.0...v6.0.1
853
+ [6.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v5.0.0...v6.0.0
854
+ [5.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.5...v5.0.0
855
+ [4.0.5]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.4...v4.0.5
856
+ [4.0.4]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.3...v4.0.4
857
+ [4.0.3]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.2...v4.0.3
858
+ [4.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.1...v4.0.2
859
+ [4.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.0...v4.0.1
860
+ [4.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.5.1...v4.0.0
861
+ [3.5.1]: https://github.com/deivid-rodriguez/byebug/compare/v3.5.0...v3.5.1
862
+ [3.5.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.4.2...v3.5.0
863
+ [3.4.2]: https://github.com/deivid-rodriguez/byebug/compare/v3.4.1...v3.4.2
864
+ [3.4.1]: https://github.com/deivid-rodriguez/byebug/compare/v3.4.0...v3.4.1
865
+ [3.4.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.3.0...v3.4.0
866
+ [3.3.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.2.0...v3.3.0
867
+ [3.2.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.1.2...v3.2.0
868
+ [3.1.2]: https://github.com/deivid-rodriguez/byebug/compare/v3.1.1...v3.1.2
869
+ [3.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v3.1.0...v3.1.1
870
+ [3.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.0.0...v3.1.0
871
+ [3.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.7.0...v3.0.0
872
+ [2.7.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.6.0...v2.7.0
873
+ [2.6.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.5.0...v2.6.0
874
+ [2.5.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.4.1...v2.5.0
875
+ [2.4.1]: https://github.com/deivid-rodriguez/byebug/compare/v2.4.0...v2.4.1
876
+ [2.4.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.3.1...v2.4.0
877
+ [2.3.1]: https://github.com/deivid-rodriguez/byebug/compare/v2.3.0...v2.3.1
878
+ [2.3.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.2.2...v2.3.0
879
+ [2.2.2]: https://github.com/deivid-rodriguez/byebug/compare/v2.2.1...v2.2.2
880
+ [2.2.1]: https://github.com/deivid-rodriguez/byebug/compare/v2.2.0...v2.2.1
881
+ [2.2.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.1.1...v2.2.0
882
+ [2.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v2.1.0...v2.1.1
883
+ [2.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.0.0...v2.1.0
884
+ [2.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.8.2...v2.0.0
885
+ [1.8.2]: https://github.com/deivid-rodriguez/byebug/compare/v1.8.1...v1.8.2
886
+ [1.8.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.8.0...v1.8.1
887
+ [1.8.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.7.0...v1.8.0
888
+ [1.7.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.6.1...v1.7.0
889
+ [1.6.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.6.0...v1.6.1
890
+ [1.6.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.5.0...v1.6.0
891
+ [1.5.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.4.2...v1.5.0
892
+ [1.4.2]: https://github.com/deivid-rodriguez/byebug/compare/v1.4.1...v1.4.2
893
+ [1.4.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.4.0...v1.4.1
894
+ [1.4.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.3.1...v1.4.0
895
+ [1.3.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.3.0...v1.3.1
896
+ [1.3.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.2.0...v1.3.0
897
+ [1.2.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.1.1...v1.2.0
898
+ [1.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.1.0...v1.1.1
899
+ [1.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.0.3...v1.1.0
900
+ [1.0.3]: https://github.com/deivid-rodriguez/byebug/compare/v1.0.2...v1.0.3
901
+ [1.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v1.0.1...v1.0.2
902
+ [1.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.0.0...v1.0.1
903
+ [1.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v0.0.1...v1.0.0
904
+
905
+ [@akaneko3]: https://github.com/akaneko3
906
+ [@andreychernih]: https://github.com/andreychernih
907
+ [@ark6]: https://github.com/ark6
908
+ [@astashov]: https://github.com/astashov
909
+ [@bquorning]: https://github.com/bquorning
910
+ [@cben]: https://github.com/cben
911
+ [@ender672]: https://github.com/ender672
912
+ [@eric-hu]: https://github.com/eric-hu
913
+ [@FooBarWidget]: https://github.com/FooBarWidget
914
+ [@GarthSnyder]: https://github.com/GarthSnyder
915
+ [@HookyQR]: https://github.com/HookyQR
916
+ [@iblue]: https://github.com/iblue
917
+ [@izaera]: https://github.com/izaera
918
+ [@josephks]: https://github.com/josephks
919
+ [@k0kubun]: https://github.com/k0kubun
920
+ [@ko1]: https://github.com/ko1
921
+ [@luislavena]: https://github.com/luislavena
922
+ [@mrkn]: https://github.com/mrkn
923
+ [@nobu]: https://github.com/nobu
924
+ [@Olgagr]: https://github.com/Olgagr
925
+ [@sethk]: https://github.com/sethk
926
+ [@shuky19]: https://github.com/shuky19
927
+ [@tacnoman]: https://github.com/tacnoman
928
+ [@terceiro]: https://github.com/terceiro
929
+ [@tzmfreedom]: https://github.com/tzmfreedom
930
+ [@wallace]: https://github.com/wallace
931
+ [@windwiny]: https://github.com/windwiny
932
+ [@x-yuri]: https://github.com/x-yuri
933
+ [@yui-knk]: https://github.com/yui-knk
934
+ [@zmoazeni]: https://github.com/zmoazeni