Skip to content

Commit

Permalink
changes, polish gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Jul 14, 2022
1 parent 6c4a3eb commit f9955d6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
12 changes: 8 additions & 4 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# 1.0.0

- Drop support for Rubies below 2.5. We do not test against them.
- Einhorn is now owned and actively maintained by Mike Perham of Contributed Systems.
Thank you to the Stripe developers who wrote Einhorn and maintained it
to this point.
- Use `YAML.safe_load` for compatibility with Ruby 3.1+ [#102]
- Functionality previously commented or logged as deprecated has been removed.
- Standardize code formatting with `standard`
- Add GitHub CI with Ruby version matrix
- Drop support for Rubies below 2.5.

Einhorn is now owned and actively maintained by Mike Perham of Contributed Systems.
Thank you to the Stripe developers who wrote Einhorn and maintained it to this point.
10 changes: 8 additions & 2 deletions einhorn.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,17 @@ Gem::Specification.new do |gem|
gem.test_files = []
gem.name = "einhorn"
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.5.0"
gem.version = Einhorn::VERSION

gem.metadata = {
"bug_tracker_uri" => "https://github.com/contribsys/einhorn/issues",
"documentation_uri" => "https://github.com/contribsys/einhorn/wiki",
"changelog_uri" => "https://github.com/contribsys/einhorn/blob/main/Changes.md",
}

gem.add_development_dependency "rake"
gem.add_development_dependency "minitest"
gem.add_development_dependency "mocha"
gem.add_development_dependency "subprocess"

gem.version = Einhorn::VERSION
end

0 comments on commit f9955d6

Please sign in to comment.