Skip to content

Commit

Permalink
chore: Update minimum required Ruby version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewelsby committed Jun 29, 2024
1 parent c07bd1d commit f381eb9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.1] - 2024-06-29

### Changed
- Minimum Required Ruby Version - Gem doesn't work on Ruby 2

## [0.2.0] - 2024-06-28

### Added
Expand All @@ -19,5 +24,6 @@ Initial realase

- Support for parsing complex names with prefixes, suffixes, particles and beyond.

[0.2.1]: https://github.com/kylewelsby/name_formatter/releases/tag/v0.2.1
[0.2.0]: https://github.com/kylewelsby/name_formatter/releases/tag/v0.2.0
[0.1.0]: https://github.com/kylewelsby/name_formatter/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion lib/name_formatter/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module NameFormatterModule
VERSION = "0.2.0"
VERSION = "0.2.1"
end
4 changes: 2 additions & 2 deletions name_formatter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ Gem::Specification.new do |spec|
appropriate capitalization, and is Unicode-aware.'
spec.homepage = "https://github.com/kylewelsby/name_formatter"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")

spec.metadata["allowed_push_host"] = "https://rubygems.org"

# spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["homepage_uri"] = spec.homepage
# spec.metadata["source_code_uri"] = "https://github.com/kylewelsby/name_formatter"
# spec.metadata["documentation_uri"] = "https://github.com/kylewelsby/name_formatter"
spec.metadata["changelog_uri"] = "https://github.com/kylewelsby/name_formatter/blob/main/CHANGELOG.md"
Expand Down

0 comments on commit f381eb9

Please sign in to comment.