Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gem metadata #42

Merged
merged 3 commits into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

> [!NOTE]
> From v8.0.0, changes are documented using [GitHub Releases](https://github.com/indieweb/webmention-client-ruby/releases). For a given release, metadata on RubyGems.org will link to that version's Release page.

## 7.0.0 / 2022-11-09

- Refactor HTML and JSON parser classes (ec58206 and 6818c05)
Expand Down
2 changes: 1 addition & 1 deletion lib/webmention/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Webmention
VERSION = "7.0.0"
VERSION = "8.0.0"
end
5 changes: 3 additions & 2 deletions webmention.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ Gem::Specification.new do |spec|

spec.metadata = {
"bug_tracker_uri" => "#{spec.homepage}/issues",
"changelog_uri" => "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md",
"rubygems_mfa_required" => "true"
"changelog_uri" => "#{spec.homepage}/releases/tag/v#{spec.version}",
"rubygems_mfa_required" => "true",
"source_code_uri" => "#{spec.homepage}/tree/v#{spec.version}"
}

spec.add_runtime_dependency "http", "~> 5.0"
Expand Down