From 6d42ca3d932b5ed41bc9e7b0f1a0d121b88d1221 Mon Sep 17 00:00:00 2001 From: Simone Carletti Date: Fri, 23 Dec 2011 20:19:44 +0100 Subject: [PATCH] Release 1.0.0.rc1 --- CHANGELOG.md | 8 +++++++- Gemfile.lock | 10 ++++++---- lib/public_suffix/version.rb | 6 +++--- public_suffix.gemspec | 4 ++-- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b82d2ed5..a1f13b9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -## master + +## Release 1.0.0.rc1 + +The library is now known as PublicSuffix. + + +## Release 0.9.1 * CHANGED: Renamed PublicSuffixService::RuleList to PublicSuffixService::List. diff --git a/Gemfile.lock b/Gemfile.lock index a0e10f80..24a6f72b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,20 +1,22 @@ PATH remote: . specs: - public_suffix_service (0.9.0) + public_suffix (1.0.0.rc1) GEM remote: http://rubygems.org/ specs: - mocha (0.9.12) + metaclass (0.0.1) + mocha (0.10.0) + metaclass (~> 0.0.1) rake (0.9.2) - yard (0.7.2) + yard (0.7.4) PLATFORMS ruby DEPENDENCIES mocha - public_suffix_service! + public_suffix! rake yard diff --git a/lib/public_suffix/version.rb b/lib/public_suffix/version.rb index 40592a76..30287205 100644 --- a/lib/public_suffix/version.rb +++ b/lib/public_suffix/version.rb @@ -10,10 +10,10 @@ module PublicSuffix module Version - MAJOR = 0 - MINOR = 9 + MAJOR = 1 + MINOR = 0 PATCH = 0 - BUILD = nil + BUILD = "rc1" STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join(".") end diff --git a/public_suffix.gemspec b/public_suffix.gemspec index bafeed5d..5db9d51c 100644 --- a/public_suffix.gemspec +++ b/public_suffix.gemspec @@ -2,9 +2,9 @@ Gem::Specification.new do |s| s.name = "public_suffix" - s.version = "0.9.0" + s.version = "1.0.0.rc1" - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= + s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= s.authors = ["Simone Carletti"] s.date = "2011-12-23" s.description = "PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains."