summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-01-17 11:05:17 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-01-17 11:05:17 +0100
commitecd6ecab1c45c40b25e125b37c1f6994bc7dac4b (patch)
treee60ca33c7ebf4c143c35534cbc964087ae146c4c
parent8c10314eccd145063a8801bbb70f8f362e8c2dcd (diff)
downloadpyflakes-ecd6ecab1c45c40b25e125b37c1f6994bc7dac4b.tar.gz
Update changelog.
-rw-r--r--LICENSE2
-rw-r--r--NEWS.txt6
-rw-r--r--README.rst2
3 files changed, 8 insertions, 2 deletions
diff --git a/LICENSE b/LICENSE
index cea6b2e..e4d553a 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,5 +1,5 @@
Copyright 2005-2011 Divmod, Inc.
-Copyright 2013 Florent Xicluna
+Copyright 2013-2014 Florent Xicluna
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
diff --git a/NEWS.txt b/NEWS.txt
index dd63dfe..56c251c 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,3 +1,9 @@
+UNRELEASED:
+ - Adapt for the AST in Python 3.4.
+ - Fix caret position on SyntaxError.
+ - Fix crash on Python 2.x with some doctest SyntaxError.
+ - Add tox.ini.
+
0.7.3 (2013-07-02):
- Do not report undefined name for generator expression and dict or
set comprehension at class level.
diff --git a/README.rst b/README.rst
index 9f4429f..0c5bd04 100644
--- a/README.rst
+++ b/README.rst
@@ -9,7 +9,7 @@ parsing the source file, not importing it, so it is safe to use on
modules with side effects. It's also much faster.
It is `available on PyPI <http://pypi.python.org/pypi/pyflakes>`_
-and it supports all active versions of Python from 2.5 to 3.3.
+and it supports all active versions of Python from 2.5 to 3.4.
Installation