From 3435f4d27070a99668bfa29a3e508db4ecc09009 Mon Sep 17 00:00:00 2001 From: Luca Di Maio Date: Mon, 20 Nov 2023 22:52:04 +0100 Subject: [PATCH] all: bump version for release Signed-off-by: Luca Di Maio --- distrobox | 2 +- distrobox-assemble | 2 +- distrobox-create | 2 +- distrobox-enter | 2 +- distrobox-ephemeral | 2 +- distrobox-export | 2 +- distrobox-generate-entry | 2 +- distrobox-host-exec | 2 +- distrobox-init | 2 +- distrobox-list | 2 +- distrobox-rm | 2 +- distrobox-stop | 2 +- distrobox-upgrade | 2 +- install | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/distrobox b/distrobox index 3bebfb0ed0..849eb36fa5 100755 --- a/distrobox +++ b/distrobox @@ -22,7 +22,7 @@ set -o errexit set -o nounset -version="1.6.0" +version="1.6.0.1" # Print usage to stdout. # Arguments: diff --git a/distrobox-assemble b/distrobox-assemble index 26b4eb5c5e..81105ac1a1 100755 --- a/distrobox-assemble +++ b/distrobox-assemble @@ -31,7 +31,7 @@ boxname="" # quoting and escaping tmpfile="$(mktemp -u)" verbose=0 -version="1.6.0" +version="1.6.0.1" # initializing block of variables used in the manifest additional_flags="" additional_packages="" diff --git a/distrobox-create b/distrobox-create index 3eba6b7492..64e9911a15 100755 --- a/distrobox-create +++ b/distrobox-create @@ -92,7 +92,7 @@ distrobox_hostexec_path="$(cd "$(dirname "${0}")" && pwd)/distrobox-host-exec" # There's no need for them to pass the --root flag option in such cases. [ "${container_user_uid}" -eq 0 ] && rootful=1 || rootful=0 verbose=0 -version="1.6.0" +version="1.6.0.1" # Source configuration files, this is done in an hierarchy so local files have # priority over system defaults diff --git a/distrobox-enter b/distrobox-enter index dcb8cc2293..6d8998a6bf 100755 --- a/distrobox-enter +++ b/distrobox-enter @@ -73,7 +73,7 @@ headless=0 [ "$(id -ru)" -eq 0 ] && rootful=1 || rootful=0 skip_workdir=0 verbose=0 -version="1.6.0" +version="1.6.0.1" # Source configuration files, this is done in an hierarchy so local files have # priority over system defaults diff --git a/distrobox-ephemeral b/distrobox-ephemeral index 5489446186..47a1486dd0 100755 --- a/distrobox-ephemeral +++ b/distrobox-ephemeral @@ -48,7 +48,7 @@ extra_flags="" # There's no need for them to pass the --root flag option in such cases. [ "$(id -ru)" -eq 0 ] && rootful=1 || rootful=0 verbose=0 -version="1.6.0" +version="1.6.0.1" container_additional_packages="" container_init_hook=" " container_manager_additional_flags="" diff --git a/distrobox-export b/distrobox-export index 1819d59c5e..77c928c21d 100755 --- a/distrobox-export +++ b/distrobox-export @@ -41,7 +41,7 @@ is_sudo=0 rootful="" start_shell="/bin/sh -l -c" verbose=0 -version="1.6.0" +version="1.6.0.1" # We depend on some commands, let's be sure we have them base_dependencies="basename find grep sed" diff --git a/distrobox-generate-entry b/distrobox-generate-entry index d0aca1a227..3243691dfa 100755 --- a/distrobox-generate-entry +++ b/distrobox-generate-entry @@ -43,7 +43,7 @@ delete=0 icon="auto" icon_default="${HOME}/.local/share/icons/terminal-distrobox-icon.svg" verbose=0 -version="1.6.0" +version="1.6.0.1" # Source configuration files, this is done in an hierarchy so local files have # priority over system defaults diff --git a/distrobox-host-exec b/distrobox-host-exec index f615bf2c9e..6de2c68f9e 100755 --- a/distrobox-host-exec +++ b/distrobox-host-exec @@ -31,7 +31,7 @@ host_spawn_version="1.5.0" download_command="" sudo_command="" verbose=0 -version="1.6.0" +version="1.6.0.1" # Print usage to stdout. # Arguments: diff --git a/distrobox-init b/distrobox-init index f88f90b1b2..f2153b99d2 100755 --- a/distrobox-init +++ b/distrobox-init @@ -45,7 +45,7 @@ pre_init_hook="" rootful=0 upgrade=0 verbose=0 -version="1.6.0" +version="1.6.0.1" # Print usage to stdout. # Arguments: # None diff --git a/distrobox-list b/distrobox-list index 655c5975a9..aaec85ec00 100755 --- a/distrobox-list +++ b/distrobox-list @@ -41,7 +41,7 @@ no_color=0 # There's no need for them to pass the --root flag option in such cases. [ "$(id -ru)" -eq 0 ] && rootful=1 || rootful=0 verbose=0 -version="1.6.0" +version="1.6.0.1" container_manager="autodetect" # Source configuration files, this is done in an hierarchy so local files have diff --git a/distrobox-rm b/distrobox-rm index 87c0a2e604..702c1dd408 100755 --- a/distrobox-rm +++ b/distrobox-rm @@ -52,7 +52,7 @@ non_interactive=0 verbose=0 rm_home=0 response_rm_home="N" -version="1.6.0" +version="1.6.0.1" # Source configuration files, this is done in an hierarchy so local files have # priority over system defaults diff --git a/distrobox-stop b/distrobox-stop index 131dd5acaf..fd17cc1d8e 100755 --- a/distrobox-stop +++ b/distrobox-stop @@ -50,7 +50,7 @@ non_interactive=0 # There's no need for them to pass the --root flag option in such cases. [ "$(id -ru)" -eq 0 ] && rootful=1 || rootful=0 verbose=0 -version="1.6.0" +version="1.6.0.1" # Source configuration files, this is done in an hierarchy so local files have # priority over system defaults diff --git a/distrobox-upgrade b/distrobox-upgrade index a7efcd83f5..ab5e96fc2f 100755 --- a/distrobox-upgrade +++ b/distrobox-upgrade @@ -37,7 +37,7 @@ distrobox_flags="" distrobox_path="$(dirname "$(realpath "${0}")")" rootful=0 verbose=0 -version="1.6.0" +version="1.6.0.1" # Source configuration files, this is done in an hierarchy so local files have # priority over system defaults diff --git a/install b/install index c5ba5dd5de..edc2b05394 100755 --- a/install +++ b/install @@ -21,7 +21,7 @@ next=0 verbose=0 -version=1.6.0 +version=1.6.0.1 # Print usage to stdout. # Arguments: