Skip to content

Commit

Permalink
Update version, gemspec, and CHANGELOG for 2.8.7 (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
dentarg committed Jun 21, 2024
1 parent 9ed8fe7 commit 83bb919
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 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.8.7 <a name="v2.8.7">
- Allow `public_suffix` 6 ([#535])

[#535]: https://github.com/sporkmonger/addressable/pull/535

# Addressable 2.8.6 <a name="v2.8.6">
- Memoize regexps for common character classes ([#524])

Expand Down
10 changes: 5 additions & 5 deletions addressable.gemspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# -*- encoding: utf-8 -*-
# stub: addressable 2.8.6 ruby lib
# stub: addressable 2.8.7 ruby lib

Gem::Specification.new do |s|
s.name = "addressable".freeze
s.version = "2.8.6".freeze
s.version = "2.8.7".freeze

s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.metadata = { "changelog_uri" => "https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md#v2.8.6" } if s.respond_to? :metadata=
s.metadata = { "changelog_uri" => "https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md#v2.8.7" } if s.respond_to? :metadata=
s.require_paths = ["lib".freeze]
s.authors = ["Bob Aman".freeze]
s.date = "2023-12-09"
s.date = "2024-06-21"
s.description = "Addressable is an alternative implementation to the URI implementation that is\npart of Ruby's standard library. It is flexible, offers heuristic parsing, and\nadditionally provides extensive support for IRIs and URI templates.\n".freeze
s.email = "[email protected]".freeze
s.extra_rdoc_files = ["README.md".freeze]
Expand All @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.licenses = ["Apache-2.0".freeze]
s.rdoc_options = ["--main".freeze, "README.md".freeze]
s.required_ruby_version = Gem::Requirement.new(">= 2.2".freeze)
s.rubygems_version = "3.4.22".freeze
s.rubygems_version = "3.5.11".freeze
s.summary = "URI Implementation".freeze

s.specification_version = 4
Expand Down
2 changes: 1 addition & 1 deletion lib/addressable/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module Addressable
module VERSION
MAJOR = 2
MINOR = 8
TINY = 6
TINY = 7

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

0 comments on commit 83bb919

Please sign in to comment.