Skip to content

Commit 5dc1e29

Browse files
committed
increasing trunk version to 0.2.1
- CHANGES no longer maintained
1 parent f5998f6 commit 5dc1e29

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGES

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
0.1.10 - 0.2.0
2-
--------------
1+
This document is not maintained since version 0.1.10. See ``Changes'' section
2+
in the ``ruby-debug-ide protocol'' document:
3+
4+
http://debug-commons.rubyforge.org/protocol-spec.html
5+
6+
and ChangeLog for details. protocol-spec.html is generated from
7+
doc/protocol-spec.texi file.
38

4-
* bugfix: [#17601] Cannot connect to debugger using ipv6
9+
========================================================================
510

611
0.1.9 - 0.1.10
712
--------------

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ task :default => [:test]
99

1010
# ------- Default Package ----------
1111
RUBY_DEBUG_BASE="0.10.1"
12-
RUBY_DEBUG_IDE_VERSION = "0.2.0"
12+
RUBY_DEBUG_IDE_VERSION = "0.2.1"
1313

1414
FILES = FileList[
1515
'bin/*',

etc/build_and_install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
echo "Installing"
77
[ -d pkg ] && rm -r pkg
88
rake package
9-
gem_command="gem install -l pkg/ruby-debug-ide-0.2.0.gem"
9+
gem_command="gem install -l pkg/ruby-debug-ide-0.2.1.gem"
1010
if [ "$1" = "-n" ]; then
1111
eval "$gem_command"
1212
else

lib/ruby-debug.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def start_control(host, port)
108108
@control_thread = DebugThread.new do
109109
host ||= 'localhost' # nil does not seem to work for IPv6, localhost does
110110
Debugger.print_debug("Waiting for connection on '#{host}:#{port}'")
111-
$stderr.puts "Fast Debugger (ruby-debug-ide 0.2.0) listens on #{host}:#{port}"
111+
$stderr.puts "Fast Debugger (ruby-debug-ide 0.2.1) listens on #{host}:#{port}"
112112
server = TCPServer.new(host, port)
113113
while (session = server.accept)
114114
begin

0 commit comments

Comments
 (0)