version set to 0.2.0

This commit is contained in:
Paul Campbell 2019-05-22 14:04:15 +01:00
parent eacfc37095
commit 4638da75c3
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
name := "s3thorp"
version := "0.1"
version := "0.2.0"
scalaVersion := "2.12.8"

View file

@ -16,7 +16,7 @@ object Main extends IOApp with Logging {
def program(args: List[String]): IO[ExitCode] =
for {
a <- ParseArgs(args, defaultConfig)
_ <- IO(log1("S3Thorp - hashed sync for s3")(a))
_ <- IO(log1("S3Thorp v0.2.0 - hashed sync for s3")(a))
_ <- sync.run(a)
} yield ExitCode.Success