aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2011-11-30 22:21:49 -0500
committerJames Moger <james.moger@gmail.com>2011-11-30 22:21:49 -0500
commitf5226e11b5eca714df5db97dd90ee7fe4dc4ea06 (patch)
treeb14408dce73f913a58d38f8d949ce0f2e5ab592c
parent3853d48fdb6c73f712592942fc51c898a19a2846 (diff)
downloadiciql-f5226e11b5eca714df5db97dd90ee7fe4dc4ea06.tar.gz
iciql-f5226e11b5eca714df5db97dd90ee7fe4dc4ea06.zip
Updated H2 1.3.162 and HSQL 2.2.6v0.7.2
-rw-r--r--.classpath12
-rw-r--r--api/v7.xml4
-rw-r--r--docs/00_index.mkd4
-rw-r--r--docs/05_releases.mkd2
-rw-r--r--src/com/iciql/Constants.java4
-rw-r--r--src/com/iciql/build/Build.java10
6 files changed, 19 insertions, 17 deletions
diff --git a/.classpath b/.classpath
index e985d8c..e142a59 100644
--- a/.classpath
+++ b/.classpath
@@ -24,14 +24,8 @@
<attribute name="javadoc_location" value="jar:platform:/resource/iciql/ext/slf4j-api-1.6.1-javadoc.jar!/"/>
</attributes>
</classpathentry>
- <classpathentry kind="lib" path="ext/hsqldb-2.2.4.jar"/>
<classpathentry kind="lib" path="ext/derby-10.8.1.2.jar"/>
<classpathentry kind="lib" path="ext/mysql-connector-java-5.1.15.jar"/>
- <classpathentry kind="lib" path="ext/h2-1.3.159.jar" sourcepath="ext/h2-1.3.159-sources.jar">
- <attributes>
- <attribute name="javadoc_location" value="jar:platform:/resource/iciql/ext/h2-1.3.159-javadoc.jar!/"/>
- </attributes>
- </classpathentry>
<classpathentry kind="lib" path="ext/postgresql-9.0-801.jdbc4.jar"/>
<classpathentry kind="lib" path="ext/commons-dbcp-1.4.jar" sourcepath="C:/Users/James Moger/.m2/repository/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4-sources.jar"/>
<classpathentry kind="lib" path="ext/commons-pool-1.5.6.jar" sourcepath="ext/commons-pool-1.5.6-sources.jar">
@@ -39,5 +33,11 @@
<attribute name="javadoc_location" value="jar:platform:/resource/iciql/ext/commons-pool-1.5.6-javadoc.jar!/"/>
</attributes>
</classpathentry>
+ <classpathentry kind="lib" path="ext/h2-1.3.162.jar" sourcepath="ext/h2-1.3.162-sources.jar">
+ <attributes>
+ <attribute name="javadoc_location" value="jar:platform:/resource/iciql/ext/h2-1.3.162-javadoc.jar!/"/>
+ </attributes>
+ </classpathentry>
+ <classpathentry kind="lib" path="ext/hsqldb-2.2.6.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/api/v7.xml b/api/v7.xml
index 1d27c24..b6b0f72 100644
--- a/api/v7.xml
+++ b/api/v7.xml
@@ -43,7 +43,7 @@
type="java.lang.String"
transient="false"
volatile="false"
- value="&quot;0.7.1&quot;"
+ value="&quot;0.7.2-SNAPSHOT&quot;"
static="true"
final="true"
deprecated="not deprecated"
@@ -54,7 +54,7 @@
type="java.lang.String"
transient="false"
volatile="false"
- value="&quot;2011-08-31&quot;"
+ value="&quot;PENDING&quot;"
static="true"
final="true"
deprecated="not deprecated"
diff --git a/docs/00_index.mkd b/docs/00_index.mkd
index ea5df61..5f23b99 100644
--- a/docs/00_index.mkd
+++ b/docs/00_index.mkd
@@ -36,8 +36,8 @@ select * from products
</table>
### Supported Databases (Unit-Tested)
-- [H2](http://h2database.com) 1.3.159
-- [HSQLDB](http://hsqldb.org) 2.2.4
+- [H2](http://h2database.com) 1.3.162
+- [HSQLDB](http://hsqldb.org) 2.2.6
- [Derby](http://db.apache.org/derby) 10.7.1.1 & 10.8.1.2
- [MySQL](http://mysql.com) 5.0.51b
- [PostgreSQL](http://postgresql.org) 9.0
diff --git a/docs/05_releases.mkd b/docs/05_releases.mkd
index 474b1c3..a28751d 100644
--- a/docs/05_releases.mkd
+++ b/docs/05_releases.mkd
@@ -7,6 +7,8 @@
**%VERSION%** ([zip](http://code.google.com/p/iciql/downloads/detail?name=%ZIP%)|[jar](http://code.google.com/p/iciql/downloads/detail?name=%JAR%)) &nbsp; *released %BUILDDATE%*
- generated models are now serializable with a default serial version id of 1
+- Updated to H2 1.3.162
+- Updated to HSQL 2.2.6 (100% unit test pass now that [this bug](https://sourceforge.net/tracker/?func=detail&aid=3390047&group_id=23316&atid=378131) was fixed)
### Older Releases
diff --git a/src/com/iciql/Constants.java b/src/com/iciql/Constants.java
index 5d63393..dfc18af 100644
--- a/src/com/iciql/Constants.java
+++ b/src/com/iciql/Constants.java
@@ -25,11 +25,11 @@ public class Constants {
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
- public static final String VERSION = "0.7.2-SNAPSHOT";
+ public static final String VERSION = "0.7.2";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
- public static final String VERSION_DATE = "PENDING";
+ public static final String VERSION_DATE = "2011-11-30";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
diff --git a/src/com/iciql/build/Build.java b/src/com/iciql/build/Build.java
index e8b9385..ca80e68 100644
--- a/src/com/iciql/build/Build.java
+++ b/src/com/iciql/build/Build.java
@@ -176,12 +176,12 @@ public class Build {
"219a3540f3b27d7cc3b1d91d6ea046cd8723290e", "0bb50eec177acf0e94d58e0cf07262fe5164331d",
"c7adc475ca40c288c93054e0f4fe58f3a98c0cb5");
- public static final MavenObject H2 = new MavenObject("com/h2database", "h2", "1.3.159",
- "dd89f939661eb5593909584e1c243db0c25de130", "4d953bf765e8a13c7e06ca51165438338966c698",
- "4c79ed03f994820a1a873150c8a9f13c667784d3");
+ public static final MavenObject H2 = new MavenObject("com/h2database", "h2", "1.3.162",
+ "fb381c2cb2805c7135cde33045955fb6e6fa94fd", "ea37eef7637816ef89b25608704d232f763d3875",
+ "7e4a113fa18ce5016e95e8ff319561f39d2b0f5a");
- public static final MavenObject HSQLDB = new MavenObject("org/hsqldb", "hsqldb", "2.2.4",
- "6a6e040b07f5ee409fc825f1c5e5b574b1fa1428", "", "");
+ public static final MavenObject HSQLDB = new MavenObject("org/hsqldb", "hsqldb", "2.2.6",
+ "cf35e8222e4af7aa9d7423b6c1f7a68b6d543867", "", "");
public static final MavenObject DERBY = new MavenObject("org/apache/derby", "derby", "10.8.1.2",
"2f8717d96eafe3eef3de445ba653f142d54ddab1", "", "");