Fixed the opening comments.
[rsync/rsync.git] / NEWS
diff --git a/NEWS b/NEWS
index 4cffa09..1f3c1d7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -69,6 +69,11 @@ Changes since 2.6.2:
       onto another partition on the receiving side and have rsync treat it
       as matching a normal directory from the sender.
 
+    - Added the --inplace option that tells rsync to write each destination
+      file without using a temporary file.  The matching of existing data
+      in the destination file can be severely limited by this, but there
+      are cases where this is more efficient, such as appending data.
+
     - Added the "write only" option to the daemon's config file.
 
     - Added long-option names for -4 and -6 (namely --ipv4 and --ipv6)
@@ -83,6 +88,15 @@ Changes since 2.6.2:
 
     - Added the --checksum-seed=N option for advanced users.
 
+    - Batch writing/reading has a brand-new implementation that is simpler,
+      fixes a few weird problems with the old code (such as no longer
+      sprinkling the batch files into different dirs or even onto different
+      systems), and is much less intrusive into the code (making it easier
+      to maintain for the future).  The new code generates just one data
+      file instead of three, which makes it possible to read the batch via
+      stdin.  Also, the old requirement of using the same fixed checksum-
+      seed for all batch processing has been removed.
+
   INTERNAL:
 
     - Some cleanup in the exclude code has saved some per-exclude memory