summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsteven.bethard <devnull@localhost>2009-09-15 05:55:06 +0000
committersteven.bethard <devnull@localhost>2009-09-15 05:55:06 +0000
commitb1bbb11a9648293a344f5e3739517aaf67ebc0eb (patch)
tree1bb35e453f928bfa955126cf29be8f51124c300a
parent6964050e4ae3122748b8fc207f1a44aa6a917d1a (diff)
downloadargparse-b1bbb11a9648293a344f5e3739517aaf67ebc0eb.tar.gz
Add NEWS file.r101
-rw-r--r--MANIFEST.in1
-rw-r--r--NEWS.txt11
2 files changed, 12 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 0a9c2a4..9341002 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,5 @@
include README.txt
+include NEWS.txt
include doc/*.html
include doc/*.js
include doc/_static/*.css
diff --git a/NEWS.txt b/NEWS.txt
new file mode 100644
index 0000000..8e8c83b
--- /dev/null
+++ b/NEWS.txt
@@ -0,0 +1,11 @@
+What's New in argparse 1.0.1
+============================
+
+- Issue #21: Stop rejecting classic classes as type= arguments.
+- Issue #24: Improve error messages when nargs=0 for store and append actions.
+- Issue #25 and #17: Silence Python 2.6 buggy Exception.message warnings.
+- Issue #27: Stop dropping mutually exclusive groups from parents= arguments.
+- Issue #28: Set svn:eol-style=native properly for text files.
+- Wrap long prog= values properly.
+- Make sure literal % can be used in help messages.
+- Add a NEWS file.