add undelete command
[shpub.git] / src / shpub / Cli.php
index eedbb10e37d916f4c68891bec497a4a3f4fddb29..aa9dcaa0236a31a938b4d0baef34e493fadfadf8 100644 (file)
@@ -90,7 +90,7 @@ class Cli
     {
         $optParser = new \Console_CommandLine();
         $optParser->description = 'shpub';
-        $optParser->version = '0.0.4';
+        $optParser->version = '0.0.5';
         $optParser->subcommand_required = true;
 
         $optParser->addOption(
@@ -166,6 +166,9 @@ class Cli
         Command_Like::opts($optParser);
         Command_Repost::opts($optParser);
 
+        Command_Delete::opts($optParser);
+        Command_Undelete::opts($optParser);
+
         return $optParser;
     }