From ea7d86ed51a4b107adaa7fe0529f693619fe0276 Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 17 Dec 2014 21:31:15 +0100 Subject: Update CHANGELOG and versions --- CHANGELOG | 4 ++++ launch.sh | 2 +- src/args.py | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 26d39489..1d2ed539 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 user’s 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) diff --git a/launch.sh b/launch.sh index ab2829a1..fcbfa5d9 100755 --- a/launch.sh +++ b/launch.sh @@ -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" ] diff --git a/src/args.py b/src/args.py index 6b0108f0..030f7212 100644 --- a/src/args.py +++ b/src/args.py @@ -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 -- cgit v1.2.3