Skip to content

Commit 0e64339

Browse files
authored
Bump version to 1.5.0 (#88)
1 parent 87cfcd6 commit 0e64339

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ Deprecated features will be kept for any following maintenance release, and
77
will be removed after two major releases.
88

99
## [Unreleased]
10+
11+
## v1.5.0 - 2022-07-03
1012
### Added
1113
- Add fish completion for `--list`, `--linux`, `--osx`, and `--sunos` flags
14+
1215
### Fixed
16+
- Fix typo of "database" in the usage output
1317
- Fix fish completion not escaping characters
1418
- Make fish completion reflect actual usage of `tldr` better
1519

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.4.3
40+
VER := v1.5.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.4.3"
16+
#define VERSION_TAG "v1.5.0"
1717
#ifndef VERSION
1818
#define VERSION_PRETTY ""
1919
#else

0 commit comments

Comments
 (0)