Skip to content

Commit

Permalink
Release 2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Apr 22, 2012
1 parent d2caa99 commit 1c0dc9a
Show file tree
Hide file tree
Showing 9 changed files with 97 additions and 16 deletions.
6 changes: 3 additions & 3 deletions jOOQ-codegen-maven-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>org.jooq</groupId>
<artifactId>jooq-codegen-maven-example</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<packaging>jar</packaging>

<name>jOOQ Codegen Maven</name>
Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down Expand Up @@ -106,7 +106,7 @@
<plugin>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen-maven</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<executions>
<execution>
<id>exec1</id>
Expand Down
4 changes: 2 additions & 2 deletions jOOQ-codegen-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>org.jooq</groupId>
<artifactId>jooq-codegen-maven</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<packaging>maven-plugin</packaging>

<name>jOOQ Codegen Maven</name>
Expand Down Expand Up @@ -160,7 +160,7 @@
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<type>jar</type>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions jOOQ-codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.jooq</groupId>
<artifactId>jooq-codegen</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<packaging>jar</packaging>

<name>jOOQ Codegen</name>
Expand Down Expand Up @@ -150,14 +150,14 @@
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq-meta</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions jOOQ-console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.jooq</groupId>
<artifactId>jooq-console</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<packaging>jar</packaging>

<name>jOOQ</name>
Expand Down Expand Up @@ -197,7 +197,7 @@
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions jOOQ-meta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>org.jooq</groupId>
<artifactId>jooq-meta</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<packaging>jar</packaging>

<name>jOOQ Meta</name>
Expand Down Expand Up @@ -149,7 +149,7 @@
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
40 changes: 40 additions & 0 deletions jOOQ-release/release/template/RELEASENOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,46 @@ http://www.jooq.org/notes.php
For a text version, see
http://www.jooq.org/inc/RELEASENOTES.txt

Version 2.0.6 - April 22, 2012
=================================================================

This is a minor patch release, fixing some issues

Bug fixes
---------
#1189 - TableMapping regression for SQLite database
#1190 - Cannot store SQLite records when using
StatementType.STATIC_STATEMENT
#1199 - Table.getFields() returns an internal representation of a
table's field list. Make generated tables immutable
instead!
#1211 - Enforce method name disambiguation also when using custom
strategies (regression of #182)
#1212 - Enforce identifier disambiguation also when using custom
strategies (regression)
#1221 - Incorrect ExecuteListener invocation for INSERT ..
RETURNING. executeStart() and executeEnd() are omitted
#1223 - Cache ExecuteListener classes for performance
#1232 - SQLException when Factory.fetch() does not return a
ResultSet
#1237 - Don't generate enum classes for columns in MySQL tables
that are excluded from code generation
#1241 - Wrong variable binding when comparing CHAR columns in
Derby and DB2 without explicit casting to VARCHAR
#1244 - Cannot override class name in GeneratorStrategy in
Mode.POJO
#1256 - User defined H2 functions codegen bug
#1263 - Pass fetchsizes <= 0 to the JDBC driver (for MySQL
compatibility)
#1271 - Most databases allow for multiple identical foreign keys.
This leads to compilation errors in generated source code
#1287 - Remove oracle.sql dependency also from OSGi information
in pom.xml
#1298 - Avoid source code generation errors when generating code
for unknown, dialect-specific data types
#1343 - Regression in insertInto(...).values(...). Cannot pass
Field<?> to values()

Version 2.0.5 - February 26, 2012
=================================================================

Expand Down
45 changes: 43 additions & 2 deletions jOOQ-website/inc/RELEASENOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,46 @@ http://www.jooq.org/notes.php
For a text version, see
http://www.jooq.org/inc/RELEASENOTES.txt

Version 2.0.6 - April 22, 2012
=================================================================

This is a minor patch release, fixing some issues

Bug fixes
---------
#1189 - TableMapping regression for SQLite database
#1190 - Cannot store SQLite records when using
StatementType.STATIC_STATEMENT
#1199 - Table.getFields() returns an internal representation of a
table's field list. Make generated tables immutable
instead!
#1211 - Enforce method name disambiguation also when using custom
strategies (regression of #182)
#1212 - Enforce identifier disambiguation also when using custom
strategies (regression)
#1221 - Incorrect ExecuteListener invocation for INSERT ..
RETURNING. executeStart() and executeEnd() are omitted
#1223 - Cache ExecuteListener classes for performance
#1232 - SQLException when Factory.fetch() does not return a
ResultSet
#1237 - Don't generate enum classes for columns in MySQL tables
that are excluded from code generation
#1241 - Wrong variable binding when comparing CHAR columns in
Derby and DB2 without explicit casting to VARCHAR
#1244 - Cannot override class name in GeneratorStrategy in
Mode.POJO
#1256 - User defined H2 functions codegen bug
#1263 - Pass fetchsizes <= 0 to the JDBC driver (for MySQL
compatibility)
#1271 - Most databases allow for multiple identical foreign keys.
This leads to compilation errors in generated source code
#1287 - Remove oracle.sql dependency also from OSGi information
in pom.xml
#1298 - Avoid source code generation errors when generating code
for unknown, dialect-specific data types
#1343 - Regression in insertInto(...).values(...). Cannot pass
Field<?> to values()

Version 2.0.5 - February 26, 2012
=================================================================

Expand All @@ -30,9 +70,10 @@ http://www.jooq.org/manual/JOOQ/Factory/

The listener and tracing support has been requested by
Christopher Deckers, a new jOOQ user who has had the courtesy to
contribute the new jOOQ Console, which is documented here:
contribute the new experimental jOOQ Console, which is
documented here:

http://www.jooq.org/manual/ADVANCED/Console/
http://www.jooq.org/manual/ADVANCED/ExecuteListener/

Apart from that, another long-requested feature is now fully
implemented: The GeneratorStrategy, allowing for custom naming
Expand Down
2 changes: 1 addition & 1 deletion jOOQ/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>2.0.6-SNAPSHOT</version>
<version>2.0.6</version>
<packaging>jar</packaging>

<name>jOOQ</name>
Expand Down
2 changes: 1 addition & 1 deletion jOOQ/src/main/java/org/jooq/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public final class Constants {
/**
* The latest jOOQ version
*/
public static final String VERSION = "2.0.5";
public static final String VERSION = "2.0.6";

/**
* No further instances
Expand Down

0 comments on commit 1c0dc9a

Please sign in to comment.