From 5c35c81457106969340ddb819bfa52e4f6a2c714 Mon Sep 17 00:00:00 2001 From: Daiki Matoba Date: Sat, 29 Aug 2026 01:09:48 +0900 Subject: [PATCH] Drop the changelog and point changelog_uri at the releases page The release workflow already runs gh release create --generate-notes, so a hand written changelog duplicates it and adds a step to every release that is easy to forget. Until there are breaking changes worth writing migration notes for, the generated release notes are enough. --- CHANGELOG.md | 35 ----------------------------------- emoja.gemspec | 2 +- 2 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 583550d..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,35 +0,0 @@ -# Changelog - -## Unreleased - -### Fixed - -- `translate` and `include_emoji?` match emoji by grapheme cluster, so multi - codepoint emoji such as `🐈‍⬛` and `🇯🇵` are recognized instead of being split - apart. Variation selectors and skin tone modifiers are stripped before the - dictionary lookup. - -## 0.2.0 - 2026-05-06 - -### Changed - -- Updated the emoji dictionaries from `yagays/emoji-ja`, adding entries such as - `🐈‍⬛`. - -## 0.1.2 - 2026-05-06 - -### Changed - -- Dropped `bundler` from the development dependencies and raised the `rake` - requirement to `~> 13.0`. - -## 0.1.1 - 2020-02-10 - -### Fixed - -- Load the dictionary relative to the gem rather than the working directory, so - it resolves when the gem is installed. - -## 0.1.0 - 2020-02-08 - -- Initial release. diff --git a/emoja.gemspec b/emoja.gemspec index 61a03b3..d0ce3e1 100644 --- a/emoja.gemspec +++ b/emoja.gemspec @@ -15,7 +15,7 @@ Gem::Specification.new do |spec| spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage - spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md" + spec.metadata["changelog_uri"] = "#{spec.homepage}/releases" spec.metadata["rubygems_mfa_required"] = "true" gemspec = File.basename(__FILE__)