diff --git a/CHANGELOG.md b/CHANGELOG.md index a14b542..07aeb8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,27 @@ will be removed after two major releases. ## [Unreleased] +## v1.6.1 - 2023-12-13 + +## Added + +- Option to disable color highlighting +- Add support for `NO_COLOR` environment variable. + +## Changed + +- Update manpage to reflect new and updated flags + +### Fixed + +- Fix updating local database +- Prevent freezing of autocompletion in zsh +- Fix print usage of flags + +## Removed + +- Platform specific long flags like `--linux`, `--osx`, and `--sunos` are removed in favor of `--platform=` option. + ## v1.6.0 - 2023-05-09 ### Added @@ -112,22 +133,29 @@ will be removed after two major releases. diff --git a/Makefile b/Makefile index 730aff5..0c1310f 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ endif HAS_GIT := $(shell type git > /dev/null 2>&1 && echo "1" || echo "0") IS_GITREPO := $(shell [ -d .git ] && echo "1" || echo "0") ifeq (0,$(filter 0,$(HAS_GIT) $(IS_GITREPO))) -VER := v1.6.0 +VER := v1.6.1 else VER := $(shell git describe --tags --always --dirty) endif diff --git a/src/tldr.c b/src/tldr.c index 8173188..94df8a5 100644 --- a/src/tldr.c +++ b/src/tldr.c @@ -14,7 +14,7 @@ #include #include //for isatty -#define VERSION_TAG "v1.6.0" +#define VERSION_TAG "v1.6.1" #ifndef VERSION #define VERSION_PRETTY "" #else