Skip to content

Commit

Permalink
chore(version): bump, and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
olets committed Jul 26, 2020
1 parent d0fe398 commit 2800571
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# [v.3.3.4](https://github.com/olets/zsh-abbr/compare/v3.3.3...v) (2020-07-26)

Deprecates `ABBR_USER_PATH` in favor of `ABBR_USER_ABBREVIATIONS_FILE`.

# [v3.3.3](https://github.com/olets/zsh-abbr/compare/v3.3.2...v3.3.3) (2020-06-14)

Fix a session abbreviations bug, support NO_COLOR, and polish deprecation warnings.
Expand Down
6 changes: 3 additions & 3 deletions man/abbr.txt
Expand Up @@ -203,8 +203,8 @@ Configuration
0)


o ABBR_USER_PATH File abbreviations are stored in (default
${HOME}/.config/zsh/abbreviations)
o ABBR_USER_ABBREVIATIONS_FILE File abbreviations are stored in
(default ${HOME}/.config/zsh/abbreviations)


o NO_COLOR If `NO_COLOR` is set, color output is disabled. See
Expand Down Expand Up @@ -262,4 +262,4 @@ AUTHORS



abbr 3.3.3 June 14 2020 ZSH-ABBR(1)
abbr 3.3.4 July 26 2020 ZSH-ABBR(1)
2 changes: 1 addition & 1 deletion man/man1/abbr.1
@@ -1,4 +1,4 @@
.TH "ZSH-ABBR" 1 "June 14 2020" "abbr 3.3.3" "User Commands"
.TH "ZSH-ABBR" 1 "July 26 2020" "abbr 3.3.4" "User Commands"
.SH NAME
zsh\-abbr \- manage zsh abbreviations
.SH SYNOPSIS
Expand Down
6 changes: 3 additions & 3 deletions zsh-abbr.zsh
@@ -1,6 +1,6 @@
# abbreviation management for zsh, inspired by fish shell and enhanced
# https://github.com/olets/zsh-abbr
# v3.3.3
# v3.3.4
# Copyright (c) 2019-2020 Henry Bley-Vroman


Expand Down Expand Up @@ -44,10 +44,10 @@ _abbr() {
force=$ABBR_FORCE
number_opts=0
quiet=$ABBR_QUIET
release_date="June 14 2020"
release_date="July 26 2020"
text_bold="\\033[1m"
text_reset="\\033[0m"
version="zsh-abbr version 3.3.3"
version="zsh-abbr version 3.3.4"

if ! (( ${+NO_COLOR} )); then
error_color="$fg[red]"
Expand Down

0 comments on commit 2800571

Please sign in to comment.