diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2018-12-19 21:00:45 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2018-12-19 21:00:45 +0000 |
commit | bd3464197245aafd583a9ae5a9797d16c0a4324c (patch) | |
tree | 11bac3c53d786b75b567737260707deac13eeff1 | |
parent | df615627c37907dc1960305e95d8547df37b7d03 (diff) | |
download | jackcess-bd3464197245aafd583a9ae5a9797d16c0a4324c.tar.gz jackcess-bd3464197245aafd583a9ae5a9797d16c0a4324c.zip |
more javadocs tweaks; update changes for java 8
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jdk8@1244 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | pom.xml | 1 | ||||
-rw-r--r-- | src/changes/changes.xml | 25 |
2 files changed, 25 insertions, 1 deletions
@@ -274,7 +274,6 @@ <configuration> <minmemory>128m</minmemory> <maxmemory>512</maxmemory> - <doclint>-accessibility,-missing</doclint> <links> <list>https://docs.oracle.com/javase/8/docs/api/</list> <list>http://docs.oracle.com/javaee/5/api/</list> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 3d1160d..632d0a8 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -4,6 +4,31 @@ <author email="javajedi@users.sf.net">Tim McCune</author> </properties> <body> + <release version="3.0.0" date="TBD" description="Update to Java 8"> + <action dev="jahlborn" type="update"> + Jackcess now requires a Java 8+ runtime. As part of this update, all + dependencies have been updated to their latest versions. + </action> + <action dev="jahlborn" type="update"> + Add support for Java 8 Temporal types. Date/time fields will now + accept as input most Temporal types (e.g. LocalDate, LocalTime, + LocalDateTime, etc). Additionally, date/time fields can optionally be + changed to output LocalDateTime instead of Date. This behavior is + configurable on a per-Database basis by setting the DateTimeType for + the database. All Date based APIs now have a parallel LocalDateTime + API. Note that <i>only one of those will work</i> depending on how + the Database is configured. The legacy Date support will be the + default initially, but is deprecated and may be removed in the future. + </action> + <action dev="jahlborn" type="update"> + Add support for Path. Existing File based APIs now have parallel + versions which utilize Path. + </action> + <action dev="jahlborn" type="update"> + The Apache commons-lang dependency has been replaced with + commons-lang3. + </action> + </release> <release version="2.2.1" date="TBD"> <action dev="jahlborn" type="update"> Implement the majority of the missing standard functions: |