Skip to content

Commit 06601dc

Browse files
committed
Release 2.4
1 parent 8212aca commit 06601dc

File tree

3 files changed

+96
-2
lines changed

3 files changed

+96
-2
lines changed

CHANGES

+94
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,97 @@
1+
bash-completion (2.4)
2+
3+
[ Arash Esbati ]
4+
* xetex, xelatex, luatex, lualatex: Associate with tex files
5+
6+
[ Gene Pavlovsky ]
7+
* Use shell globbing instead of ls to source files in compat dir
8+
9+
[ Grisha Levit ]
10+
* Support completing array variables and expansions
11+
* Add tests for declare/typeset
12+
* Better handling of typeset/declare
13+
14+
[ Kylie McClain ]
15+
* tar: silence --version's stderr output
16+
17+
[ Paul M. Lambert ]
18+
* Support pod document files for perldoc (#39)
19+
20+
[ Richard Alpe ]
21+
* tipc: fix missing last char in link name completion
22+
* tipc: handle complete words without trailing space
23+
* tipc: suppress tipc error messages
24+
* tipc: use double brackets in if conditions
25+
* tipc: make loop variables local
26+
* tipc: remove unnecessary return values
27+
* tipc: readd call to complete command
28+
* tipc: use cur variable for flag completion
29+
* tipc: add command prefix to link sed
30+
* tipc: remove unnecessary function _tipc_get_val()
31+
* tipc: use bash here string instead of echo
32+
* tipc: merge functions into main
33+
* tipc: add test framework
34+
* tipc: add tipc completions
35+
36+
[ Ville Skyttä ]
37+
* Release 2.4
38+
* rpm: Offer --filetriggers with -q
39+
* javadoc: Add bunch of option arg (non)completions
40+
* lrzip: Add -m arg noncompletion
41+
* pkg-get: Don't use hyphens in function names
42+
* jarsigner: Add some option arg (non)completions
43+
* pkg-get,pkgrm: Drop unnecessary _have calls
44+
* *: Trivial cleanups
45+
* *: Remove redundant return 0's
46+
* pypy*: Add basic --jit arg completion
47+
* pypy3: Alias to python
48+
* hcitool,svcadm,tar: Spelling fixes
49+
* Travis: Install more packages for more test coverage
50+
* (test suite): Pass assert_complete_any for exact/only given arg
51+
completed
52+
* tipc: Invoke ls with "command"
53+
* tipc: Indentation fix
54+
* (test suite): Fix fallout from
55+
fec077d555f112b9f455c45860f90a3b47392fcf
56+
* (test suite): Remove Bash::Completion.3pm.gz from git, create on
57+
the fly
58+
* (test suite): Remove test/fixtures/_filedir/a"b from git, create
59+
on the fly
60+
* CONTRIBUTING: Note patch preferences if not using GitHub pull
61+
requests
62+
* python: Support -Q and -W arg completion without space
63+
* apache2ctl, aspell, make: Don't hardcode completion generator
64+
command
65+
* mysql: Avoid --default-character-set error with failglob, fixes
66+
#46
67+
* test suite: Add perldoc module+pod completion test case
68+
* perl: Remove some duplicated code
69+
* pushd: Use _cd completion for CDPATH support, closes #38
70+
* test suite: Add basic pushd test case
71+
* abook: Parse long options from command including full path
72+
* pyvenv: New completion
73+
* chroot: New (generic long options) completion, see #38
74+
* Travis: First steps toward testing with OS X
75+
* test suite: Add bashcomp_bash env var for better control on tested
76+
bash
77+
* aptitude: List packages using _apt_cache_packages, fixes #33
78+
* vncviewer: Cleanup shopt use, drop an eval
79+
* make: Avoid a grep
80+
* rpm: Fix --whatenhances arg completion
81+
* aspell, minicom, mysql: Replace use of ls with printf
82+
* cppcheck: Complete filenames too for --platform
83+
* man: Prioritize MANPATH, simplify, add fallback e.g. for busybox,
84+
fixes #28
85+
* aclocal: Install completion for 1.14 and 1.15, fixes #25
86+
* mpv: Don't install symlink for it, fixes #24
87+
* test suite: Add function and declare test cases
88+
* CONTRIBUTING: Highlight request for test cases
89+
90+
[ Wayne Scott ]
91+
* The BitKeeper completion used the wrong set of commands
92+
93+
-- Ville Skyttä <[email protected]> Fri, 12 Aug 2016 22:43:27 +0300
94+
195
bash-completion (2.3)
296

397
[ Daniel Milde ]

bash_completion

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#
2424
# https://github.com/scop/bash-completion
2525
#
26-
# RELEASE: 2.3
26+
# RELEASE: 2.4
2727

2828
if [[ $- == *v* ]]; then
2929
BASH_COMPLETION_ORIGINAL_V_VALUE="-v"

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.60])
2-
AC_INIT([bash-completion], [2.3])
2+
AC_INIT([bash-completion], [2.4])
33
AM_INIT_AUTOMAKE([foreign dist-xz no-dist-gzip -Wall -Werror])
44
AC_PROG_LN_S
55
AC_PROG_MKDIR_P

0 commit comments

Comments
 (0)