diff --git a/blimp.nim b/blimp.nim index 4722b42..d44d842 100644 --- a/blimp.nim +++ b/blimp.nim @@ -1,4 +1,4 @@ -import md5, os, osproc, parseopt2, strutils, parsecfg, streams, lapp, subexes, tables, sets +import md5, os, osproc, parseopt2, strutils, parsecfg, streams, lapp, tables, sets # blimp is a little utility program for handling large files # in git repositories. Its inspired by git-fat and s3annex @@ -14,7 +14,7 @@ import md5, os, osproc, parseopt2, strutils, parsecfg, streams, lapp, subexes, t const versionMajor* = 0 - versionMinor* = 5 + versionMinor* = 6 versionPatch* = 0 versionAsString* = $versionMajor & "." & $versionMinor & "." & $versionPatch @@ -397,16 +397,13 @@ let synopsis = """ -h,--help Show this --version Show version of blimp -v,--verbose Verbosity, only works without -s - ---------- (string) (d)eflate, (i)nflate, init, deinit, remove, push, upload, download --all Operate on all deflated files in clone -f,--filter Operate on all files matching blimp filter -a,--area (default remote) The area to use for remote up/downloads - ---------- -s,--stdio If given, use stdin/stdout for content. - (string...) One or more filepaths to inflate/deflate -""" + (string...) One or more filepaths to inflate/deflate""" let help = """ blimp is a little utility program for handling large files diff --git a/blimp.nim.cfg b/blimp.nim.cfg index 34826ab..dc376b4 100644 --- a/blimp.nim.cfg +++ b/blimp.nim.cfg @@ -1,2 +1,3 @@ --deadCodeElim:on -d:release +--nilseqs:on diff --git a/blimp.nimble b/blimp.nimble index fc2ce6c..d41d19a 100644 --- a/blimp.nimble +++ b/blimp.nimble @@ -1,6 +1,6 @@ [Package] name = "blimp" -version = "0.5" +version = "0.6.0" author = "Göran Krampe" description = "Utility that helps with big files in git, very similar to git-fat, s3annnex etc." license = "MIT" @@ -8,5 +8,4 @@ license = "MIT" bin = blimp [Deps] -Requires: "nimrod >= 0.15" -#Requires: "lapp >= 0.1.0" +Requires: "nimrod >= 1.2.0"