diff options
author | James Moger <james.moger@gmail.com> | 2011-08-05 11:04:29 -0400 |
---|---|---|
committer | James Moger <james.moger@gmail.com> | 2011-08-05 11:04:29 -0400 |
commit | b865898879f0d0eb1e752b41562b463b0c31c517 (patch) | |
tree | 08c7204795719e9ca554203bb1310c1724c4f205 /docs/05_releases.mkd | |
parent | a1ab11053107c8995b3f3e850fa14a2374c2013a (diff) | |
download | iciql-b865898879f0d0eb1e752b41562b463b0c31c517.tar.gz iciql-b865898879f0d0eb1e752b41562b463b0c31c517.zip |
Simplified annotations. Interchangeable int-boolean runtime mapping.
Diffstat (limited to 'docs/05_releases.mkd')
-rw-r--r-- | docs/05_releases.mkd | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/05_releases.mkd b/docs/05_releases.mkd index 50fda43..d04fbea 100644 --- a/docs/05_releases.mkd +++ b/docs/05_releases.mkd @@ -3,9 +3,11 @@ ### Current Release
**%VERSION%** ([zip](http://code.google.com/p/iciql/downloads/detail?name=%ZIP%)|[jar](http://code.google.com/p/iciql/downloads/detail?name=%JAR%)) *released %BUILDDATE%*
+- api change release (API v2)
- added BLOB support (issue 1)
- added java.lang.Enum support (issue 2)
-- api change release (API v2)
+- allow runtime flexible mapping of BOOL columns to Integer fields
+- allow runtime flexible mapping of INT columns to Boolean fields
- annotations overhaul to reduce verbosity
- @IQSchema(name="public") -> @IQSchema("public")
- @IQDatabase(version=2) -> @IQVersion(2)
@@ -15,6 +17,8 @@ %BEGINCODE%
@IQIndexes({ @IQIndex("name"), @IQIndex(name="myindexname" value={"name", "nickname"}) })
%ENDCODE%
+ - @IQColumn(maxLength=20) -> @IQColumn(length=20)
+ - @IQColumn(trimString=true) -> @IQColumn(trim=true)
### Older Releases
|