summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-11-26 23:14:57 +0100
committergbrandl <devnull@localhost>2006-11-26 23:14:57 +0100
commiteacc98529bcfc9a6139321d2fd9e68bb076f1fa8 (patch)
treed9f53fa2417f93bbe9cf40686c255c97fedaf77f
parent1698cf234384c6cadfc76f480ba4712fb6d94b9c (diff)
downloadpygments-eacc98529bcfc9a6139321d2fd9e68bb076f1fa8.tar.gz
[svn] Update changelog.
-rw-r--r--CHANGES12
-rwxr-xr-xscripts/check_sources.py3
2 files changed, 13 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 5d71488e..030c1456 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,7 +3,15 @@ Pygments changelog
Version 0.6
-----------
-(released Nov XX, 2006)
+(released Dec XX, 2006)
+
+- Added a Scheme lexer (thanks to Marek Kubica).
+
+- Added some functions to iterate over existing lexers, formatters
+ and lexers.
+
+- The HtmlFormatter's `get_style_defs()` can now take a list as an
+ argument to generate CSS with multiple prefixes.
- Support for guessing input encoding added.
@@ -19,7 +27,7 @@ Version 0.5.1
-------------
(released Oct 30, 2006)
-- Fix traceback in ``pygmentize -L`` (thanks to Piotr Ozarowski).
+- Fixed traceback in ``pygmentize -L`` (thanks to Piotr Ozarowski).
Version 0.5
diff --git a/scripts/check_sources.py b/scripts/check_sources.py
index 59fd8b01..d8f4f82b 100755
--- a/scripts/check_sources.py
+++ b/scripts/check_sources.py
@@ -186,6 +186,9 @@ def main(argv):
num = 0
out = cStringIO.StringIO()
+ # TODO: replace os.walk run with iteration over output of
+ # `svn list -R`.
+
for root, dirs, files in os.walk(path):
if '.svn' in dirs:
dirs.remove('.svn')