Skip to content

Commit

Permalink
Version bump to v21.1.0, update relevant documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
wting committed Nov 22, 2012
1 parent 8b13949 commit 50e6054
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ made autojump that much better (in no particular order):
Tom Parker
Liyang Chang
Jez Ng
jjk-jacky
Daniel Hahler
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# Summary of release changes, see commit history for more details:
# https://github.com/joelthelion/autojump/commits/master/

* Release v21.1:

- install.sh is rewritten to add support for --path and --destdir options,
making it easier for package maintainers to install autojump specifically into
certain locations. Thanks to jjk-jacky for his contributions.

* Release v21:

- New mailing list for developer discussion and announcements:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ KNOWN ISSUES

Do this:

export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ; }history -a"
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ;} history -a"

- The jump function `j` does not support directories that begin with
`-`. If you want to jump a directory called `--music`, try using
Expand Down
2 changes: 1 addition & 1 deletion bin/autojump
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import re
import shutil
from tempfile import NamedTemporaryFile

VERSION = 'release-v21.0.5'
VERSION = 'release-v21.1.0'
MAX_KEYWEIGHT = 1000
MAX_STORED_PATHS = 1000
COMPLETION_SEPARATOR = '__'
Expand Down
8 changes: 6 additions & 2 deletions docs/autojump.1
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,12 @@ export\ PROMPT_COMMAND="history\ -a"
.fi
.PP
Do this:
.PP
export PROMPT_COMMAND="${PROMPT_COMMAND}; history -a"
.IP
.nf
\f[C]
export\ PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND\ ;}\ history\ -a"
\f[]
.fi
.RE
.IP \[bu] 2
The jump function \f[C]j\f[] does not support directories that begin
Expand Down
2 changes: 1 addition & 1 deletion docs/body.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Options must be passed to 'autojump' and not the 'j' wrapper function.

Do this:

export PROMPT_COMMAND="${PROMPT_COMMAND}; history -a"
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ;} history -a"

- The jump function `j` does not support directories that begin with `-`. If you
want to jump a directory called `--music`, try using `j music` instead of `j
Expand Down

0 comments on commit 50e6054

Please sign in to comment.