byebug 10.0.2 → 11.1.2

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