Skip to content

Commit c999e86

Browse files
committed
Release 2.6
1 parent a1a4eb8 commit c999e86

File tree

3 files changed

+104
-2
lines changed

3 files changed

+104
-2
lines changed

CHANGES

+102
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,105 @@
1+
bash-completion (2.6)
2+
3+
[ Björn Kautler ]
4+
* Add missing sidedoor to .gitignore (#114)
5+
6+
[ Ville Skyttä ]
7+
* test suite: Mark expected centos6 CI _filedir failures as such
8+
* Expose version in BASH_COMPLETION_VERSINFO, use it in profile.d
9+
script
10+
* test suite: Skip an expected make test case failure in centos6 CI
11+
* test suite: Fix ifdown and ifup CI test skipping
12+
* test suite: Ignore env var pulled in by use of scp in tests
13+
* test suite: If colon trim doesn't do anything, trim as usual
14+
* tar: Comment spelling fixes
15+
* test suite: Mark dpkg -L test case untested if no packages
16+
installed
17+
* test suite: Cosmetic tweaks
18+
* dpkg: Fix dpkg -i home dir completion
19+
* test suite: Improve ls home dir test descriptions
20+
* python: Split module completion to separate helper
21+
* micropython: New completion, aliased from python
22+
* test suite: Add Python module completion test case
23+
* python: Fix traceback avoidance on module completion error
24+
* openssl: Parse available digests from dgst -h
25+
* openssl: Add sha2 commands
26+
* gm: New completion, commands only for now
27+
* (test suite): Test screen -T completions
28+
* (test suite): Set TERM to dumb, not dummy
29+
* Revert "(test suite): Fix alias and cd cursor position tests"
30+
* mplayer: Remove duplicate *.m4a and *.m4v associations
31+
* mplayer, xine, etc: Associate *.mp4a and *.mp4v
32+
* xine etc: Fix *.m4a association
33+
* bind: Add option and argument (non-)completions
34+
* _user_at_host: Set nospace only when completing username part
35+
* _user_at_host: Append @ suffix to username part completions
36+
* man: Don't check OSTYPE or GNU userland, just enable on all
37+
systems
38+
* (test suite): Set dcop result to untested if dcop server is not
39+
running
40+
* (test suite): Don't insist on loading all completions dynamically
41+
* _configured_interfaces: Parse from /etc/network/interfaces.d/* on
42+
Debian
43+
* py.test: New completion
44+
* oowriter: Associate with *.pdf
45+
* Don't define BASH_COMPLETION_COMPAT_DIR
46+
* ri: Add option and arg completions
47+
* (test suite): Add our own dummy ri test fixture
48+
* (test suite): Info test needs docs, don't exclude from CentOS
49+
* (test suite): Fix CentOS 6 tcllib setup
50+
* (test suite): Simplify renice test, fix with only one completion
51+
* (test suite): Don't assume configured interfaces in CI setups
52+
* Don't offer * as configured interface when there are none
53+
* (test suite): Add basic CentOS 6 container for bash 4.1 coverage
54+
* (test suite): Ignore runtime loaded env function changes
55+
* (test suite): Add mailman bin dir to PATH for arch test
56+
* arch: Parse options from --help
57+
* (test suite): Load tested completions dynamically
58+
* (test suite): Accept non-whitespace single word in
59+
assert_complete_any
60+
* (test suite): Avoid interference from user and system dirs (#87)
61+
* (test suite): Install some things N/A in ubuntu14 to fedoradev
62+
* (test suite): Add unrar to ubuntu14 container
63+
* (test suite): Fix alias and cd cursor position tests
64+
* (test suite): Add basic alpine test case
65+
* alpine: Parse opts from -h output, add some opt arg completions
66+
* (test suite): Install jshint globally in ubuntu14
67+
* (test suite): Add mailman bin dir to PATH for some mailman tools
68+
* (test suite): Install jshint to ubuntu14 container with npm
69+
* unshunt: Parse options from --help
70+
* (test suite): Test lsof on ubuntu14
71+
* (test suite): Add basic hping3 test case
72+
* (test suite): Add our ./configure to PATH to test it, test opts
73+
* (test suite): Add bunch of packages to ubuntu14 container
74+
* (test suite): Ensure /usr/(local/)games is in $PATH
75+
* (test suite): Fix perl -d* test cases with no Devel::* installed
76+
* (test suite): curl has lots of options, add more test prefix
77+
* (test suite): Fix tar test case for ones having --owner-map
78+
* (test suite): Unsupport various kill, renice cases if ps is N/A
79+
* (test suite): Make chkconfig test behave better in container
80+
* (test suite): Don't assume mounted filesystems in quota* tests
81+
* newlist: Parse options from --help, add some arg non-completions
82+
* (test suite): Delete trailing whitespace
83+
* (test suite): Don't assume lists set up in newlist test cases
84+
* (docker): Pull in missing fedoradev xvfb-run which dependency
85+
* mr: Avoid stderr trash and test suite failure if man is N/A
86+
* (test suite): Fix mmsitepass completion test
87+
* tshark -G: Avoid stderr noise when running as superuser
88+
* (docker): Run completion tests with xvfb-run, e.g. for gkrellm
89+
* ssh-keygen: Make option parsing work with OpenSSH < 7
90+
* synclient, udevadm: Avoid use of posix char classes for awk
91+
* test suite: Add WIP Fedora dev config
92+
* Travis: Switch tests to docker, update to Ubuntu 14
93+
* xv: Associate with *.j2c, *.j2k, *.jp2, *.jpf, and *.jpg2 (Debian:
94+
#859774)
95+
* eog: Associate with *.j2c and *.jpg2
96+
* Bump copyright years
97+
* xine etc: Associate uppercase *.WM[AV]
98+
* mplayer: Associate *.weba (#112)
99+
* xine etc: Associate *.webm and *.weba (#112)
100+
101+
-- Ville Skyttä <[email protected]> Tue, 27 Jun 2017 12:29:33 +0300
102+
1103
bash-completion (2.5)
2104

3105
[ BartDeWaal ]

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-
BASH_COMPLETION_VERSINFO=(2 5)
26+
BASH_COMPLETION_VERSINFO=(2 6)
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.5])
2+
AC_INIT([bash-completion], [2.6])
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)