diff --git a/README.md b/README.md index 32a6073..7f1bffd 100755 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Licensed under the Apache License, Version 2.0. See the LICENSE file in the project root for full license text. -->

- ecli Logo + ecli Logo

ECLI

diff --git a/pyproject.toml b/pyproject.toml index c38c5e9..8b2157d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ build-backend = "hatchling.build" [project] name = "ecli-editor" -version = "0.1.1" +version = "0.1.2" description = "ECLI — fast terminal code editor" readme = "README.md" requires-python = ">=3.11" diff --git a/scripts/build-and-package-freebsd.sh b/scripts/build-and-package-freebsd.sh index fce1053..b431322 100755 --- a/scripts/build-and-package-freebsd.sh +++ b/scripts/build-and-package-freebsd.sh @@ -124,9 +124,9 @@ set -eu # -------- Pretty printing ------------------------------------------------------ print_header() { printf "\033[1;36m==> %s\033[0m\n" "$*"; } -print_step() { printf "\033[32m -> %s\033[0m\n" "$*"; } -print_warn() { printf "\033[33mWARN:\033[0m %s\n" "$*"; } -print_error() { printf "\033[31mERROR:\033[0m %s\n" "$*"; } +print_step() { printf "\033[32m -> %s\033[0m\n" "$*" >&2; } +print_warn() { printf "\033[33mWARN:\033[0m %s\n" "$*" >&2; } +print_error() { printf "\033[31mERROR:\033[0m %s\n" "$*" >&2; } # -------- Paths & meta -------------------------------------------------------- PROJECT_ROOT="$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)"