aboutsummaryrefslogtreecommitdiff
path: root/Annex
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-10-05 16:29:32 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-10-05 16:53:09 -0400
commit4bb1630d88babbca7ad6581f68d4161c77280f2f (patch)
tree277ba7ce982b8b888e0899ca6afee56cdea16f20 /Annex
parentaa38d92afcc0efbe7bb9786d00c45f71af756b75 (diff)
Support using v3 repositories without upgrading them to v5.
An easy change now that supportedVersions is a list. Since v3 and v5 are identical other than version number, just add v3 to the list. This commit was sponsored by andrea rota.
Diffstat (limited to 'Annex')
-rw-r--r--Annex/Version.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/Version.hs b/Annex/Version.hs
index 7726840de..6fdc2c703 100644
--- a/Annex/Version.hs
+++ b/Annex/Version.hs
@@ -22,7 +22,7 @@ latestVersion :: Version
latestVersion = "6"
supportedVersions :: [Version]
-supportedVersions = ["5", "6"]
+supportedVersions = ["3", "5", "6"]
versionForAdjustedClone :: Version
versionForAdjustedClone = "6"