byebug 10.0.2 → 11.0.0

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