Skip to content

Commit fc6e38e

Browse files
authored
chore: bump version to 1.6.0 (#101)
* chore: bump version to 1.6.0 * CHANGELOG: fix capitalization * Update CHANGELOG.md Update date and fix headings
1 parent 9eb677e commit fc6e38e

File tree

3 files changed

+34
-6
lines changed

3 files changed

+34
-6
lines changed

CHANGELOG.md

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,52 @@ will be removed after two major releases.
88

99
## [Unreleased]
1010

11+
## v1.6.0 - 2023-05-09
12+
13+
### Added
14+
15+
- Add support for auto updating local data if too old
16+
17+
### Fixed
18+
19+
- Fix make finding lib directories with M1 Homebrew
20+
1121
## v1.5.0 - 2022-07-03
22+
1223
### Added
24+
1325
- Add fish completion for `--list`, `--linux`, `--osx`, and `--sunos` flags
1426

1527
### Fixed
28+
1629
- Fix typo of "database" in the usage output
1730
- Fix fish completion not escaping characters
1831
- Make fish completion reflect actual usage of `tldr` better
1932

2033
## v1.4.3 - 2022-04-11
34+
2135
### Fixed
36+
2237
- Fix segfault on trying to update cache
2338
- Fix segfault when failing to open cache directory
2439
- Bubble error code appropriately when using `--list`
2540

2641
## v1.4.2 - 2021-11-13
42+
2743
### Fixed
44+
2845
- Fix version not being updated in source code
2946

3047
## v1.4.1 - 2021-11-12
48+
3149
### Fixed
50+
3251
- Fix wrong directory name when extracting files from zip cache download
3352

3453
## v1.4.0 - 2021-11-07
54+
3555
### Added
56+
3657
- Add fish completion (see README.md for details)
3758
- Improve output messages for various options
3859
- Add `--list option`
@@ -42,43 +63,51 @@ will be removed after two major releases.
4263
- Add yum support to the `./deps.sh` script
4364

4465
### Fixed
66+
4567
- Do not check last cache update date when updating cache
4668
- Add yes flag to apt install in ./deps.sh script
4769
- Add blank line at end of output
4870
- Remove `-ansi` flag when compiling
4971
- Use `tldr` instead of `tldr-pages` as name for cache folder
5072

5173
### Miscellaneous
74+
5275
- Rename repository from `tldr-cpp-client` to `tldr-c-client`
5376
- Move from Travis-CI to GitHub actions
5477

5578
## v1.3.0 - 2016-09-09
79+
5680
### Added
81+
5782
- Initial release in core homebrew repository
5883
- Add zsh / bash completion (see README.md for details)
5984

6085
### Fixed
86+
6187
- Fix compiling on old Linux distributions
6288

6389

6490
## v1.2.0 - 2016-04-06
91+
6592
### Added
93+
6694
- Download local database at first run
6795
- Add SunOS as supported tldr platform
6896
- Add --clear-cache option, to clear the local database
6997

70-
7198
## v1.1.0 - 2016-01-18
99+
72100
### Added
101+
73102
- Error messages
74103

75104
### Fixed
76-
- Typos
77105

106+
- Typos
78107

79108
## v1.0.0 - 2015-12-30
80-
- Initial release
81109

110+
- Initial release
82111

83112
<!-- This is an example how a section should look like:
84113
@@ -102,4 +131,3 @@ will be removed after two major releases.
102131
- Mentioning any security vulnarabilities
103132
104133
-->
105-

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.5.0
40+
VER := v1.6.0
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
@@ -13,7 +13,7 @@
1313
#include <string.h>
1414
#include <time.h>
1515

16-
#define VERSION_TAG "v1.5.0"
16+
#define VERSION_TAG "v1.6.0"
1717
#ifndef VERSION
1818
#define VERSION_PRETTY ""
1919
#else

0 commit comments

Comments
 (0)