Skip to content

Commit

Permalink
Update version, gemspec, and CHANGELOG for 2.8.3 (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
dentarg committed Apr 4, 2023
1 parent bfafba8 commit 68c60e3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
# Addressable 2.8.3
- Fix template expand level 2 hash support for non-string objects ([#499], [#498])

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

# Addressable 2.8.2
- Improve cache hits and JIT friendliness ([#486](https://github.com/sporkmonger/addressable/pull/486))
- Improve code style and test coverage ([#482](https://github.com/sporkmonger/addressable/pull/482))
Expand Down
6 changes: 3 additions & 3 deletions addressable.gemspec
@@ -1,15 +1,15 @@
# -*- encoding: utf-8 -*-
# stub: addressable 2.8.2 ruby lib
# stub: addressable 2.8.3 ruby lib

Gem::Specification.new do |s|
s.name = "addressable".freeze
s.version = "2.8.2"
s.version = "2.8.3"

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-01"
s.date = "2023-04-04"
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 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 = 2
TINY = 3

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

0 comments on commit 68c60e3

Please sign in to comment.