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 Jun 14, 2020
1 parent 54f16db commit 703ba65
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,22 @@
# [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.

### Bug Fixes

* **session abbreviations:** do not unintentionally clear ([113ffc6](https://github.com/olets/zsh-abbr/commit/113ffc6c10b53bd2bbdea5b8838ba89d598434f3))


### Features

* **config:** deprecate ABBR_DEFAULT_BINDINGS 'true'/'false' (use 0/1) ([5f25f1c](https://github.com/olets/zsh-abbr/commit/5f25f1cb8b8232beee15d77ae24af44895a8dcc5))
* **debugging:** deprecate ZSH_-prefixed var name ([2b5de18](https://github.com/olets/zsh-abbr/commit/2b5de186411a32dc7e1414669133bb2411eb59ca))
* **deprecation:** post-init warnings for non-init config vars ([69d73b8](https://github.com/olets/zsh-abbr/commit/69d73b827d4cab1a10f6941a60c6b6cf6f8b4ffe))
* **deprecation message:** use warning color ([fd53852](https://github.com/olets/zsh-abbr/commit/fd5385294cc4c32627cb90f60cc0748a160a69b8))
* **output:** support NO_COLOR (see https://no-color.org/) ([54f16db](https://github.com/olets/zsh-abbr/commit/54f16dbd2be2e3913a8013822d9b1dd30664706a))



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

Save some keystrokes! `--` and `-` prefixes in actions are deprecated. Just say `add`, `clear-session`, `erase`, `expand`, `export-aliases`, `help`, `import-aliases`, `import-fish`, `import-git-aliases`, `list`, `list-abbreviations`, `list-commands`, `rename`, and `version`, or their single letter short forms (`--help` and `--version` are not deprecated, for findability; `-L` is not deprecated to match zsh's `alias -L`).
Expand Down
2 changes: 1 addition & 1 deletion man/abbr.txt
Expand Up @@ -262,4 +262,4 @@ AUTHORS



abbr 3.3.2 May 11 2020 ZSH-ABBR(1)
abbr 3.3.3 June 14 2020 ZSH-ABBR(1)
2 changes: 1 addition & 1 deletion man/man1/abbr.1
@@ -1,4 +1,4 @@
.TH "ZSH-ABBR" 1 "May 11 2020" "abbr 3.3.2" "User Commands"
.TH "ZSH-ABBR" 1 "June 14 2020" "abbr 3.3.3" "User Commands"
.SH NAME
zsh\-abbr \- manage zsh abbreviations
.SH SYNOPSIS
Expand Down
8 changes: 4 additions & 4 deletions zsh-abbr.zsh
@@ -1,6 +1,6 @@
# fish shell-like abbreviation management for zsh.
# abbreviation management for zsh, inspired by fish shell and enhanced
# https://github.com/olets/zsh-abbr
# v3.3.2
# v3.3.3
# 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 6 2020"
release_date="June 14 2020"
text_bold="\\033[1m"
text_reset="\\033[0m"
version="zsh-abbr version 3.3.2"
version="zsh-abbr version 3.3.3"

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

0 comments on commit 703ba65

Please sign in to comment.