You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by th...@apache.org on 2015/04/15 16:43:54 UTC

svn commit: r1673792 - in /commons/proper/dbutils/trunk: pom.xml src/changes/changes.xml

Author: thecarlhall
Date: Wed Apr 15 14:43:54 2015
New Revision: 1673792

URL: http://svn.apache.org/r1673792
Log:
Update changes file for recent updates
Add rat to verify license headers
Add myself as a developer

Modified:
    commons/proper/dbutils/trunk/pom.xml
    commons/proper/dbutils/trunk/src/changes/changes.xml

Modified: commons/proper/dbutils/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/pom.xml?rev=1673792&r1=1673791&r2=1673792&view=diff
==============================================================================
--- commons/proper/dbutils/trunk/pom.xml [utf-8] (original)
+++ commons/proper/dbutils/trunk/pom.xml [utf-8] Wed Apr 15 14:43:54 2015
@@ -121,6 +121,15 @@
         <role>Java Developer</role>
       </roles>
     </developer>
+    <developer>
+      <name>Carl Hall</name>
+      <id>thecarlhall</id>
+      <email>thecarlhall@apache.org</email>
+      <organization />
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
   </developers>
 
   <contributors>
@@ -257,6 +266,19 @@
           <tarLongFileMode>gnu</tarLongFileMode>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.11</version>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
 

Modified: commons/proper/dbutils/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/src/changes/changes.xml?rev=1673792&r1=1673791&r2=1673792&view=diff
==============================================================================
--- commons/proper/dbutils/trunk/src/changes/changes.xml (original)
+++ commons/proper/dbutils/trunk/src/changes/changes.xml Wed Apr 15 14:43:54 2015
@@ -56,6 +56,15 @@ The <action> type attribute can be add,u
       <action dev="thecarlhall" type="add" issue="DBUTILS-121">
         Add getWriteMethod to BeanProcessor to allow subclasses to influence which write method is used
       </action>
+      <action dev="thecarlhall" type="fix" issue="DBUTILS-82" due-to="Kenshi Toriumi">
+        Change method contracts to allow extended class types when returning a bean populated from a query
+      </action>
+      <action dev="thecarlhall" type="fix" issue="DBUTILS-89" due-to="Adam Dyga">
+        Add method in BeanProcessor to populate an existing bean
+      </action>
+      <action dev="thecarlhall" type="fix" issue="DBUTILS-70" due-to="Michael Akerman">
+        Add ability to configure statements used in QueryRunner
+      </action>
     </release>
 
     <release version="1.6" date="2014-07-20" description="Bugfixes and addition of insert methods">