byebug 10.0.1 → 11.1.1

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