Skip to content

Commit a57080a

Browse files
committed
1.6.1: update CHANGELOG
Signed-off-by: K.B.Dharun Krishna <[email protected]>
1 parent c4bcfb0 commit a57080a

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,27 @@ will be removed after two major releases.
88

99
## [Unreleased]
1010

11+
## v1.6.1 - 2023-12-13
12+
13+
## Added
14+
15+
- Option to disable color highlighting
16+
- Add support for `NO_COLOR` environment variable.
17+
18+
## Changed
19+
20+
- Update manpage to reflect new and updated flags
21+
22+
### Fixed
23+
24+
- Fix updating local database
25+
- Prevent freezing of autocompletion in zsh
26+
- Fix print usage of flags
27+
28+
## Removed
29+
30+
- Platform specific long flags like `--linux`, `--osx`, and `--sunos` are removed in favor of `--platform=<platform>` option.
31+
1132
## v1.6.0 - 2023-05-09
1233

1334
### Added
@@ -112,22 +133,29 @@ will be removed after two major releases.
112133
<!-- This is an example how a section should look like:
113134
114135
### [0.1.0-beta1] - YYYY-MM-DD
136+
115137
### Added
138+
116139
- New features
117140
118141
### Changed
142+
119143
- Changes in existing functionality
120144
121145
### Deprecated
146+
122147
- Once-stable features, to be removed in upcoming releases
123148
124149
### Removed
150+
125151
- Deprecated features removed in this release
126152
127153
### Fixed
154+
128155
- Bug fixes
129156
130157
### Security
158+
131159
- Mentioning any security vulnarabilities
132160
133161
-->

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ endif
3737
HAS_GIT := $(shell type git > /dev/null 2>&1 && echo "1" || echo "0")
3838
IS_GITREPO := $(shell [ -d .git ] && echo "1" || echo "0")
3939
ifeq (0,$(filter 0,$(HAS_GIT) $(IS_GITREPO)))
40-
VER := v1.6.0
40+
VER := v1.6.1
4141
else
4242
VER := $(shell git describe --tags --always --dirty)
4343
endif

src/tldr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <time.h>
1515
#include <unistd.h> //for isatty
1616

17-
#define VERSION_TAG "v1.6.0"
17+
#define VERSION_TAG "v1.6.1"
1818
#ifndef VERSION
1919
#define VERSION_PRETTY ""
2020
#else

0 commit comments

Comments
 (0)