OSDN Git Service

Update version. v0.1.6
authorTatsuki Sugiura <sugi@nemui.org>
Wed, 27 Jul 2016 07:07:57 +0000 (16:07 +0900)
committerTatsuki Sugiura <sugi@nemui.org>
Wed, 27 Jul 2016 07:07:57 +0000 (16:07 +0900)
ChangeLog
lib/osdn/cli/runner.rb
lib/osdn/cli/version.rb

index 88cd831..7e7bd11 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,16 @@
+2016-07-27  Tatsuki Sugiura  <sugi@nemui.org>
+
+       * Version 0.1.6
+       * frs_upload, relfile: Auto retry on upload error.
+
 2016-07-20  Tatsuki Sugiura  <sugi@nemui.org>
 
-       * Versino 0.1.5
+       * Version 0.1.5
        * frs_upload, relfile: Add bandwidth limit option.
 
 2016-07-01  Tatsuki Sugiura  <sugi@nemui.org>
 
-       * Versino 0.1.4
+       * Version 0.1.4
        * frs_upload, relfile: Add progress options.
 
 2016-05-26  Tatsuki Sugiura  <sugi@nemui.org>
index 874b01c..d9eeb4f 100644 (file)
@@ -80,6 +80,10 @@ module OSDN
         command = get_command_class(command_name).new(logger)
         logger.debug "Run command #{command_name}"
         begin
+          Signal.trap "INT" do
+            puts :INT
+            exit
+          end
           command.run
         rescue OSDNClient::ApiError => e
           begin
index 0506c17..57062d9 100644 (file)
@@ -1,5 +1,5 @@
 module OSDN
   module CLI
-    VERSION = "0.1.5"
+    VERSION = "0.1.6"
   end
 end