diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 92032484..c4254ac5 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,6 +1,6 @@ = Changelog -== master +== Release 0.6.0 * ADDED: PublicSuffixService.parse raises DomainNotAllowed when trying to parse a domain name which exists, but is not allowed by the current definition list (#3) diff --git a/lib/public_suffix_service/version.rb b/lib/public_suffix_service/version.rb index 6b1c6743..7e027965 100644 --- a/lib/public_suffix_service/version.rb +++ b/lib/public_suffix_service/version.rb @@ -18,8 +18,8 @@ module PublicSuffixService module Version MAJOR = 0 - MINOR = 5 - PATCH = 2 + MINOR = 6 + PATCH = 0 BUILD = nil STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join(".") diff --git a/public_suffix_service.gemspec b/public_suffix_service.gemspec index 0a6aa1d8..058749d9 100644 --- a/public_suffix_service.gemspec +++ b/public_suffix_service.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = %q{public_suffix_service} - s.version = "0.5.2" + s.version = "0.6.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Simone Carletti"] - s.date = %q{2010-09-17} + s.date = %q{2010-09-18} s.description = %q{ Intelligent domain name parser based in the Public Suffic List. PublicSuffixService can parse and decompose a domain name into top level domain, domain and subdomains. } s.email = %q{weppos@weppos.net}