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