]> arthur.barton.de Git - bup.git/commitdiff
Update HACKING, README, and note/ for 0.29.3
authorRob Browning <rlb@defaultvalue.org>
Sun, 25 Aug 2019 17:29:00 +0000 (12:29 -0500)
committerRob Browning <rlb@defaultvalue.org>
Sat, 28 Sep 2019 17:38:20 +0000 (12:38 -0500)
Signed-off-by: Rob Browning <rlb@defaultvalue.org>
(cherry picked from commit 3359ed35580a43d85f08d3ff233628d4c3601707)

HACKING
README.md
note/0.29.3-from-0.29.2.md [new file with mode: 0644]

diff --git a/HACKING b/HACKING
index cb576bdf7e64efa813218169b4d9adb314b4e948..b2622dbc5a250cbaf618a48f949a651d52c4a03c 100644 (file)
--- a/HACKING
+++ b/HACKING
@@ -19,7 +19,7 @@ via email.
 Current Trajectory
 ==================
 
-Now that we've finished the 0.29.2 release, we're working on 0.30, and
+Now that we've finished the 0.29.3 release, we're working on 0.30, and
 although we're not certain which new features will be included, here
 are likely candidates:
 
index be947aed00488b6edef2755bc764ab5ee6fd6f02..82b0cba3e8e70d9ebd2724e9b3fb0d4550833bc3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -86,6 +86,7 @@ Reasons you might want to avoid bup
 Notable changes introduced by a release
 =======================================
 
+ - <a href="note/0.29.3-from-0.29.2.md">Changes in 0.29.3 as compared to 0.29.2</a>
  - <a href="note/0.29.2-from-0.29.1.md">Changes in 0.29.2 as compared to 0.29.1</a>
  - <a href="note/0.29.1-from-0.29.md">Changes in 0.29.1 as compared to 0.29</a>
  - <a href="note/0.29-from-0.28.1.md">Changes in 0.29 as compared to 0.28.1</a>
diff --git a/note/0.29.3-from-0.29.2.md b/note/0.29.3-from-0.29.2.md
new file mode 100644 (file)
index 0000000..3d60329
--- /dev/null
@@ -0,0 +1,26 @@
+
+Notable changes in 0.29.3 as compared to 0.29.2
+===============================================
+
+General
+-------
+
+* Newer versions of par2 can process in parallel using multiple
+  threads/cores, and they do so automatically.  This ends up competing
+  with `bup fsck`s own parallelism, enabled by `-j`, in such a way
+  that the command can actually run much *slower* (and be much more
+  expensive) than it would have been with no parallelism at all.
+
+  When appropriate `bup fsck` now disables par2's competing
+  parallelism (via its `-t1` option) to avoid the contention.
+
+Build system
+------------
+
+* test-prune-older should no longer be disturbed by git's automatic
+  background gc.
+
+Thanks to (at least)
+====================
+
+Rob Browning and Robert Edmonds