summaryrefslogtreecommitdiff
path: root/Annex/Version.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-12-15 17:17:13 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-12-15 17:17:13 -0400
commit42710158e49f8460ac50b6a77d317b2f6cda4b57 (patch)
tree627f5546fe591df3191a0dbc287a8262ef70efcd /Annex/Version.hs
parent49983aafdc36f21aee6aef9a540ac93d7171ab69 (diff)
Use git-annex init --version=6 to get v6 for now
Not ready to make it default because of the direct mode upgrade needing to all happen at once.
Diffstat (limited to 'Annex/Version.hs')
-rw-r--r--Annex/Version.hs9
1 files changed, 6 insertions, 3 deletions
diff --git a/Annex/Version.hs b/Annex/Version.hs
index 4c2a990fa..b54fb68e0 100644
--- a/Annex/Version.hs
+++ b/Annex/Version.hs
@@ -15,11 +15,14 @@ import qualified Annex
type Version = String
-currentVersion :: Version
-currentVersion = "6"
+defaultVersion :: Version
+defaultVersion = "5"
+
+latestVersion :: Version
+latestVersion = "6"
supportedVersions :: [Version]
-supportedVersions = ["5", currentVersion]
+supportedVersions = ["5", "6"]
upgradableVersions :: [Version]
#ifndef mingw32_HOST_OS