File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,27 @@ will be removed after two major releases.
8
8
9
9
## [ Unreleased]
10
10
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
+
11
32
## v1.6.0 - 2023-05-09
12
33
13
34
### Added
@@ -112,22 +133,29 @@ will be removed after two major releases.
112
133
<!-- This is an example how a section should look like:
113
134
114
135
### [0.1.0-beta1] - YYYY-MM-DD
136
+
115
137
### Added
138
+
116
139
- New features
117
140
118
141
### Changed
142
+
119
143
- Changes in existing functionality
120
144
121
145
### Deprecated
146
+
122
147
- Once-stable features, to be removed in upcoming releases
123
148
124
149
### Removed
150
+
125
151
- Deprecated features removed in this release
126
152
127
153
### Fixed
154
+
128
155
- Bug fixes
129
156
130
157
### Security
158
+
131
159
- Mentioning any security vulnarabilities
132
160
133
161
-->
Original file line number Diff line number Diff line change 37
37
HAS_GIT := $(shell type git > /dev/null 2>&1 && echo "1" || echo "0")
38
38
IS_GITREPO := $(shell [ -d .git ] && echo "1" || echo "0")
39
39
ifeq (0,$(filter 0,$(HAS_GIT ) $(IS_GITREPO ) ) )
40
- VER := v1.6.0
40
+ VER := v1.6.1
41
41
else
42
42
VER := $(shell git describe --tags --always --dirty)
43
43
endif
Original file line number Diff line number Diff line change 14
14
#include <time.h>
15
15
#include <unistd.h> //for isatty
16
16
17
- #define VERSION_TAG "v1.6.0 "
17
+ #define VERSION_TAG "v1.6.1 "
18
18
#ifndef VERSION
19
19
#define VERSION_PRETTY ""
20
20
#else
You can’t perform that action at this time.
0 commit comments