Skip to content

Commit

Permalink
Release 1.0.0.rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Dec 23, 2011
1 parent f4cbd12 commit 6d42ca3
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
8 changes: 7 additions & 1 deletion 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.

Expand Down
10 changes: 6 additions & 4 deletions 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
6 changes: 3 additions & 3 deletions lib/public_suffix/version.rb
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions public_suffix.gemspec
Expand Up @@ -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."
Expand Down

0 comments on commit 6d42ca3

Please sign in to comment.