summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG11
-rw-r--r--rdflib/__init__.py4
2 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 5ba5a5ac..67cb8041 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,14 @@
+2012/10/10
+ RELEASE 3.2.3
+
+ Almost identical to 3.2.2
+ A stupid bug snuck into 3.2.2, and querying graphs were broken.
+
+ * Fixes broken querying
+ https://github.com/RDFLib/rdflib/issues/234
+ * graph.transitiveClosure now works with loops
+ https://github.com/RDFLib/rdflib/issues/206
+
2012/09/25
RELEASE 3.2.2
diff --git a/rdflib/__init__.py b/rdflib/__init__.py
index 75ebe2a1..e8e7967a 100644
--- a/rdflib/__init__.py
+++ b/rdflib/__init__.py
@@ -30,8 +30,8 @@ A tiny example:
__docformat__ = "restructuredtext en"
# The format of the __version__ line is matched by a regex in setup.py
-__version__ = "3.4.0-dev"
-__date__ = "2012/09/25"
+__version__ = "3.2.3"
+__date__ = "2012/10/10"
__all__ = [
'URIRef',