diff --git a/jOOQ-codegen/pom.xml b/jOOQ-codegen/pom.xml
index 0b1a7d5091..7937248588 100644
--- a/jOOQ-codegen/pom.xml
+++ b/jOOQ-codegen/pom.xml
@@ -9,12 +9,12 @@
4.0.0
- 1.6.4
+ 1.6.5
org.jooq
jooq-codegen
- 1.6.4
+ 1.6.5
jar
jOOQ Codegen
diff --git a/jOOQ-meta/pom.xml b/jOOQ-meta/pom.xml
index 09cec93f28..238c3a702a 100644
--- a/jOOQ-meta/pom.xml
+++ b/jOOQ-meta/pom.xml
@@ -8,12 +8,12 @@
4.0.0
- 1.6.4
+ 1.6.5
org.jooq
jooq-meta
- 1.6.4
+ 1.6.5
jar
jOOQ Meta
diff --git a/jOOQ-release/build.xml b/jOOQ-release/build.xml
index 46229d32d9..8d3a090169 100644
--- a/jOOQ-release/build.xml
+++ b/jOOQ-release/build.xml
@@ -6,7 +6,7 @@
-
+
diff --git a/jOOQ-release/release/template/RELEASENOTES.txt b/jOOQ-release/release/template/RELEASENOTES.txt
index f6f316abeb..679558ce2a 100644
--- a/jOOQ-release/release/template/RELEASENOTES.txt
+++ b/jOOQ-release/release/template/RELEASENOTES.txt
@@ -2,6 +2,40 @@ jOOQ Release notes
------------------
For an overview, see also https://sourceforge.net/apps/trac/jooq/report/6
+Version 1.6.5
+=================================================================
+
+This release finally adds a loader for CSV data to jOOQ. You can
+now load CSV data using a simple fluent API, configuring error
+handling, duplicate behaviour and transaction handling, as well
+as various CSV parameters.
+
+This release also changes the way generated keys are retrieved
+after INSERT's. Instead of (potentially inconsistently) running
+SELECT MAX(pk) immediately after the INSERT, Postgres' INSERT..
+RETURNING clause is used (or simulated), in a single statement.
+
+Features and improvements
+-------------------------
+#784 - Add Result.exportXML() to retrieve a DOM document similar
+ to that of .formatXML()
+#792 - Add support for loading of CSV data into tables
+#795 - Add List fetch(int, Class) and
+ fetch(String, Class) convenience methods
+#803 - Add support for INSERT .. RETURNING or simulate it where
+ not available
+#805 - Add T[] fetchArray(int, Class) and
+ fetchArray(String, Class) convenience methods
+#806 - Add T fetchOne(int, Class) and
+ fetchOne(String, Class) convenience methods
+
+Bug fixes
+---------
+#798 - Oracle IN (...) clause with more than 1000 arguments does
+ not work
+#802 - Use "INSERT .. RETURNING" instead of "SELECT MAX(pk)"
+ to retrieve the primary key of a new record
+
Version 1.6.4
=================================================================
diff --git a/jOOQ/pom.xml b/jOOQ/pom.xml
index d092b2c555..edb4101aab 100644
--- a/jOOQ/pom.xml
+++ b/jOOQ/pom.xml
@@ -9,12 +9,12 @@
4.0.0
- 1.6.4
+ 1.6.5
org.jooq
jooq
- 1.6.4
+ 1.6.5
jar
jOOQ