summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomi Pieviläinen <hukka@tsume>2013-10-31 16:03:08 +0200
committerTomi Pieviläinen <hukka@tsume>2013-10-31 16:03:08 +0200
commite49a25913c5f9e8d818520f1258b42b0a04402f2 (patch)
treedaa3dcc6454f4c5f976f339faeb973814b2d347b
parenta293ed674f3da906317f4c7b5d032d0d0a80dec5 (diff)
downloaddateutil-e49a25913c5f9e8d818520f1258b42b0a04402f2.tar.gz
Document fuzzy_with_tokens, update NEWS to prepare for 2.2
-rw-r--r--NEWS9
-rw-r--r--README4
-rw-r--r--dateutil/__init__.py2
3 files changed, 14 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 3a0a8ed..d1c59fb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+Version 2.2
+-----------
+
+- Updated zoneinfo to 2013h
+
+- fuzzy_with_tokens parse addon from Christopher Corley
+
+- Bug with LANG=C fixed by Mike Gilbert
+
Version 2.1
-----------
diff --git a/README b/README
index 39735e7..6f542d5 100644
--- a/README
+++ b/README
@@ -1206,6 +1206,10 @@ Additionally, the following keyword arguments are available:
If {{{fuzzy}}} is set to True, unknown tokens in the string
will be ignored.
+ fuzzy_with_tokens::
+ Similar to {{{fuzzy}}}, but will result a tuple of the normal
+ results and the skipped tokens.
+
parserinfo::
This parameter allows one to change how the string is parsed,
by using a different parserinfo class instance. Using it you
diff --git a/dateutil/__init__.py b/dateutil/__init__.py
index 0f91a31..1020e72 100644
--- a/dateutil/__init__.py
+++ b/dateutil/__init__.py
@@ -7,4 +7,4 @@ datetime module.
"""
__author__ = "Tomi Pieviläinen <tomi.pievilainen@iki.fi>"
__license__ = "Simplified BSD"
-__version__ = "2.1"
+__version__ = "2.2"