From a5fd0472fadfd54efd51d001d51a771f0fab9a05 Mon Sep 17 00:00:00 2001 From: Viktor Benei Date: Sat, 31 Oct 2015 13:53:46 +0100 Subject: [PATCH] changelog v1.0.0 --- _changelogs/1.0.0.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 _changelogs/1.0.0.md diff --git a/_changelogs/1.0.0.md b/_changelogs/1.0.0.md new file mode 100644 index 00000000..e54723fc --- /dev/null +++ b/_changelogs/1.0.0.md @@ -0,0 +1,20 @@ +## Changes + +* Removed unnecessary log : `[ENVMAN] - Failed to execute command: XYZ` +* Run command exist code fix: if executing the command failed, but command exit code was 0, `envman run` exit code was 0, instead of valid exit code. It'll now return `1` as the exit code in this case. +* `envman` configs file handling. Path it: `$HOME/.envman/configs.json`. Configs contains the maximum allowed environment value size in KB (20 KB default) and the maximum allowed environment list size in KB (100 KB default). + + +## Install + +To install this version, run the following commands (in a bash shell): + +``` +curl -fL https://github.com/bitrise-io/envman/releases/download/1.0.0/envman-$(uname -s)-$(uname -m) > /usr/local/bin/envman +``` + +Then: + +``` +chmod +x /usr/local/bin/envman +```