Skip to content

Commit 644e230

Browse files
committed
feat(release): bump to v6.4.0, update changelog
1 parent ac8a141 commit 644e230

4 files changed

Lines changed: 23 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# [6.4.0](https://github.com/olets/zsh-abbr/compare/v6.3.3...v6.4.0) (2025-11-27)
2+
3+
4+
### Bug Fixes
5+
6+
* **version:** typo ([4feb57d](https://github.com/olets/zsh-abbr/commit/4feb57d0426fc29fc236decbbdffc89b349f2984))
7+
8+
9+
### Features
10+
11+
* **ABBR_SPLIT_FN:** new config var customizes abbreviation delimiters [[#196](https://github.com/olets/zsh-abbr/issues/196)] ([ca51142](https://github.com/olets/zsh-abbr/commit/ca51142cf46213f069b9279f110594d0501753f8))
12+
* **abbr,load:** do not run cmd args through split fn... ([378a5d4](https://github.com/olets/zsh-abbr/commit/378a5d462ae9d13852959603e4bdf1be0e85165d))
13+
* **changelog script:** switch to standard-changelog from conventional-changelog... ([49d8224](https://github.com/olets/zsh-abbr/commit/49d822488d3ca5cced16c8133683846016e5db63))
14+
* **expansion:** optionally expand command position regular abbreviations via ABBR_EXPERIMENTAL_COMMAND_POSITION_REGULAR_ABBREVIATIONS [[#53](https://github.com/olets/zsh-abbr/issues/53)] ([16e6384](https://github.com/olets/zsh-abbr/commit/16e6384d4b76e7119ea570cce892230736593b9b))
15+
16+
17+
118
# [6.3.3](https://github.com/olets/zsh-abbr/compare/v6.3.2...v6.3.3) (2025-08-19)
219

320
### Bug Fixes

completions/_abbr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Completion script for zsh-abbr
44
#
55
# https://github.com/olets/zsh-abbr
6-
# v6.3.3
6+
# v6.4.0
77
# Copyright (c) 2019-present Henry Bley-Vroman
88
#
99
# Licensed under the same license as zsh-abbr. See zsh-abbr's LICENSE file

man/man1/abbr.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "ZSH-ABBR" 1 "August 19 2025" "abbr 6.3.3" "User Commands"
1+
.TH "ZSH-ABBR" 1 "November 27 2025" "abbr 6.4.0" "User Commands"
22
.SH NAME
33
zsh\-abbr \- manage zsh abbreviations
44
.SH SYNOPSIS

zsh-abbr.zsh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# abbreviation management for zsh, inspired by fish shell and enhanced
44
# https://github.com/olets/zsh-abbr
5-
# v6.3.3
5+
# v6.4.0
66
# Copyright (c) 2019-present Henry Bley-Vroman
77

88

@@ -167,8 +167,8 @@ abbr() {
167167
quiet=$ABBR_QUIET
168168
quiet=$(( ABBR_QUIETER || ABBR_QUIET ))
169169
quieter=$ABBR_QUIETER
170-
release_date="August 19 2025"
171-
version="zsh-abbr version 6.3.3"
170+
release_date="November 27 2025"
171+
version="zsh-abbr version 6.4.0"
172172

173173
# Deprecation notices for values that could be meaningfully set after initialization
174174
# Example form:
@@ -1614,7 +1614,7 @@ abbr-expand() {
16141614
ABBR_UNUSED_ABBREVIATION_TYPE=
16151615

16161616
# Check for regular expansion
1617-
# Supports <=v6.3.3 "from the start of the line" sense of regular
1617+
# Supports <=v6.3.x "from the start of the line" sense of regular
16181618
# (match against entire LBUFFER) and (roughly) "command-position"
16191619
# sense (matching against righ-most command in LBUFFER).
16201620

0 commit comments

Comments
 (0)