summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--announce.rst7
-rw-r--r--docs/source/history.rst5
-rw-r--r--setup.py4
3 files changed, 9 insertions, 7 deletions
diff --git a/announce.rst b/announce.rst
index 76862c7..51cd52f 100644
--- a/announce.rst
+++ b/announce.rst
@@ -1,5 +1,5 @@
========================================================================
- cliff -- Command Line Interface Formulation Framework -- version 1.4.1
+ cliff -- Command Line Interface Formulation Framework -- version 1.4.2
========================================================================
.. tags:: python cliff release DreamHost
@@ -11,9 +11,8 @@ other extensions.
What's New In This Release?
===========================
-- Add ``dict2columns`` method to ``ShowOne``. (Contributed by Dean
- Troyer)
-- Pin the requirement for cmd2 more tightly.
+- Fix an issue with unicode output under Python 2.6. See
+ https://github.com/dreamhost/cliff/pull/40 for details.
Documentation
=============
diff --git a/docs/source/history.rst b/docs/source/history.rst
index 1e64905..c808b18 100644
--- a/docs/source/history.rst
+++ b/docs/source/history.rst
@@ -2,6 +2,11 @@
Release History
=================
+1.4.2
+
+- Fix an issue with unicode output under Python 2.6. See
+ https://github.com/dreamhost/cliff/pull/40 for details.
+
1.4.1
- Add ``dict2columns`` method to ``ShowOne``. (Contributed by Dean
diff --git a/setup.py b/setup.py
index d0600c0..bef22f4 100644
--- a/setup.py
+++ b/setup.py
@@ -1,9 +1,7 @@
#!/usr/bin/env python
PROJECT = 'cliff'
-
-# Change docs/source/conf.py too!
-VERSION = '1.4.1'
+VERSION = '1.4.2'
from setuptools import setup, find_packages