summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-09-29 09:21:57 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2014-10-03 16:46:20 +0200
commit220349417af1c737928a967f11450765b1f98362 (patch)
tree38e64c5fd355b6bfcadbf5b378f1d30eb665cf87
parent41d2ad9003ff87e48774c2c6cda09ef810b96271 (diff)
downloadlibgit2-cmn/read-tree-cache.tar.gz
Update CHANGELOG and PROJECTS with the tree cache changescmn/read-tree-cache
-rw-r--r--CHANGELOG.md3
-rw-r--r--PROJECTS.md2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f4714993a..9a27d41c7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,9 @@ v0.21 + 1
* Use a map for the treebuilder, making insertion O(1)
+* The index' tree cache is now filled upon read-tree and write-tree
+ and the cache is written to disk.
+
* LF -> CRLF filter refuses to handle mixed-EOL files
* LF -> CRLF filter now runs when * text = auto (with Git for Windows 1.9.4)
diff --git a/PROJECTS.md b/PROJECTS.md
index 5164d95b6..20580f1fe 100644
--- a/PROJECTS.md
+++ b/PROJECTS.md
@@ -91,8 +91,6 @@ might make good smaller projects by themselves.
* Upgrade internal libxdiff code to latest from core Git
* Improve index internals with hashtable lookup for files instead of
using binary search every time
-* Make the index write the cache out to disk (with tests to gain
- confidence that the caching invalidation works correctly)
* Tree builder improvements:
* Use a hash table when building instead of a list
* Extend to allow building a tree hierarchy