Skip to content

Commit

Permalink
Bump version to 1.5.0 (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterOdin authored Jul 13, 2022
1 parent 87cfcd6 commit 0e64339
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ Deprecated features will be kept for any following maintenance release, and
will be removed after two major releases.

## [Unreleased]

## v1.5.0 - 2022-07-03
### Added
- Add fish completion for `--list`, `--linux`, `--osx`, and `--sunos` flags

### Fixed
- Fix typo of "database" in the usage output
- Fix fish completion not escaping characters
- Make fish completion reflect actual usage of `tldr` better

Expand Down
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.4.3
VER := v1.5.0
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 @@ -13,7 +13,7 @@
#include <string.h>
#include <time.h>

#define VERSION_TAG "v1.4.3"
#define VERSION_TAG "v1.5.0"
#ifndef VERSION
#define VERSION_PRETTY ""
#else
Expand Down

0 comments on commit 0e64339

Please sign in to comment.