Skip to content

Commit

Permalink
Update version, gemspec, and CHANGELOG for 2.8.5 (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
dentarg committed Aug 3, 2023
1 parent a5a8514 commit 7cd185e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
# Addressable 2.8.5
- Fix thread safety issue with encoding tables ([#515])
- Define URI::NONE as a module to avoid serialization issues ([#509])
- Fix YAML serialization ([#508])

[#508]: https://github.com/sporkmonger/addressable/pull/508
[#509]: https://github.com/sporkmonger/addressable/pull/509
[#515]: https://github.com/sporkmonger/addressable/pull/515

# Addressable 2.8.4
- Restore `Addressable::IDNA.unicode_normalize_kc` as a deprecated method ([#504])

Expand Down
8 changes: 4 additions & 4 deletions addressable.gemspec
@@ -1,15 +1,15 @@
# -*- encoding: utf-8 -*-
# stub: addressable 2.8.4 ruby lib
# stub: addressable 2.8.5 ruby lib

Gem::Specification.new do |s|
s.name = "addressable".freeze
s.version = "2.8.4"
s.version = "2.8.5"

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" } if s.respond_to? :metadata=
s.require_paths = ["lib".freeze]
s.authors = ["Bob Aman".freeze]
s.date = "2023-04-09"
s.date = "2023-08-03"
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 = "bob@sporkmonger.com".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.10".freeze
s.rubygems_version = "3.4.18".freeze
s.summary = "URI Implementation".freeze

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

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

0 comments on commit 7cd185e

Please sign in to comment.