summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Slenders <jonathan@slenders.be>2016-02-27 10:48:44 +0100
committerJonathan Slenders <jonathan@slenders.be>2016-02-27 10:48:44 +0100
commit91fbc205b68e07c4d1dc8c76b057f0cb85b37b42 (patch)
treed6fa522a44365f218092edbb1fcddb49954ff06a
parent24d26c30f15b66fb049a3e4c7b38d2290acebb02 (diff)
Release 0.590.59
-rw-r--r--CHANGELOG13
-rw-r--r--docs/conf.py4
-rw-r--r--prompt_toolkit/__init__.py2
3 files changed, 16 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index ea2e271c..76c834ce 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -10,6 +10,19 @@ About the version numbering:
to a <breaking>.<feature>.<fix> style of numbering.
+0.59: 2016-02-27
+----------------
+
+Fixes:
+- Set correct default color on Windows. (Gray instead of high intensity gray.)
+- Reverse colors on Windows when foreground/background color have not been
+ specified.
+- Correct handling of mouse events for FillControl.
+- Take margin into account when calculating Window height. (Fixes bug in
+ multiline prompt.)
+- Handle division by zero in UIContent.get_height_for_text.
+
+
0.58: 2016-02-23
----------------
diff --git a/docs/conf.py b/docs/conf.py
index a994913d..42973894 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -51,9 +51,9 @@ copyright = u'2014, Jonathan Slenders'
# built documents.
#
# The short X.Y version.
-version = '0.58'
+version = '0.59'
# The full version, including alpha/beta/rc tags.
-release = '0.58'
+release = '0.59'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/prompt_toolkit/__init__.py b/prompt_toolkit/__init__.py
index 6a2a22d0..578f5cd7 100644
--- a/prompt_toolkit/__init__.py
+++ b/prompt_toolkit/__init__.py
@@ -19,4 +19,4 @@ from .shortcuts import prompt
# Don't forget to update in `docs/conf.py`!
-__version__ = '0.58'
+__version__ = '0.59'