Skip to content

Commit e209120

Browse files
authored
Update version, gemspec, and CHANGELOG for 2.8.9 (#572)
1 parent 3875874 commit e209120

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## Addressable 2.8.9 <a name="v2.8.9">
4+
- Reduce gem size by excluding test files ([#569])
5+
- No need for bundler as development dependency ([#571], [5fc1d93](https://github.com/sporkmonger/addressable/commit/5fc1d93))
6+
- idna/pure: stop building the useless `COMPOSITION_TABLE` (removes the `Addressable::IDNA::COMPOSITION_TABLE` constant) ([#564])
7+
8+
[#]: https://github.com/sporkmonger/addressable/pull/
9+
[#569]: https://github.com/sporkmonger/addressable/pull/
10+
[#571]: https://github.com/sporkmonger/addressable/pull/
11+
[#564]: https://github.com/sporkmonger/addressable/pull/564
12+
313
## Addressable 2.8.8 <a name="v2.8.8">
414
- Replace the `unicode.data` blob by a ruby constant ([#561])
515
- Allow `public_suffix` 7 ([#558])

addressable.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# -*- encoding: utf-8 -*-
2-
# stub: addressable 2.8.8 ruby lib
2+
# stub: addressable 2.8.9 ruby lib
33

44
Gem::Specification.new do |s|
55
s.name = "addressable".freeze
6-
s.version = "2.8.8".freeze
6+
s.version = "2.8.9".freeze
77

88
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9-
s.metadata = { "changelog_uri" => "https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md#v2.8.8" } if s.respond_to? :metadata=
9+
s.metadata = { "changelog_uri" => "https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md#v2.8.9" } if s.respond_to? :metadata=
1010
s.require_paths = ["lib".freeze]
1111
s.authors = ["Bob Aman".freeze]
12-
s.date = "2026-01-25"
12+
s.date = "2026-02-27"
1313
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
1414
s.email = "bob@sporkmonger.com".freeze
1515
s.extra_rdoc_files = ["README.md".freeze]
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
1818
s.licenses = ["Apache-2.0".freeze]
1919
s.rdoc_options = ["--main".freeze, "README.md".freeze]
2020
s.required_ruby_version = Gem::Requirement.new(">= 2.2".freeze)
21-
s.rubygems_version = "4.0.4".freeze
21+
s.rubygems_version = "4.0.7".freeze
2222
s.summary = "URI Implementation".freeze
2323

2424
s.specification_version = 4

lib/addressable/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module Addressable
2323
module VERSION
2424
MAJOR = 2
2525
MINOR = 8
26-
TINY = 8
26+
TINY = 9
2727

2828
STRING = [MAJOR, MINOR, TINY].join('.')
2929
end

0 commit comments

Comments
 (0)