Skip to content

Commit

Permalink
1.6.1: update CHANGELOG
Browse files Browse the repository at this point in the history
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
  • Loading branch information
kbdharun committed Dec 13, 2023
1 parent c4bcfb0 commit a57080a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<platform>` option.

## v1.6.0 - 2023-05-09

### Added
Expand Down Expand Up @@ -112,22 +133,29 @@ will be removed after two major releases.
<!-- This is an example how a section should look like:
### [0.1.0-beta1] - YYYY-MM-DD
### Added
- New features
### Changed
- Changes in existing functionality
### Deprecated
- Once-stable features, to be removed in upcoming releases
### Removed
- Deprecated features removed in this release
### Fixed
- Bug fixes
### Security
- Mentioning any security vulnarabilities
-->
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/tldr.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <time.h>
#include <unistd.h> //for isatty

#define VERSION_TAG "v1.6.0"
#define VERSION_TAG "v1.6.1"
#ifndef VERSION
#define VERSION_PRETTY ""
#else
Expand Down

0 comments on commit a57080a

Please sign in to comment.