tbpgr / vup

Crystal bumpup version tool
MIT License
3 stars 1 forks source link

Add --detail option #5

Closed tbpgr closed 8 years ago

tbpgr commented 8 years ago
$ cat version.cr
module Vup
  VERSION = "0.1.0"
end
$ vup --patch --detail
bump up ./src/vup/version.cr
bump up shard.yml
0.1.1
$ cat version.cr
module Vup
  VERSION = "0.1.1"
end
hkdnet commented 8 years ago

With --patch, 0.1.0 should bump up to 0.1.1, right?

tbpgr commented 8 years ago

Thanks. I fixed it.