Fixes #54 - Publish 1.1.0 version
diff --git a/README.md b/README.md
index 3eabf95..a8db9d1 100644
--- a/README.md
+++ b/README.md
@@ -10,28 +10,29 @@
 
 ## Usage
 
-    Usage: ./ios-deploy [OPTION]...
-      -d, --debug                  launch the app in GDB after installation
-      -i, --id <device_id>         the id of the device to connect to
-      -c, --detect                 only detect if the device is connected
-      -b, --bundle <bundle.app>    the path to the app bundle to be installed
-      -a, --args <args>            command line arguments to pass to the app when launching it
-      -t, --timeout <timeout>      number of seconds to wait for a device to be connected
-      -u, --unbuffered             don't buffer stdout
-      -g, --gdbargs <args>         extra arguments to pass to GDB when starting the debugger
-      -x, --gdbexec <file>         GDB commands script file
-      -n, --nostart                do not start the app when debugging
-      -I, --noninteractive         start in non interactive mode (quit when app crashes or exits)
-      -v, --verbose                enable verbose output
-      -m, --noinstall              directly start debugging without app install (-d not required)
-      -p, --port <number>          port used for device, default: 12345 
-      -r, --uninstall              uninstall the app before install (do not use with -m; app cache and data are cleared) 
-      -1, --bundle_id <bundle id>  specify bundle id for list and upload
-      -l, --list                   list files
-      -o, --upload <file>          upload file
-      -2, --to <target pathname>	use together with upload file. specify target for upload
-      -V, --version                print the executable version 
-
+	Usage: ./ios-deploy [OPTION]...
+	  -d, --debug                  launch the app in GDB after installation
+	  -i, --id <device_id>         the id of the device to connect to
+	  -c, --detect                 only detect if the device is connected
+	  -b, --bundle <bundle.app>    the path to the app bundle to be installed
+	  -a, --args <args>            command line arguments to pass to the app when launching it
+	  -t, --timeout <timeout>      number of seconds to wait for a device to be connected
+	  -u, --unbuffered             don't buffer stdout
+	  -g, --gdbargs <args>         extra arguments to pass to GDB when starting the debugger
+	  -x, --gdbexec <file>         GDB commands script file
+	  -n, --nostart                do not start the app when debugging
+	  -I, --noninteractive         start in non interactive mode (quit when app crashes or exits)
+	  -L, --justlaunch             just launch the app and exit lldb
+	  -v, --verbose                enable verbose output
+	  -m, --noinstall              directly start debugging without app install (-d not required)
+	  -p, --port <number>          port used for device, default: 12345 
+	  -r, --uninstall              uninstall the app before install (do not use with -m; app cache and data are cleared) 
+	  -1, --bundle_id <bundle id>  specify bundle id for list and upload
+	  -l, --list                   list files
+	  -o, --upload <file>          upload file
+	  -2, --to <target pathname>	use together with upload file. specify target for upload
+	  -V, --version                print the executable version
+	  
 ## Demo
 
 * The included demo.app represents the minimum required to get code running on iOS.
diff --git a/ios-deploy.c b/ios-deploy.c
index 78b5b31..75b083a 100644
--- a/ios-deploy.c
+++ b/ios-deploy.c
@@ -16,7 +16,7 @@
 #include <netinet/tcp.h>
 #include "MobileDevice.h"
 
-#define APP_VERSION    "1.0.10"
+#define APP_VERSION    "1.1.0"
 #define PREP_CMDS_PATH "/tmp/fruitstrap-lldb-prep-cmds-"
 #define LLDB_SHELL "lldb -s " PREP_CMDS_PATH
 
diff --git a/package.json b/package.json
index 1d581b4..d81493a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "ios-deploy",
-  "version": "1.0.9",
+  "version": "1.1.0",
   "description": "launch iOS apps iOS devices from the command line (Xcode 5)",
   "main": "ios-deploy",
   "scripts": {