byebug 11.0.1

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