diff options
Diffstat (limited to 'internal/extract')
| -rw-r--r-- | internal/extract/extract.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/extract/extract.go b/internal/extract/extract.go index 0843c42..c0f0262 100644 --- a/internal/extract/extract.go +++ b/internal/extract/extract.go @@ -17,7 +17,10 @@ import ( // Version is the version of the text this package extracts. Bump it // whenever a change could make any format's text differ, so every keyword // cache built from the old text is discarded (Fingerprint). -const Version = 2 +// +// 3: a document read only in part (ErrPartial) and text that turns binary +// answer differently from 0.0.7, whose caches may hold their answers. +const Version = 3 var ( // ErrUnsupported is returned when the format carries no text krino |
