home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / cvs14p9b.zip / cvs / ChangeLog < prev    next >
Encoding:
Text File  |  1994-11-05  |  31.4 KB  |  744 lines

  1. Sun Sep 25 19:05:45 1994  Brian Berliner  <berliner@sun.com>
  2.  
  3.     * Changes between CVS 1.3 and CVS 1.4 Alpha-1
  4.  
  5.     * A new program, "cvsbug", is provided to let you send bug reports
  6.     directly to the CVS maintainers.  Please use it instead of sending
  7.     mail to the info-cvs mailing list.
  8.  
  9.     * A new User's Guide and Tutorial, written by Per Cederqvist
  10.     <ceder@signum.se> of Signum Support.
  11.  
  12.     * Index: lines are now printed on output from 'diff' and 'rdiff',
  13.     in order to facilitate application of patches to multiple subdirs.
  14.  
  15.     * Support for a ~/.cvsrc file, which allows you to specify options
  16.     that are always supposed to be given to a specific command.  This
  17.     feature shows the non-orthogonality of the option set, since while
  18.     there may be an option to turn something on, the option to turn
  19.     that same thing off may not exist.
  20.  
  21.     * You can now list subdirectories that you wish to ignore in a
  22.     modules listing, such as:
  23.  
  24.         gcc  -a gnu/gcc, !gnu/gcc/testsuites
  25.  
  26.     which will check out everything underneath gnu/gcc, except
  27.     everything underneath gnu/gcc/testsuites.
  28.  
  29.     * It is now much harder to accidentally overwrite an existing tag
  30.     name, since attempting to move a tag name will result in a error,
  31.     unless the -F (force) flag is given to the tag subcommands.
  32.  
  33.     * Better error checking on matching of the repository used to
  34.     check code out from against the repository the current cvs
  35.     commnands would use. (Thanks to Mark Baushke <mdb@cisco.com>)
  36.  
  37.     * You can now specify an RCS keyword substitution value when you
  38.     import files into the repository.
  39.  
  40.     * Uses a much newer version of Autoconf, and conforms to the GNU
  41.     coding standards much more closely.  No, it still doesn't have
  42.     long option names.
  43.  
  44.     * Code cleanup.  Many passes through gcc -Wall helped to identify
  45.     a number of questionable constructs.  Most arbitrary length limits
  46.     were removed.
  47.  
  48.     * Profiling to determine bottlenecks helped to identify the best
  49.     places to spend time speeding up the code, which was then done.  A
  50.     number of performance enhancements in filename matching have sped
  51.     up checkouts.
  52.  
  53.     * Many more contributions have been added to the "contrib"
  54.     directory.  See the README file in that directory for more
  55.     information.
  56.  
  57.     * "cvs commit" will try harder to not change the file's
  58.     modification time after the commit.  If the file does not change
  59.     as a result of the commit operation, CVS will preserve the
  60.     original modification time, thus speeding up future make-type
  61.     builds.
  62.  
  63.     * "cvs commit" now includes any removed files in the (optional)
  64.     pre-commit checking program that may be invoked.  Previously, only
  65.     added and modified files were included.
  66.  
  67.     * It is now possible to commit a file directly onto the trunk at a
  68.     specific revision level by doing "cvs commit -r3.0 file.c", where
  69.     "3.0" specifies the revision you wish to create.  The file must be
  70.     up-to-date with the current head of the trunk for this to succeed.
  71.  
  72.     * "cvs commit" will now function with a pre-commit program that
  73.     has arguments specified in the "commitinfo" file.
  74.  
  75.     * The "mkmodules" program will now look within the
  76.     $CVSROOT/CVSROOT/checkoutlist" file for any additional files that
  77.     should be automatically checked out within CVSROOT; mkmodules also
  78.     tries harder to preserve any execute bits the files may have
  79.     originally had.
  80.  
  81.     * "cvs diff" is much more accurate about its exit status now.  It
  82.     now returns the maximum exit status of any invoked diff.
  83.  
  84.     * The "-I !" option is now supported for the import and update
  85.     commands correctly.  It will properly clear the ignore list now.
  86.  
  87.     * Some problems with "cvs import" handling of .cvsignore have been
  88.     fixed; as well, some rampant recursion problems with import have
  89.     also been fixed.
  90.  
  91.     * "cvs rdiff" (aka "cvs patch") now tries to set the modify time
  92.     of any temporary files it uses to match those specified for the
  93.     particular revision.  This allows a more accurate patch image to
  94.     be created.
  95.  
  96.     * "cvs status" has improved revision descriptions.  "Working
  97.     revision" is used for the revision of the working file that you
  98.     edit directly; "Repository revision" is the revision of the file
  99.     with the $CVSROOT source repository.  Also, the output is clearer
  100.     with regard to sticky and branch revisions.
  101.  
  102.     * CVS no longer dumps core when given a mixture of directories and
  103.     files in sub-directories (as in "cvs ci file1 dir1/file2").
  104.     Instead, arguments are now clumped into their respective directory
  105.     and operated on in chunks, together.
  106.  
  107.     * Command argument changes:
  108.     cvs:            The "-f" option has been added to ignore
  109.                 the ~/.cvsrc file.
  110.     commit:            Renamed the "-f logfile" option to the
  111.                 "-F logfile" option.  Added the "-f"
  112.                 option to force a commit of the specified
  113.                 files (this disables recursion).
  114.     history:        Added "-t timezone" option to force any
  115.                 date-specific output into the specified
  116.                 timezone.
  117.     import:            Added "-d" option to use the file's
  118.                 modification time as the time of the
  119.                 import. Added "-k sub" option to set the
  120.                 default RCS keyword substitution mode for
  121.                 newly-created files.
  122.     remove:            Added "-f" option to force the file's
  123.                 automatic removal if it still exists in
  124.                 the working directory (use with caution).
  125.     rtag:            Added "-F" option to move the tag if it
  126.                 already exists -- new default is to NOT
  127.                 move tags automatically.
  128.     tag:            Added "-F" option to move the tag if it
  129.                 already exists -- new default is to NOT
  130.                 move tags automatically.
  131.  
  132. Tue Apr  7 15:55:25 1992  Brian Berliner  (berliner at sun.com)
  133.  
  134.     * Changes between CVS 1.3 Beta-3 and official CVS 1.3!
  135.  
  136.     * A new shell script is provided, "./cvsinit", which can be run at
  137.     install time to help setup your $CVSROOT area.  This can greatly
  138.     ease your entry into CVS usage.
  139.  
  140.     * The INSTALL file has been updated to include the machines on
  141.     which CVS has compiled successfully.  I think CVS 1.3 is finally
  142.     portable.  Thanks to all the Beta testers!
  143.  
  144.     * Support for the "editinfo" file was contributed.  This file
  145.     (located in $CVSROOT/CVSROOT) can be used to specify a special
  146.     "editor" to run on a per-directory basis within the repository,
  147.     instead of the usual user's editor.  As such, it can verify that
  148.     the log message entered by the user is of the appropriate form
  149.     (contains a bugid and test validation, for example).
  150.  
  151.     * The manual pages cvs(1) and cvs(5) have been updated.
  152.  
  153.     * The "mkmodules" command now informs you when your modules file
  154.     has duplicate entries.
  155.  
  156.     * The "add" command now preserves any per-directory sticky tag when
  157.     you add a new directory to your checked-out sources.
  158.  
  159.     * The "admin" command is now a fully recursive interface to the
  160.     "rcs" program which operates on your checked-out sources.  It no
  161.     longer requires you to specify the full path to the RCS file.
  162.  
  163.     * The per-file sticky tags can now be effectively removed with
  164.     "cvs update -A file", even if you had checked out the whole
  165.     directory with a per-directory sticky tag.  This allows a great
  166.     deal of flexibility in managing the revisions that your checked-out
  167.     sources are based upon (both per-directory and per-file sticky
  168.     tags).
  169.  
  170.     * The "cvs -n commit" command now works, to show which files are
  171.     out-of-date and will cause the real commit to fail, or which files
  172.     will fail any pre-commit checks.  Also, the "cvs -n import ..."
  173.     command will now show you what it would've done without actually
  174.     doing it.
  175.  
  176.     * Doing "cvs commit modules" to checkin the modules file will no
  177.     properly run the "mkmodules" program (assuming you have setup your
  178.     $CVSROOT/CVSROOT/modules file to do so).
  179.  
  180.     * The -t option in the modules file (which specifies a program to
  181.     run when you do a "cvs rtag" operation on a module) now gets the
  182.     symbolic tag as the second argument when invoked.
  183.  
  184.     * When the source repository is locked by another user, that user's
  185.     login name will be displayed as the holder of the lock.
  186.  
  187.     * Doing "cvs checkout module/file.c" now works even if
  188.     module/file.c is in the Attic (has been removed from main-line
  189.     development).
  190.  
  191.     * Doing "cvs commit */Makefile" now works as one would expect.
  192.     Rather than trying to commit everything recursively, it will now
  193.     commit just the files specified.
  194.  
  195.     * The "cvs remove" command is now fully recursive.  To schedule a
  196.     file for removal, all you have to do is "rm file" and "cvs rm".
  197.     With no arguments, "cvs rm" will schedule all files that have been
  198.     physically removed for removal from the source repository at the
  199.     next "cvs commit".
  200.  
  201.     * The "cvs tag" command now prints "T file" for each file that was
  202.     tagged by this invocation and "D file" for each file that had the
  203.     tag removed (as with "cvs tag -d").
  204.  
  205.     * The -a option has been added to "cvs rtag" to force it to clean
  206.     up any old, matching tags for files that have been removed (in the
  207.     Attic) that may not have been touched by this tag operation.  This
  208.     can help keep a consistent view with your tag, even if you re-use
  209.     it frequently.
  210.  
  211. Sat Feb 29 16:02:05 1992  Brian Berliner  (berliner at sun.com)
  212.  
  213.     * Changes between CVS 1.3 Beta-2 and CVS 1.3 Beta-3
  214.  
  215.     * Many portability fixes, thanks to all the Beta testers!  With any
  216.     luck, this Beta release will compile correctly on most anything.
  217.     Hey, what are we without our dreams.
  218.  
  219.     * CVS finally has support for doing isolated development on a
  220.     branch off the current (or previous!) revisions.  This is also
  221.     extremely nice for generating patches for previously released
  222.     software while development is progressing on the next release.
  223.     Here's an example of creating a branch to fix a patch with the 2.0
  224.     version of the "foo" module, even though we are already well into
  225.     the 3.0 release.  Do:
  226.  
  227.         % cvs rtag -b -rFOO_2_0 FOO_2_0_Patch foo
  228.         % cvs checkout -rFOO_2_0_Patch foo
  229.         % cd foo
  230.         [[ hack away ]]
  231.         % cvs commit
  232.  
  233.     A physical branch will be created in the RCS file only when you
  234.     actually commit the change.  As such, forking development at some
  235.     random point in time is extremely light-weight -- requiring just a
  236.     symbolic tag in each file until a commit is done.  To fork
  237.     development at the currently checked out sources, do:
  238.  
  239.         % cvs tag -b Personal_Hack
  240.         % cvs update -rPersonal_Hack
  241.         [[ hack away ]]
  242.         % cvs commit
  243.  
  244.     Now, if you decide you want the changes made in the Personal_Hack
  245.     branch to be merged in with other changes made in the main-line
  246.     development, you could do:
  247.  
  248.         % cvs commit             # to make Personal_Hack complete
  249.         % cvs update -A             # to update sources to main-line
  250.         % cvs update -jPersonal_Hack # to merge Personal_Hack
  251.  
  252.     to update your checked-out sources, or:
  253.  
  254.         % cvs checkout -jPersonal_Hack module
  255.  
  256.     to checkout a fresh copy.
  257.  
  258.     To support this notion of forked development, CVS reserves
  259.     all even-numbered branches for its own use.  In addition, CVS
  260.     reserves the ".0" and ".1" branches.  So, if you intend to do your
  261.     own branches by hand with RCS, you should use odd-numbered branches
  262.     starting with ".3", as in "1.1.3", "1.1.5", 1.2.9", ....
  263.  
  264.     * The "cvs commit" command now supports a fully functional -r
  265.     option, allowing you to commit your changes to a specific numeric
  266.     revision or symbolic tag with full consistency checks.  Numeric
  267.     tags are useful for bringing your sources all up to some revision
  268.     level:
  269.  
  270.         % cvs commit -r2.0
  271.  
  272.     For symbolic tags, you can only commit to a tag that references a
  273.     branch in the RCS file.  One created by "cvs rtag -b" or from
  274.     "cvs tag -b" is appropriate (see below).
  275.  
  276.     * Roland Pesch <pesch@cygnus.com> and K. Richard Pixley
  277.     <rich@cygnus.com> were kind enough to contribute two new manual
  278.     pages for CVS: cvs(1) and cvs(5).  Most of the new CVS 1.3 features
  279.     are now documented, with the exception of the new branch support
  280.     added to commit/rtag/tag/checkout/update.
  281.  
  282.     * The -j options of checkout/update have been added.  The "cvs join"
  283.     command has been removed.
  284.  
  285.     With one -j option, CVS will merge the changes made between the
  286.     resulting revision and the revision that it is based on (e.g., if
  287.     the tag refers to a branch, CVS will merge all changes made in
  288.     that branch into your working file).
  289.  
  290.     With two -j options, CVS will merge in the changes between the two
  291.     respective revisions.  This can be used to "remove" a certain delta
  292.     from your working file.  E.g., If the file foo.c is based on
  293.     revision 1.6 and I want to remove the changes made between 1.3 and
  294.     1.5, I might do:
  295.  
  296.         % cvs update -j1.5 -j1.3 foo.c        # note the order...
  297.  
  298.     In addition, each -j option can contain on optional date
  299.     specification which, when used with branches, can limit the chosen
  300.     revision to one within a specific date.  An optional date is
  301.     specified by adding a colon (:) to the tag, as in:
  302.  
  303.         -jSymbolic_Tag:Date_Specifier
  304.  
  305.     An example might be what "cvs import" tells you to do when you have
  306.     just imported sources that have conflicts with local changes:
  307.  
  308.         % cvs checkout -jTAG:yesterday -jTAG module
  309.  
  310.     which tells CVS to merge in the changes made to the branch
  311.     specified by TAG in the last 24 hours.  If this is not what is
  312.     intended, substitute "yesterday" for whatever format of date that
  313.     is appropriate, like:
  314.  
  315.         % cvs checkout -jTAG:'1 week ago' -jTAG module
  316.  
  317.     * "cvs diff" now supports the special tags "BASE" and "HEAD".  So,
  318.     the command:
  319.  
  320.         % cvs diff -u -rBASE -rHEAD
  321.  
  322.     will effectively show the changes made by others (in unidiff
  323.     format) that will be merged into your working sources with your
  324.     next "cvs update" command.  "-rBASE" resolves to the revision that
  325.     your working file is based on.  "-rHEAD" resolves to the current
  326.     head of the branch or trunk that you are working on.
  327.  
  328.     * The -P option of "cvs checkout" now means to Prune empty
  329.     directories, as with "update".  The default is to not remove empty
  330.     directories.  However, if you do "checkout" with any -r options, -P
  331.     will be implied.  I.e., checking out with a tag will cause empty
  332.     directories to be pruned automatically.
  333.  
  334.     * The new file INSTALL describes how to install CVS, including
  335.     detailed descriptions of interfaces to "configure".
  336.  
  337.     * The example loginfo file in examples/loginfo has been updated to
  338.     use the perl script included in contrib/log.pl.  The nice thing
  339.     about this log program is that it records the revision numbers of
  340.     your change in the log message.
  341.  
  342.     Example files for commitinfo and rcsinfo are now included in the
  343.     examples directory.
  344.  
  345.     * All "#if defined(__STDC__) && __STDC__ == 1" lines have been
  346.     changed to be "#if __STDC__" to fix some problems with the former.
  347.  
  348.     * The lib/regex.[ch] files have been updated to the 1.3 release of
  349.     the GNU regex package.
  350.  
  351.     * The ndbm emulation routines included with CVS 1.3 Beta-2 in the
  352.     src/ndbm.[ch] files has been moved into the src/myndbm.[ch] files
  353.     to avoid any conflict with the system <ndbm.h> header file.  If
  354.     you had a previous CVS 1.3 Beta release, you will want to "cvs
  355.     remove ndbm.[ch]" form your copy of CVS as well.
  356.  
  357.     * "cvs add" and "cvs remove" are a bit more verbose, telling you
  358.     what to do to add/remove your file permanently.
  359.  
  360.     * We no longer mess with /dev/tty in "commit" and "add".
  361.  
  362.     * More things are quiet with the -Q option set.
  363.  
  364.     * New src/config.h option:  If CVS_BADROOT is set, CVS will not
  365.     allow people really logged in as "root" to commit changes.
  366.  
  367.     * "cvs diff" exits with a status of 0 if there were no diffs, 1 if
  368.     there were diffs, and 2 if there were errors.
  369.  
  370.     * "cvs -n diff" is now supported so that you can still run diffs
  371.     even while in the middle of committing files.
  372.  
  373.     * Handling of the CVS/Entries file is now much more robust.
  374.  
  375.     * The default file ignore list now includes "*.so".
  376.  
  377.     * "cvs import" did not expand '@' in the log message correctly.  It
  378.     does now.  Also, import now uses the ignore file facility
  379.     correctly.
  380.  
  381.     Import will now tell you whether there were conflicts that need to
  382.     be resolved, and how to resolve them.
  383.  
  384.     * "cvs log" has been changed so that you can "log" things that are
  385.     not a part of the current release (in the Attic).
  386.  
  387.     * If you don't change the editor message on commit, CVS now prompts
  388.     you with the choice:
  389.  
  390.         !)reuse this message unchanged for remaining dirs
  391.  
  392.     which allows you to tell CVS that you have no intention of changing
  393.     the log message for the remainder of the commit.
  394.  
  395.     * It is no longer necessary to have CVSROOT set if you are using
  396.     the -H option to get Usage information on the commands.
  397.  
  398.     * Command argument changes:
  399.     checkout:        -P handling changed as described above.
  400.                 New -j option (up to 2 can be specified)
  401.                 for doing rcsmerge kind of things on
  402.                 checkout.
  403.     commit:            -r option now supports committing to a
  404.                 numeric or symbolic tags, with some
  405.                 restrictions.  Full consistency checks will
  406.                 be done.
  407.                 Added "-f logfile" option, which tells
  408.                 commit to glean the log message from the
  409.                 specified file, rather than invoking the
  410.                 editor.
  411.     rtag:            Added -b option to create a branch tag,
  412.                 useful for creating a patch for a previous
  413.                 release, or for forking development.
  414.     tag:            Added -b option to create a branch tag,
  415.                 useful for creating a patch for a previous
  416.                 release, or for forking development.
  417.     update:            New -j option (up to 2 can be specified)
  418.                 for doing rcsmerge kind of things on
  419.                 update.
  420.  
  421. Thu Jan  9 10:51:35 MST 1992 Jeff Polk (polk at BSDI.COM)
  422.  
  423.     * Changes between CVS 1.3 Beta-1 and CVS 1.3 Beta-2
  424.  
  425.     * Thanks to K. Richard Pixley at Cygnus we now have function
  426.     prototypes in all the files
  427.  
  428.     * Some small changes to configure for portability.  There have
  429.     been other portability problems submitted that have not been fixed
  430.     (Brian will be working on those).  Additionally all __STDC__
  431.     tests have been modified to check __STDC__ against the constant 1 
  432.     (this is what the Second edition of K&R says must be true).
  433.  
  434.     * Lots of additional error checking for forked processes (run_exec)
  435.     (thanks again to K. Richard Pixley)
  436.  
  437.     * Lots of miscellaneous bug fixes - including but certainly not 
  438.     limited to:
  439.         various commit core dumps
  440.         various update core dumps
  441.         bogus results from status with numeric sticky tags
  442.         commitprog used freed memory
  443.         Entries file corruption caused by No_Difference
  444.         commit to revision broken (now works if branch exists)
  445.         ignore file processing broken for * and !
  446.         ignore processing didn't handle memory reasonably
  447.         miscellaneous bugs in the recursion processor
  448.         file descriptor leak in ParseInfo
  449.         CVSROOT.adm->CVSROOT rename bug
  450.         lots of lint fixes
  451.  
  452.     * Reformatted all the code in src (with GNU indent) and then 
  453.     went back and fixed prototypes, etc since indent gets confused.  The
  454.     rationale is that it is better to do it sooner than later and now
  455.     everything is consistent and will hopefully stay that way.
  456.     The basic options to indent were: "-bad -bbb -bap -cdb -d0 -bl -bli0 
  457.     -nce -pcs -cs -cli4 -di1 -nbc -psl -lp -i4 -ip4 -c41"  and then
  458.     miscellaneous formatting fixes were applied.  Note also that the 
  459.     "-nfc1" or "-nfca" may be appropriate in files where comments have
  460.     been carefully formatted (e.g, modules.c).
  461.  
  462. Sat Dec 14 20:35:22 1991  Brian Berliner  (berliner at sun.com)
  463.  
  464.     * Changes between CVS 1.2 and CVS 1.3 Beta are described here.
  465.  
  466.     * Lots of portability work.  CVS now uses the GNU "configure"
  467.     script to dynamically determine the features provided by your
  468.     system.  It probably is not foolproof, but it is better than
  469.     nothing.  Please let me know of any portability problems.  Some
  470.     file names were changed to fit within 14-characters.
  471.  
  472.     * CVS has a new RCS parser that is much more flexible and
  473.     extensible.  It should read all known RCS ",v" format files.
  474.  
  475.     * Most of the commands now are fully recursive, rather than just
  476.     operating on the current directory alone.  This includes "commit",
  477.     which makes it real easy to do an "atomic" commit of all the
  478.     changes made to a CVS hierarchy of sources.  Most of the commands
  479.     also correctly handle file names that are in directories other than
  480.     ".", including absolute path names.  Commands now accept the "-R"
  481.     option to force recursion on (though it is always the default now)
  482.     and the "-l" option to force recursion off, doing just "." and not
  483.     any sub-directories.
  484.  
  485.     * CVS supports many of the features provided with the RCS 5.x
  486.     distribution - including the new "-k" keyword expansion options.  I
  487.     recommend using RCS 5.x (5.6 is the current official RCS version)
  488.     and GNU diff 1.15 (or later) distributions with CVS.
  489.  
  490.     * Checking out files with symbolic tags/dates is now "sticky", in
  491.     that CVS remembers the tag/date used for each file (and directory)
  492.     and will use that tag/date automatically on the next "update" call.
  493.     This stickyness also holds for files checked out with the the new
  494.     RCS 5.x "-k" options.
  495.  
  496.     * The "cvs diff" command now recognizes all of the rcsdiff 5.x
  497.     options.  Unidiff format is available by installing the GNU
  498.     diff 1.15 distribution.
  499.  
  500.     * The old "CVS.adm" directories created on checkout are now called
  501.     "CVS" directories, to look more like "RCS" and "SCCS".  Old CVS.adm
  502.     directories are automagically converted to CVS directories.  The
  503.     old "CVSROOT.adm" directory within the source repository is
  504.     automagically changed into a "CVSROOT" directory as well.
  505.  
  506.     * Symbolic links in the source repository are fully supported ONLY
  507.     if you use RCS 5.6 or later and (of course) your system supports
  508.     symlinks.
  509.  
  510.     * A history database has been contributed which maintains the
  511.     history of certain CVS operations, as well as providing a wide array
  512.     of querying options.
  513.  
  514.     * The "cvs" program has a "-n" option which can be used with the
  515.     "update" command to show what would be updated without actually
  516.     doing the update, like:  "cvs -n update".  All usage statements
  517.     have been cleaned up and made more verbose.
  518.  
  519.     * The module database parsing has been rewritten.  The new format
  520.     is compatible with the old format, but with much more
  521.     functionality.  It allows modules to be created that grab pieces or
  522.     whole directories from various different parts of your source
  523.     repository.  Module-relative specifications are also correctly
  524.     recognized now, like "cvs checkout module/file.c".
  525.  
  526.     * A configurable template can be specified such that on a "commit", 
  527.     certain directories can supply a template that the user must fill
  528.     before completing the commit operation.
  529.  
  530.     * A configurable pre-commit checking program can be specified which
  531.     will run to verify that a "commit" can happen.  This feature can be
  532.     used to restrict certain users from changing certain pieces of the
  533.     source repository, or denying commits to the entire source
  534.     repository.
  535.  
  536.     * The new "cvs export" command is much like "checkout", but
  537.     establishes defaults suitable for exporting code to others (expands
  538.     out keywords, forces the use of a symbolic tag, and does not create
  539.     "CVS" directories within the checked out sources.
  540.  
  541.     * The new "cvs import" command replaces the deprecated "checkin"
  542.     shell script and is used to import sources into CVS control.  It is
  543.     also much faster for the first-time import.  Some algorithmic
  544.     improvements have also been made to reduce the number of
  545.     conflicting files on next-time imports.
  546.  
  547.     * The new "cvs admin" command is basically an interface to the
  548.     "rcs" program.  (Not yet implemented very well).
  549.  
  550.     * Signal handling (on systems with BSD or POSIX signals) is much
  551.     improved.  Interrupting CVS now works with a single interrupt!
  552.  
  553.     * CVS now invokes RCS commands by direct fork/exec rather than
  554.     calling system(3).  This improves performance by removing a call to
  555.     the shell to parse the arguments.
  556.  
  557.     * Support for the .cvsignore file has been contributed.  CVS will
  558.     now show "unknown" files as "? filename" as the result of an "update"
  559.     command.  The .cvsignore file can be used to add files to the
  560.     current list of ignored files so that they won't show up as unknown.
  561.  
  562.     * Command argument changes:
  563.     cvs:        Added -l to turn off history logging.
  564.             Added -n to show what would be done without actually
  565.             doing anything.
  566.             Added -q/-Q for quiet and really quiet settings.
  567.             Added -t to show debugging trace.
  568.     add:        Added -k to allow RCS 5.x -k options to be specified.
  569.     admin:        New command; an interface to rcs(1).
  570.     checkout:    Added -A to reset sticky tags/date/options.
  571.             Added -N to not shorten module paths.
  572.             Added -R option to force recursion.
  573.             Changed -p (prune empty directories) to -P option.
  574.             Changed -f option; forcing tags match is now default.
  575.             Added -p option to checkout module to standard output.
  576.             Added -s option to cat the modules db with status.
  577.             Added -d option to checkout in the specified directory.
  578.             Added -k option to use RCS 5.x -k support.
  579.     commit:        Removed -a option; use -l instead.
  580.             Removed -f option.
  581.             Added -l option to disable recursion.
  582.             Added -R option to force recursion.
  583.             If no files specified, commit is recursive.
  584.     diff:        Now recognizes all RCS 5.x rcsdiff options.
  585.             Added -l option to disable recursion.
  586.             Added -R option to force recursion.
  587.     history:    New command; displays info about CVS usage.
  588.     import:        Replaces "checkin" shell script; imports sources
  589.             under CVS control.  Ignores files on the ignore
  590.             list (see -I option or .cvsignore description above).
  591.     export:        New command; like "checkout", but w/special options
  592.             turned on by default to facilitate exporting sources.
  593.     join:        Added -B option to join from base of the branch;
  594.             join now defaults to only joining with the top two
  595.             revisions on the branch.
  596.             Added -k option for RCS 5.x -k support.
  597.     log:        Supports all RCS 5.x options.
  598.             Added -l option to disable recursion.
  599.             Added -R option to force recursion.
  600.     patch:        Changed -f option; forcing tags match is now default.
  601.             Added -c option to force context-style diffs.
  602.             Added -u option to support unidiff-style diffs.
  603.             Added -V option to support RCS specific-version
  604.             keyword expansion formats.
  605.             Added -R option to force recursion.
  606.     remove:        No option changes.  It's a bit more verbose.
  607.     rtag:        Equivalent to the old "cvs tag" command.
  608.             No option changes.  It's a lot faster for re-tag.
  609.     status:        New output formats with more information.
  610.             Added -l option to disable recursion.
  611.             Added -R option to force recursion.
  612.             Added -v option to show symbolic tags for files.
  613.     tag:        Functionality changed to tag checked out files
  614.             rather than modules; use "rtag" command to get the
  615.             old "cvs tag" behaviour.
  616.     update:        Added -A to reset sticky tags/date/options.
  617.             Changed -p (prune empty directories) to -P option.
  618.             Changed -f option; forcing tags match is now default.
  619.             Added -p option to checkout module to standard output.
  620.             Added -I option to add files to the ignore list.
  621.             Added -R option to force recursion.
  622.  
  623.     Major Contributors:
  624.  
  625.     * Jeff Polk <polk@bsdi.com> rewrote most of the grody code of CVS
  626.     1.2.  He made just about everything dynamic (by using malloc),
  627.     added a generic hashed list manager, re-wrote the modules database
  628.     parsing in a compatible - but extended way, generalized directory
  629.     hierarchy recursion for virtually all the commands (including
  630.     commit!), generalized the loginfo file to be used for pre-commit
  631.     checks and commit templates, wrote a new and flexible RCS parser,
  632.     fixed an uncountable number of bugs, and helped in the design of
  633.     future CVS features.  If there's anything gross left in CVS, it's
  634.     probably my fault!
  635.  
  636.     * David G. Grubbs <dgg@odi.com> contributed the CVS "history" and
  637.     "release" commands.  As well as the ever-so-useful "-n" option of
  638.     CVS which tells CVS to show what it would do, without actually
  639.     doing it.  He also contributed support for the .cvsignore file.
  640.  
  641.     * Paul Sander, HaL Computer Systems, Inc. <paul@hal.com> wrote and
  642.     contributed the code in lib/sighandle.c.  I added support for
  643.     POSIX, BSD, and non-POSIX/non-BSD systems.
  644.  
  645.     * Free Software Foundation contributed the "configure" script and
  646.     other compatibility support in the "lib" directory, which will help
  647.     make CVS much more portable.
  648.  
  649.     * Many others have contributed bug reports and enhancement requests.
  650.     Some have even submitted actual code which I have not had time yet
  651.     to integrate into CVS.  Maybe for the next release.
  652.  
  653.     * Thanks to you all!
  654.  
  655. Wed Feb  6 10:10:58 1991  Brian Berliner  (berliner at sun.com)
  656.  
  657.     * Changes from CVS 1.0 Patchlevel 1 to CVS 1.0 Patchlevel 2; also
  658.     known as "Changes from CVS 1.1 to CVS 1.2".
  659.  
  660.     * Major new support with this release is the ability to use the
  661.     recently-posted RCS 5.5 distribution with CVS 1.2.  See below for
  662.     other assorted bug-fixes that have been thrown in.
  663.  
  664.     * ChangeLog (new): Added Emacs-style change-log file to CVS 1.2
  665.     release.  Chronological description of changes between release.
  666.  
  667.     * README: Small fixes to installation instructions.  My email
  668.     address is now "berliner@sun.com".
  669.  
  670.     * src/Makefile: Removed "rcstime.h".  Removed "depend" rule.
  671.  
  672.     * src/partime.c:  Updated to RCS 5.5 version with hooks for CVS.
  673.     * src/maketime.c: Updated to RCS 5.5 version with hooks for CVS.
  674.     * src/rcstime.h:  Removed from the CVS 1.2 distribution.
  675.     Thanks to Paul Eggert <eggert@twinsun.com> for these changes.
  676.  
  677.     * src/checkin.csh: Support for RCS 5.5 parsing.
  678.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  679.  
  680.     * src/collect_sets.c (Collect_Sets): Be quieter if "-f" option is
  681.     specified.  When checking out files on-top-of other files that CVS
  682.     doesn't know about, run a diff in the hopes that they are really
  683.     the same file before aborting.
  684.  
  685.     * src/commit.c (branch_number): Fix for RCS 5.5 parsing.
  686.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  687.  
  688.     * src/commit.c (do_editor): Bug fix - fprintf missing argument
  689.     which sometimes caused core dumps.
  690.  
  691.     * src/modules.c (process_module): Properly NULL-terminate
  692.     update_dir[] in all cases.
  693.  
  694.     * src/no_difference.c (No_Difference): The wrong RCS revision was
  695.     being registered in certain (strange) cases.
  696.  
  697.     * src/patch.c (get_rcsdate): New algorithm.  No need to call
  698.     maketime() any longer.
  699.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  700.  
  701.     * src/patchlevel.h: Increased patch level to "2".
  702.  
  703.     * src/subr.c (isdir, islink): Changed to compare stat mode bits
  704.     correctly.
  705.  
  706.     * src/tag.c (tag_file): Added support for following symbolic links
  707.     that are in the master source repository when tagging.  Made tag
  708.     somewhat quieter in certain cases.
  709.  
  710.     * src/update.c (update_process_lists): Unlink the user's file if it
  711.     was put on the Wlist, meaning that the user's file is not modified
  712.     and its RCS file has been removed by someone else.
  713.  
  714.     * src/update.c (update): Support for "cvs update dir" to correctly
  715.     just update the argument directory "dir".
  716.  
  717.     * src/cvs.h: Fixes for RCS 5.5 parsing.
  718.     * src/version_number.c (Version_Number): Fixes for parsing RCS 5.5
  719.     and older RCS-format files.
  720.     Thanks to Paul Eggert <eggert@twinsun.com> for these changes.
  721.  
  722.     * src/version_number.c (Version_Number): Bug fixes for "-f" option.
  723.     Bug fixes for parsing with certain branch numbers.  RCS
  724.     revision/symbol parsing is much more solid now.
  725.  
  726. Wed Feb 14 10:01:33 1990  Brian Berliner  (berliner at sun.com)
  727.  
  728.     * Changes from CVS 1.0 Patchlevel 0 to CVS 1.0 Patchlevel 1; also
  729.     known as "Changes from CVS 1.0 to CVS 1.1".
  730.  
  731.     * src/patch.c (get_rcsdate): Portability fix.  Replaced call to
  732.     timelocal() with call to maketime().
  733.  
  734. Mon Nov 19 23:15:11 1990  Brian Berliner  (berliner at prisma.com)
  735.  
  736.     * Sent CVS 1.0 release to comp.sources.unix moderator and FSF.
  737.  
  738.     * Special thanks to Dick Grune <dick@cs.vu.nl> for his work on the
  739.     1986 version of CVS and making it available to the world.  Dick's
  740.     version is available on uunet.uu.net in the
  741.     comp.sources.unix/volume6/cvs directory.
  742.  
  743. $CVSid: @(#)ChangeLog 1.29 94/09/26 $
  744.