CHANGELOG.md in byebug-9.1.0 vs CHANGELOG.md in byebug-10.0.0

- old
+ new

@@ -1,19 +1,40 @@ # CHANGELOG ## Master (Unreleased) -## 9.1.0 - 2016-08-22 +## 10.0.0 - 2018-01-26 +### Changed + +* Breaking on methods now stops on the first effective line of a method, not on + the line containing the `def` keyword. + ### Added +* Show valid breakpoint locations when invalid location given (#393, @ko1). +* Ruby 2.5.0 support (#397, @yui-knk). +* Log host & port when launching byebug's client in remote mode. +* Some love & tests to remote debugging (#82). +* `remote_byebug` shortcut to start the most common case for remote debugging (#141). + +## Fixed + +* Properly ignore ruby fullpath executable when passed to byebug script (#419). +* Remote server crash when interrupting client (#141, #274). +* Control server thread being able to `interrupt` main thread only a single time. (#239). + +## 9.1.0 - 2017-08-22 + +### Added + * Better UI messages for breakpoint management. ### Fixed * `where` command failing on instance_exec block stack frames. -* `restart` command crashing in certain cases because of a missing `require 'English'` (#321, @akaneko3). +* `restart` command crashing in certain cases because of a missing `require "English"` (#321, @akaneko3). * `restart` command crashing when debugged script is not executable or has no shebang (#321, @akaneko3). ### Removed * Ruby 2.0 and Ruby 2.1 official & unofficial support. Byebug no longer installs @@ -30,10 +51,10 @@ ## 9.0.5 - 2016-05-28 ### Fixed -* Error loading rc file when `ENV['HOME']` is unset. +* Error loading rc file when `ENV["HOME"]` is unset. ## 9.0.4 - 2016-05-19 ### Fixed