Browse Source

Prepare 1.0.0 release

tags/v1.0.0^0
James Moger 12 years ago
parent
commit
23fc70c5d2
5 changed files with 6559 additions and 11 deletions
  1. 6552
    0
      api/v15.xml
  2. 4
    4
      build.xml
  3. 0
    2
      docs/00_index.mkd
  4. 0
    2
      docs/05_releases.mkd
  5. 3
    3
      src/com/iciql/Constants.java

+ 6552
- 0
api/v15.xml
File diff suppressed because it is too large
View File


+ 4
- 4
build.xml View File

@@ -76,10 +76,10 @@
</filterchain>
</loadfile>
<property name="library.jar" value="${basedir}/iciql-${iq.version}.jar" />
<property name="javadoc.jar" value="${basedir}/iciql-${iq.version}-javadoc.jar" />
<property name="sources.jar" value="${basedir}/iciql-${iq.version}-sources.jar" />
<property name="distribution.zip" value="${basedir}/iciql-${iq.version}.zip" />
<property name="library.jar" value="iciql-${iq.version}.jar" />
<property name="javadoc.jar" value="iciql-${iq.version}-javadoc.jar" />
<property name="sources.jar" value="/iciql-${iq.version}-sources.jar" />
<property name="distribution.zip" value="iciql-${iq.version}.zip" />
</target>

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

@@ -50,8 +50,6 @@ iciql requires a Java 6 Runtime Environment (JRE) or a Java 6 Development Kit (J
### Current Release
<span class="warning">iciql is undergoing rapid development so api and configuration are subject to change from release to release</span>
**%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%*
issues, binaries, & source @ [Google Code][googlecode]<br/>

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

@@ -2,8 +2,6 @@
### Current Release
<span class="warning">iciql is undergoing rapid development so api and configuration are subject to change from release to release</span>
**%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%*
- Issue CREATE TABLE and CREATE INDEX statements once per-db instance/table-mapping

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

@@ -25,14 +25,14 @@ 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 = "1.0.0-SNAPSHOT";
public static final String VERSION = "1.0.0";
// 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 = "2012-05-07";
public static final String VERSION_DATE = "2012-07-14";
// 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 API_CURRENT = "14";
public static final String API_CURRENT = "15";
}

Loading…
Cancel
Save