You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by cr...@apache.org on 2001/12/24 22:35:04 UTC

cvs commit: jakarta-commons/beanutils RELEASE-NOTES.txt build.xml

craigmcc    01/12/24 13:35:04

  Modified:    beanutils build.xml
  Added:       beanutils RELEASE-NOTES.txt
  Log:
  Prepare for 1.2 release to provide a stable base for enhancements (especially
  dynamic beans and enhanced converters).  Add release notes to document the
  (very few) changes since 1.1.
  
  Revision  Changes    Path
  1.20      +4 -2      jakarta-commons/beanutils/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/beanutils/build.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- build.xml	2001/12/20 09:31:49	1.19
  +++ build.xml	2001/12/24 21:35:04	1.20
  @@ -3,7 +3,7 @@
   
   <!--
           "Bean Utilities" component of the Jakarta Commons Subproject
  -        $Id: build.xml,v 1.19 2001/12/20 09:31:49 vmassol Exp $
  +        $Id: build.xml,v 1.20 2001/12/24 21:35:04 craigmcc Exp $
   -->
   
   
  @@ -49,7 +49,7 @@
     <property name="component.title"         value="Bean Introspection Utilities"/>
   
     <!-- The current version number of this component -->
  -  <property name="component.version"       value="1.2-dev"/>
  +  <property name="component.version"       value="1.2"/>
   
     <!-- The base directory for compilation targets -->
     <property name="build.home"              value="target"/>
  @@ -198,6 +198,8 @@
      description="Create binary distribution">
       <mkdir      dir="${dist.home}"/>
       <copy      file="../LICENSE"
  +              todir="${dist.home}"/>
  +    <copy      file="RELEASE-NOTES.txt"
                 todir="${dist.home}"/>
       <jar    jarfile="${dist.home}/commons-${component.name}.jar"
               basedir="${build.home}/classes"
  
  
  
  1.1                  jakarta-commons/beanutils/RELEASE-NOTES.txt
  
  Index: RELEASE-NOTES.txt
  ===================================================================
  $Id: RELEASE-NOTES.txt,v 1.1 2001/12/24 21:35:04 craigmcc Exp $
  
                            Commons BeanUtils Package
                                  Version 1.2
                                 Release Notes
  
  
  INTRODUCTION:
  
  This document contains the release notes for this version of the Commons
  BeanUtils package, and highlights changes since the previous version.  The
  current release adds one major new feature and several bug fixes, and is
  being done now to provide a stable starting point for some major enhancements.
  
  
  NEW FEATURES:
  
  * The protected methods in PropertyUtils used to identify the Method objects
    for specific sets of argument types has been extracted into a new
    "MethodUtils" class and made public, because they are generally useful.
    In addition, several convenience methods have been added to utilize the
    new Method finding capabilities.
  
  
  BUG FIXES:
  
  * MappedPropertyDescriptor - Modified the two-argument constructor so that
    read-only properties (no setter method) are correctly recognized.
  
  * PropertyUtils - When searching for public methods, also search the public
    methods of interfaces implemented by superclasses of the current class,
    not just those implemented by the current class itself.
  
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>