Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Apr 3, 2013
1 parent f34ac4c commit 63ffbae
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# Changelog


## Release 1.2.1
## Release 1.3.0

- NEW: Ability to skip Private Domains (GH-28). [Thanks @rb2k]

- CHANGED: Updated definitions.


## Release 1.2.1

- CHANGED: Updated definitions.


## Release 1.2.0

- NEW: Allow a custom List on `PublicSuffix.parse` (GH-26). [Thanks @itspriddle]
Expand Down
4 changes: 2 additions & 2 deletions lib/public_suffix/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ module PublicSuffix

module Version
MAJOR = 1
MINOR = 2
PATCH = 1
MINOR = 3
PATCH = 0
BUILD = nil

STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join(".")
Expand Down
4 changes: 2 additions & 2 deletions public_suffix.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

Gem::Specification.new do |s|
s.name = "public_suffix"
s.version = "1.2.1"
s.version = "1.3.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Simone Carletti"]
s.date = "2013-03-26"
s.date = "2013-04-03"
s.description = "PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains."
s.email = "weppos@weppos.net"
s.files = [".gemtest", ".gitignore", ".travis.yml", ".yardopts", "CHANGELOG.md", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "lib/public_suffix.rb", "lib/public_suffix/definitions.txt", "lib/public_suffix/domain.rb", "lib/public_suffix/errors.rb", "lib/public_suffix/list.rb", "lib/public_suffix/rule.rb", "lib/public_suffix/version.rb", "public_suffix.gemspec", "test/acceptance_test.rb", "test/test_helper.rb", "test/unit/domain_test.rb", "test/unit/errors_test.rb", "test/unit/list_test.rb", "test/unit/public_suffix_test.rb", "test/unit/rule_test.rb"]
Expand Down

0 comments on commit 63ffbae

Please sign in to comment.