From 57da66ae2964e6c3bc149277de30b3d4f1220957 Mon Sep 17 00:00:00 2001
From: Atsuo Ishimoto <ishimoto@gembook.org>
Date: Fri, 6 Dec 2013 11:03:55 +0900
Subject: [PATCH] bump version

---
 README.rst     | 13 +++++++++++--
 kaa/version.py |  2 +-
 setup.py       |  2 +-
 3 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/README.rst b/README.rst
index 9bea0cb..1b10ddf 100644
--- a/README.rst
+++ b/README.rst
@@ -745,15 +745,24 @@ Links
 Version history
 =================
 
-0.16.0 - 2013.12.03
+0.17.0 - 2013.12.06
 --------------------
 
-- Defer to save history information. Kaa now works much smoother than ever on PC with slow hard disk. 
+- reStructuredText Mode: Recognize non-ASCII punctuation as separater of inline mark ups.
+
+- Indent command: Don't indent blank line. (Contributed by `allanderek <https://github.com/kaaedit/kaa/pull/94>`_)
 
+- Separate `kaadbg <https://pypi.python.org/pypi/kaadbg>`_ as new package.
 
 Past versions
 --------------
 
+0.16.0 - 2013.12.03
++++++++++++++++++++++
+
+- Defer to save history information. Kaa now works much smoother than ever on PC with slow hard disk. 
+
+
 0.15.1 - 2013.11.30
 +++++++++++++++++++++
 
diff --git a/kaa/version.py b/kaa/version.py
index 831e789..9c05922 100644
--- a/kaa/version.py
+++ b/kaa/version.py
@@ -1,6 +1,6 @@
 import sys
 import os
-KAA_VERSION = (0, 16, 0)
+KAA_VERSION = (0, 17, 0)
 
 
 def version_info():
diff --git a/setup.py b/setup.py
index 0ca2ddc..727f6b6 100644
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ def read(fname):
 setup(
     cmdclass = cmdclass,
     name = "kaaedit",
-    version = "0.16.0",
+    version = "0.17.0",
     description='kaa - console text editor.',
     url='https://github.com/kaaedit/kaa',
     author='Atsuo Ishimoto',