bump version
Matt S Trout [Mon, 23 Jul 2012 17:18:37 +0000 (17:18 +0000)]
bin/object-remote-slave
lib/Object/Remote.pm

index 4784ee5..01d98fc 100644 (file)
@@ -6,10 +6,9 @@ use Object::Remote;
 
 my $c = Object::Remote::Connector::UNIX->new->connect($ARGV[0]);
 
-my $cch = $c->new_class_call_handler;
+$c->register_class_class_handler;
 
-$c->new_remote(id => 'master')->register_slave(
-  class_call_handler => $cch,
+$c->remote_object(id => 'master')->register_slave(
   pid => $$,
   argv => \@ARGV
 )->run;
index 1d3edf9..a20ef97 100644 (file)
@@ -4,7 +4,7 @@ use Object::Remote::MiniLoop;
 use Object::Remote::Handle;
 use Module::Runtime qw(use_module);
 
-our $VERSION = '0.002001'; # 0.2.1
+our $VERSION = '0.002002'; # 0.2.2
 
 sub new::on {
   my ($class, $on, @args) = @_;