Skip to content

Commit

Permalink
Updated version, gemspec, and CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Aman committed Jul 27, 2012
1 parent 4c73d43 commit ca170e0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Addressable 2.3.2
- added Addressable::URI#default_port method
- fixed issue with Marshalling Unicode data on Windows
- improved heuristic parsing to better handle IPv4 addresses

# Addressable 2.3.1
- fixed missing unicode data file

Expand Down
4 changes: 2 additions & 2 deletions addressable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bob Aman"]
s.date = "2012-07-21"
s.date = "2012-07-27"
s.description = "Addressable is a replacement for the URI implementation that is part of\nRuby's standard library. It more closely conforms to the relevant RFCs and\nadds support for IRIs and URI templates.\n"
s.email = "bob@sporkmonger.com"
s.extra_rdoc_files = ["README.md"]
s.files = ["lib/addressable", "lib/addressable/idna", "lib/addressable/idna/native.rb", "lib/addressable/idna/pure.rb", "lib/addressable/idna.rb", "lib/addressable/template.rb", "lib/addressable/uri.rb", "lib/addressable/version.rb", "spec/addressable", "spec/addressable/idna_spec.rb", "spec/addressable/net_http_compat_spec.rb", "spec/addressable/template_spec.rb", "spec/addressable/uri_spec.rb", "data/unicode.data", "tasks/clobber.rake", "tasks/gem.rake", "tasks/git.rake", "tasks/metrics.rake", "tasks/rspec.rake", "tasks/rubyforge.rake", "tasks/yard.rake", "website/index.html", "CHANGELOG.md", "Gemfile", "Gemfile.lock", "LICENSE.txt", "Rakefile", "README.md"]
s.files = ["lib/addressable", "lib/addressable/idna", "lib/addressable/idna/native.rb", "lib/addressable/idna/pure.rb", "lib/addressable/idna.rb", "lib/addressable/template.rb", "lib/addressable/uri.rb", "lib/addressable/version.rb", "spec/addressable", "spec/addressable/idna_spec.rb", "spec/addressable/net_http_compat_spec.rb", "spec/addressable/template_spec.rb", "spec/addressable/uri_spec.rb", "data/unicode.data", "tasks/clobber.rake", "tasks/gem.rake", "tasks/git.rake", "tasks/metrics.rake", "tasks/rspec.rake", "tasks/rubyforge.rake", "tasks/yard.rake", "website/index.html", "CHANGELOG.md", "Gemfile", "LICENSE.txt", "Rakefile", "README.md"]
s.homepage = "http://addressable.rubyforge.org/"
s.rdoc_options = ["--main", "README.md"]
s.require_paths = ["lib"]
Expand Down
2 changes: 1 addition & 1 deletion lib/addressable/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module Addressable
module VERSION
MAJOR = 2
MINOR = 3
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down

0 comments on commit ca170e0

Please sign in to comment.