Update CHANGELOG and versions

This commit is contained in:
mathieui 2014-12-17 21:31:15 +01:00
parent 596f269621
commit ea7d86ed51
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
3 changed files with 7 additions and 3 deletions

View file

@ -8,7 +8,11 @@ http://dev.louiz.org/projects/poezio/roadmap
- Require python 3.4 for the input handling, event loop, xml parser, and ssl API
- Due to the slixmpp move, /reconnect now works (ecf22cb)
- Add a /closeall command with a plugin, to cleanup the open tabs (ed7fe69)
- Add a /set_default command which sets the value of an option back to its default (9caa992)
- The users JID is now shown in the roster (a0a00d5)
- Improve the XML tab with coloration, better filters, and filter chaining (1cd0b4d)
- Allow the use of client X.509 certificates for authentication (00396c1)
- Stream errors are now displayed, which is more helpful to the user than 'connection failed' (5cd854f)
- The (system-wide) launch script is now a setuptools entry point that checks dependencies (22f9b7a)
- XHTML-IM base64 embedded images are now extracted by default (a9f642f)

View file

@ -6,7 +6,7 @@ if [ -d "$poezio_dir/.git" ]
then
args=$(git --git-dir="$poezio_dir/.git" show --format='%h %ci' | head -n1)
else
args="0.8.3-dev"
args="0.9-dev"
fi
if [ -e "$poezio_dir/$VENV" ]

View file

@ -25,7 +25,7 @@ def parse_args(CONFIG_PATH=''):
metavar="DEBUG_FILE")
parser.add_option("-v", "--version", dest="version",
help=SUPPRESS, metavar="VERSION",
default="0.8.3-dev")
default="0.9-dev")
(options, __) = parser.parse_args()
else:
parser = ArgumentParser()
@ -38,6 +38,6 @@ def parse_args(CONFIG_PATH=''):
metavar="DEBUG_FILE")
parser.add_argument("-v", "--version", dest="version",
help=SUPPRESS, metavar="VERSION",
default="0.8.3-dev")
default="0.9-dev")
options = parser.parse_args()
return options