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