diff --git a/CHANGELOG.md b/CHANGELOG.md index abc6e96..49c81d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog This project adheres to [Semantic Versioning](http://semver.org/). +## 1.17.1 (2020-07-17) +### Bugfixes +- Fix bug that could run false commands on Windows +- Secure `lb_import_config` with escape of `<` and `>` characters + ## 1.17.0 (2020-07-17) ### New features - New function `lb_cmd_to_array` to store results of a command in an array. diff --git a/libbash.sh b/libbash.sh index 5eff0f0..70db6d4 100644 --- a/libbash.sh +++ b/libbash.sh @@ -7,11 +7,11 @@ # Copyright (c) 2017-2020 Jean Prunneaux # # Website: https://github.com/pruje/libbash.sh # # # -# Version 1.17.0 (2020-07-17) # +# Version 1.17.1 (2020-07-17) # # # ######################################################## -declare -r lb_version=1.17.0 +declare -r lb_version=1.17.1 # Index # diff --git a/libbash_gui.sh b/libbash_gui.sh index cf7ec8d..ac1e9a1 100644 --- a/libbash_gui.sh +++ b/libbash_gui.sh @@ -7,7 +7,7 @@ # Copyright (c) 2017-2020 Jean Prunneaux # # Website: https://github.com/pruje/libbash.sh # # # -# Version 1.17.0 (2020-07-17) # +# Version 1.17.1 (2020-07-17) # # # ########################################################