lib/net/dns/version.rb in net-dns-0.8.0 vs lib/net/dns/version.rb in net-dns-0.9.0

- old
+ new

@@ -1,16 +1,8 @@ +# frozen_string_literal: true + module Net module DNS - module Version - - MAJOR = 0 - MINOR = 8 - PATCH = 0 - BUILD = nil - - STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join(".") - end - - VERSION = Version::STRING - + # The current library version. + VERSION = "0.9.0".freeze end -end \ No newline at end of file +end