Browse Source

Updated H2 1.3.162 and HSQL 2.2.6

tags/v0.7.2^0
James Moger 12 years ago
parent
commit
f5226e11b5
6 changed files with 19 additions and 17 deletions
  1. 6
    6
      .classpath
  2. 2
    2
      api/v7.xml
  3. 2
    2
      docs/00_index.mkd
  4. 2
    0
      docs/05_releases.mkd
  5. 2
    2
      src/com/iciql/Constants.java
  6. 5
    5
      src/com/iciql/build/Build.java

+ 6
- 6
.classpath View File

@@ -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>

+ 2
- 2
api/v7.xml View File

@@ -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"

+ 2
- 2
docs/00_index.mkd View File

@@ -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

+ 2
- 0
docs/05_releases.mkd View File

@@ -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

+ 2
- 2
src/com/iciql/Constants.java View File

@@ -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.

+ 5
- 5
src/com/iciql/build/Build.java View File

@@ -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", "", "");

Loading…
Cancel
Save